Initial commit for new text object.

Important notes:

 - Full compatibility with old text objects not fully restored
   (word spacing will be 0.0, need to set it manually to 1.0), will
   either need version upgrade to 238 or a hack. Will check.

 - lorem.c (about to be committed) contains BF copyright notice, but as
   BF did not exist a few hundred years ago, probably best to remove it :)

 - If you notice any cross-platform issues (especially beloved windows),
   please report

 - A few tiny warnings left, I will fix those issues still.

The rest has been said already - so have fun testing. And please do!

=== Reminder:
=== Documentation at http://blender.instinctive.de/docs/textobject.txt ===
This commit is contained in:
Alexander Ewering
2005-06-17 21:04:27 +00:00
parent 9ee2a1ee09
commit 97df61a7e5
20 changed files with 1031 additions and 179 deletions

View File

@@ -52,7 +52,7 @@
#define glToggle(mode, onoff) (((onoff)?glEnable:glDisable)(mode))
static void set_inverted_drawing(int enable)
void set_inverted_drawing(int enable)
{
glLogicOp(enable?GL_INVERT:GL_COPY);