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

Comparing ray/src/util/findglare.c (file contents):
Revision 1.13 by greg, Tue Apr 2 14:29:15 1991 UTC vs.
Revision 1.15 by greg, Fri Apr 5 14:26:47 1991 UTC

# Line 290 | Line 290 | compdir(vd, x, y)                      /* compute direction for x,y */
290   FVECT   vd;
291   int     x, y;
292   {
293 +        static int      cury = 10000;
294 +        static double   err, cmpval;
295 +        long    t;
296          FVECT   org;                    /* dummy variable */
297  
298          if (x <= -hlim)                 /* left region */
# Line 300 | Line 303 | int    x, y;
303                  return(viewray(org, vd, &rightview,
304                                  (double)(x-hlim)/(2*sampdens)+.5,
305                                  (double)y/(2*sampdens)+.5));
306 <                                                /* central region */
306 >                                        /* central region */
307 >                                /* avoid over-counting of poles */
308 >        if (cury != y) {
309 >                err = 0.0;
310 >                cmpval = sqrt(1.0 - (double)((long)y*y)/((long)vsize*vsize));
311 >                cury = y;
312 >        }
313 >        err += cmpval;
314 >        if (err <= 0.5)
315 >                return(-1);
316 >        err -= 1.0;
317          if (viewray(org, vd, &ourview, .5, (double)y/(2*sampdens)+.5) < 0)
318                  return(-1);
319          spinvector(vd, vd, ourview.vup, h_theta(x));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines