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

Comparing ray/src/rt/rpict.c (file contents):
Revision 2.74 by greg, Mon Feb 7 20:13:55 2005 UTC vs.
Revision 2.77 by greg, Wed Apr 5 06:22:56 2006 UTC

# Line 67 | Line 67 | void  (*trace)() = NULL;               /* trace call */
67  
68   int  do_irrad = 0;                      /* compute irradiance? */
69  
70 + int  rand_samp = 0;                     /* pure Monte Carlo sampling? */
71 +
72   double  dstrsrc = 0.0;                  /* square source distribution */
73   double  shadthresh = .05;               /* shadow threshold */
74   double  shadcert = .5;                  /* shadow certainty */
# Line 675 | Line 677 | pixvalue(              /* compute pixel value */
677                  return(0.0);
678          }
679          vdist = ourview.vdist;
680 <
681 <        samplendx = pixnumber(x,y,hres,vres);   /* set pixel index */
680 <
680 >                                                /* set pixel index */
681 >        samplendx = pixnumber(x,y,hres,vres);
682                                                  /* optional motion blur */
683          if (lastview.type && mblur > FTINY && (lmax = viewray(lorg, ldir,
684                                          &lastview, hpos, vpos)) >= -FTINY) {
# Line 726 | Line 727 | pixvalue(              /* compute pixel value */
727                          return(0.0);
728          }
729  
730 <        rayorigin(&thisray, NULL, PRIMARY, 1.0);
730 >        rayorigin(&thisray, PRIMARY, NULL, NULL);
731  
732          rayvalue(&thisray);                     /* trace ray */
733  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines