art_affline.c bug?
"Alan Ellis" <[email protected]> Sun, 13 Apr 2003 21:58:53 -0700 (PDT)
| Newsgroups | gmane.comp.gnome.lib.libart.general |
|---|---|
| Message-ID | <[email protected]> |
Greetings everyone, Should this line: if ((int)floor ((x + EPSILON / 2) < 1)) http://cvs.gnome.org/lxr/source/libart_lgpl/art_affine.c#127 look something more like this? if( (int)floor (x + EPSILON / 2) < 1) It seems odd to pass the result of a comparison to floor(). Thanks, Alan