Added ripples magic.

Added (not finished) (new) sparkles magic.
Fixed printf localization bug in postscript printing.
Got Text tool working when Pango is used.
This commit is contained in:
William Kendrick 2007-07-18 20:13:08 +00:00
parent 0ed6e2fd30
commit c4b3e49215
7 changed files with 525 additions and 65 deletions

View file

@ -73,7 +73,7 @@ int f2int(float f)
int f2dec(float f)
{
return (int)(f - (((int)f) * 100));
return (int)((f - f2int(f)) * 100);
}
/* Actually save the PostScript data to the file stream: */