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

Comparing ray/src/rt/ambient.c (file contents):
Revision 2.74 by greg, Sat Apr 19 02:39:44 2014 UTC vs.
Revision 2.75 by greg, Sat Apr 19 19:20:47 2014 UTC

# Line 398 | Line 398 | sumambient(            /* get interpolated ambient value */
398                  delta_t2 = d*d;
399                  d = DOT(ck0, uvw[1]) / av->rad[1];
400                  delta_t2 += d*d;
401 <                if (delta_t2 >= ambacc*ambacc)
401 >                if (delta_t2 >= qambacc*qambacc)
402                          continue;
403                  /*
404                   *  Intersection behind test
# Line 413 | Line 413 | sumambient(            /* get interpolated ambient value */
413                   */
414                  extambient(ct, av, r->rop, rn, uvw);
415                  d = tfunc(maxangle, sqrt(delta_r2), 0.0) *
416 <                        tfunc(ambacc, sqrt(delta_t2), 0.0);
416 >                        tfunc(qambacc, sqrt(delta_t2), 0.0);
417                  scalecolor(ct, d);
418                  addcolor(acol, ct);
419                  wsum += d;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines