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

Comparing ray/src/hd/rhpict2.c (file contents):
Revision 3.13 by greg, Mon Jul 7 17:21:51 2003 UTC vs.
Revision 3.14 by schorsch, Sun Jul 27 22:12:02 2003 UTC

# Line 301 | Line 301 | register short (*rnl)[NNEIGH];
301          nd[NNEIGH-1] = MAXRAD2;
302          for (hoff = 0; hoff < hres; hoff = (hoff<=0) - hoff) {
303                  h2 = h + hoff;
304 <                if (h2 < 0 | h2 >= hres)
304 >                if ((h2 < 0) | (h2 >= hres))
305                          continue;
306                  if ((h2-h)*(h2-h) >= nd[NNEIGH-1])
307                          break;
308                  for (n = 0; n < NNEIGH && rnl[h2][n] < NINF; n++) {
309                          d = (h2-h)*(h2-h) + (v-rnl[h2][n])*(v-rnl[h2][n]);
310 <                        if (d == 0 | d >= nd[NNEIGH-1])
310 >                        if ((d == 0) | (d >= nd[NNEIGH-1]))
311                                  continue;
312                          if (nn < NNEIGH)        /* insert neighbor */
313                                  nn++;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines