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.37 by greg, Wed Dec 22 21:03:54 1993 UTC vs.
Revision 2.41 by greg, Fri Dec 8 18:49:20 1995 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1993 Regents of the University of California */
1 > /* Copyright (c) 1995 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 64 | Line 64 | int  vspretest = 512;                  /* virtual source pretest dens
64   int  directvis = 1;                     /* sources visible? */
65   double  srcsizerat = .25;               /* maximum ratio source size/dist. */
66  
67 + COLOR  cextinction = BLKCOLOR;          /* global extinction coefficient */
68 + double  salbedo = 0.;                   /* global scattering albedo */
69 + double  seccg = 0.;                     /* global scattering eccentricity */
70 + double  ssampdist = 0.;                 /* scatter sampling distance */
71 +
72   double  specthresh = .15;               /* specular sampling threshold */
73   double  specjitter = 1.;                /* specular sampling jitter */
74  
75 + int  backvis = 1;                       /* back face visibility */
76 +
77   int  maxdepth = 6;                      /* maximum recursion depth */
78   double  minweight = 5e-3;               /* minimum ray weight */
79  
# Line 500 | Line 507 | int  xres, y, xstep;
507                          b = fillsample(scanline, zline, 0, y, i, 0, b/2);
508                  else
509                          b = fillsample(scanline+i-xstep,
510 <                                        zline ? zline+i-xstep : NULL,
510 >                                        zline ? zline+i-xstep : (float *)NULL,
511                                          i-xstep, y, xstep, 0, b/2);
512                  if (sd) *sd++ = nc & 1 ? bl : b;
513                  bl = b;
# Line 528 | Line 535 | int  xres, y, ysize;
535                          zline[ysize] = zbar[ysize][i];
536                  }
537                  
538 <                b = fillsample(vline, zbar[0] ? zline : NULL,
538 >                b = fillsample(vline, zbar[0] ? zline : (float *)NULL,
539                                  i, y, 0, ysize, b/2);
540                  
541                  for (j = 1; j < ysize; j++)
# Line 586 | Line 593 | int  b;
593                                                          /* recurse */
594          ncut += fillsample(colline, zline, x, y, xlen>>1, ylen>>1, (b-1)/2);
595          
596 <        ncut += fillsample(colline+(len>>1), zline ? zline+(len>>1) : NULL,
596 >        ncut += fillsample(colline+(len>>1),
597 >                        zline ? zline+(len>>1) : (float *)NULL,
598                          x+(xlen>>1), y+(ylen>>1),
599                          xlen-(xlen>>1), ylen-(ylen>>1), b/2);
600  
# Line 601 | Line 609 | int  x, y;                     /* pixel position */
609   {
610          static RAY  thisray;
611  
612 <        if (viewray(thisray.rorg, thisray.rdir, &ourview,
613 <                        (x+pixjitter())/hres, (y+pixjitter())/vres) < 0) {
612 >        if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir, &ourview,
613 >                        (x+pixjitter())/hres, (y+pixjitter())/vres)) < -FTINY) {
614                  setcolor(col, 0.0, 0.0, 0.0);
615                  return(0.0);
616          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines