ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/text.c
(Generate patch)

Comparing ray/src/rt/text.c (file contents):
Revision 2.22 by greg, Tue May 13 17:58:33 2003 UTC vs.
Revision 2.24 by greg, Thu Feb 12 18:55:50 2004 UTC

# Line 9 | Line 9 | static const char      RCSid[] = "$Id$";
9  
10   #include  "ray.h"
11  
12 + #include  "paths.h"
13 +
14   #include  "otypes.h"
15  
16   #include  "font.h"
# Line 325 | Line 327 | register GLYPH  *gl;
327                                          /* positive x axis cross test */
328          while (n--) {
329                  if ((p0[1]<<1 > ylb) ^ (p1[1]<<1 > ylb)) {
330 <                        tv = p0[0]<<1 > xlb | (p1[0]<<1 > xlb) << 1;
330 >                        tv = (p0[0]<<1 > xlb) | ((p1[0]<<1 > xlb) << 1);
331                          if (tv == 03)
332                                  ncross++;
333                          else if (tv)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines