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

Comparing ray/src/rt/raytrace.c (file contents):
Revision 2.75 by greg, Wed Feb 13 01:00:31 2019 UTC vs.
Revision 2.78 by greg, Wed Apr 3 16:04:33 2019 UTC

# Line 116 | Line 116 | rayorigin(             /* start new ray from old one */
116                  if (photonMapping && rt != TRANS)
117                          return(-1);
118          }
119 <        if (maxdepth <= 0 && rc != NULL) {      /* Russian roulette */
119 >        if ((maxdepth <= 0) & (rc != NULL)) {   /* Russian roulette */
120                  if (minweight <= 0.0)
121                          error(USER, "zero ray weight in Russian roulette");
122 <                if (maxdepth < 0 && r->rlvl > -maxdepth)
122 >                if ((maxdepth < 0) & (r->rlvl > -maxdepth))
123                          return(-1);             /* upper reflection limit */
124                  if (r->rweight >= minweight)
125                          return(0);
# Line 130 | Line 130 | rayorigin(             /* start new ray from old one */
130                  r->rweight = minweight;
131                  return(0);
132          }
133 <        return(r->rweight >= minweight && r->rlvl <= abs(maxdepth) ? 0 : -1);
133 >        return((r->rweight >= minweight) & (r->rlvl <= abs(maxdepth)) ? 0 : -1);
134   }
135  
136  
# Line 229 | Line 229 | rayshade(              /* shade ray r with material mod */
229          int     tst_irrad = do_irrad && !(r->crtype & ~(PRIMARY|TRANS));
230          OBJREC  *m;
231  
232 <        r->rxt = r->rmt = r->rot;       /* preset effective ray length */
232 >        r->rxt = r->rot;                /* preset effective ray length */
233          for ( ; mod != OVOID; mod = m->omod) {
234                  m = objptr(mod);
235                  /****** unnecessary test since modifier() is always called
# Line 403 | Line 403 | raycontrib(            /* compute (cumulative) ray contribution
403          int  flags
404   )
405   {
406 <        double  eext[3];
407 <        int     i;
406 >        static int      warnedPM = 0;
407  
409        eext[0] = eext[1] = eext[2] = 0.;
408          rc[0] = rc[1] = rc[2] = 1.;
409  
410          while (r != NULL && r->crtype&flags) {
411 <                for (i = 3; i--; ) {
411 >                int     i = 3;
412 >                while (i--)
413                          rc[i] *= colval(r->rcoef,i);
414 <                        eext[i] += r->rot * colval(r->cext,i);
414 >                                        /* check for participating medium */
415 >                if (!warnedPM && (bright(r->cext) > FTINY) |
416 >                                (bright(r->albedo) > FTINY)) {
417 >                        error(WARNING,
418 >        "ray contribution calculation does not support participating media");
419 >                        warnedPM++;
420                  }
421                  r = r->parent;
422          }
419        for (i = 3; i--; )
420                rc[i] *= (eext[i] <= FTINY) ? 1. :
421                                (eext[i] > 92.) ? 0. : exp(-eext[i]);
423   }
424  
425  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines