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

Comparing ray/src/rt/rtrace.c (file contents):
Revision 1.13 by greg, Wed May 1 11:16:58 1991 UTC vs.
Revision 2.5 by greg, Thu Mar 12 09:46:19 1992 UTC

# Line 30 | Line 30 | static char SCCSid[] = "$SunId$ LBL";
30  
31   #include  "otypes.h"
32  
33 + int  dimlist[MAXDIM];                   /* sampling dimensions */
34 + int  ndims = 0;                         /* number of sampling dimensions */
35 + int  samplendx = 0;                     /* index for this sample */
36 +
37   int  imm_irrad = 0;                     /* compute immediate irradiance? */
38  
39   int  inform = 'a';                      /* input format */
# Line 42 | Line 46 | int  vresolu = 0;                      /* vertical resolution */
46   double  dstrsrc = 0.0;                  /* square source distribution */
47   double  shadthresh = .05;               /* shadow threshold */
48   double  shadcert = .5;                  /* shadow certainty */
49 + int  directrelay = 1;                   /* number of source relays */
50 + int  vspretest = 512;                   /* virtual source pretest density */
51 + int  directinvis = 0;                   /* sources invisible? */
52 + double  srcsizerat = .25;               /* maximum ratio source size/dist. */
53  
54 + double  specthresh = .15;               /* specular sampling threshold */
55 + double  specjitter = 1.;                /* specular sampling jitter */
56 +
57   int  maxdepth = 6;                      /* maximum recursion depth */
58   double  minweight = 4e-3;               /* minimum ray weight */
59  
# Line 59 | Line 70 | extern OBJREC  Lamb;                   /* a Lambertian surface */
70  
71   static RAY  thisray;                    /* for our convenience */
72  
73 < static int  oputo(), oputd(), oputv(), oputl(),
73 > static int  oputo(), oputd(), oputv(), oputl(), oputL(),
74                  oputp(), oputn(), oputs(), oputw(), oputm();
75  
76   static int  (*ray_out[10])(), (*every_out[10])();
# Line 106 | Line 117 | char  *fname;
117                          fflush(stdout);
118                          continue;
119                  }
120 +                samplendx++;
121                                                          /* compute and print */
122                  if (imm_irrad)
123                          irrad(orig, direc);
# Line 152 | Line 164 | register char  *vs;
164                          *table++ = oputv;
165                          castonly = 0;
166                          break;
167 <                case 'l':                               /* length */
167 >                case 'l':                               /* effective distance */
168                          *table++ = oputl;
169                          castonly = 0;
170                          break;
171 +                case 'L':                               /* single ray length */
172 +                        *table++ = oputL;
173 +                        break;
174                  case 'p':                               /* point */
175                          *table++ = oputp;
176                          break;
# Line 227 | Line 242 | register FVECT  vec;
242   int  fmt;
243   FILE  *fp;
244   {
245 +        extern char  *fgetword();
246          static float  vf[3];
247 +        static double  vd[3];
248 +        char  buf[32];
249 +        register int  i;
250  
251          switch (fmt) {
252          case 'a':                                       /* ascii */
253 <                if (fscanf(fp, "%lf %lf %lf", vec, vec+1, vec+2) != 3)
254 <                        return(-1);
253 >                for (i = 0; i < 3; i++) {
254 >                        if (fgetword(buf, sizeof(buf), fp) == NULL ||
255 >                                        !isflt(buf))
256 >                                return(-1);
257 >                        vec[i] = atof(buf);
258 >                }
259                  break;
260          case 'f':                                       /* binary float */
261                  if (fread((char *)vf, sizeof(float), 3, fp) != 3)
# Line 240 | Line 263 | FILE  *fp;
263                  vec[0] = vf[0]; vec[1] = vf[1]; vec[2] = vf[2];
264                  break;
265          case 'd':                                       /* binary double */
266 <                if (fread((char *)vec, sizeof(double), 3, fp) != 3)
266 >                if (fread((char *)vd, sizeof(double), 3, fp) != 3)
267                          return(-1);
268 +                vec[0] = vd[0]; vec[1] = vd[1]; vec[2] = vd[2];
269                  break;
270          }
271          return(0);
# Line 305 | Line 329 | register RAY  *r;
329  
330  
331   static
332 < oputl(r)                                /* print length */
332 > oputl(r)                                /* print effective distance */
333   register RAY  *r;
334   {
335          (*putreal)(r->rt);
336 + }
337 +
338 +
339 + static
340 + oputL(r)                                /* print single ray length */
341 + register RAY  *r;
342 + {
343 +        (*putreal)(r->rot);
344   }
345  
346  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines