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

Comparing ray/src/gen/mkillum.c (file contents):
Revision 2.33 by greg, Thu Dec 13 07:03:37 2007 UTC vs.
Revision 2.37 by greg, Mon Aug 15 19:48:06 2011 UTC

# Line 68 | Line 68 | main(          /* compute illum distributions using rtrace */
68          gargv = argv;
69          progname = gargv[0];
70                                  /* set up rendering defaults */
71 <        dstrsrc = 0.25;
71 >        dstrsrc = 0.5;
72          directrelay = 3;
73        directvis = 0;
73          ambounce = 2;
74                                  /* get options from command line */
75          for (i = 1; i < argc; i++) {
# Line 176 | Line 175 | char  *s;
175  
176  
177   void
178 + quit(ec)                        /* make sure exit is called */
179 + int     ec;
180 + {
181 +        if (ray_pnprocs > 0)    /* close children if any */
182 +                ray_pclose(0);          
183 +        exit(ec);
184 + }
185 +
186 +
187 + void
188   filter(         /* process stream */
189          register FILE   *infp,
190          char    *name
# Line 444 | Line 453 | printopts(void)                        /* print out option default values *
453                  printf("l+\t\t\t\t# light type on\n");
454          else
455                  printf("l-\t\t\t\t# light type off\n");
456 <        printf("d=%d\t\t\t\t# density of points\n", thisillum.sampdens);
457 <        printf("s=%d\t\t\t\t# samples per point\n", thisillum.nsamps);
456 >        printf("d=%d\t\t\t\t# density of directions\n", thisillum.sampdens);
457 >        printf("s=%d\t\t\t\t# samples per direction\n", thisillum.nsamps);
458          printf("b=%f\t\t\t# minimum average brightness\n", thisillum.minbrt);
459          switch (thisillum.udir) {
460          case UDzneg:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines