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.30 by greg, Tue Sep 18 19:51:07 2007 UTC vs.
Revision 2.37 by greg, Mon Aug 15 19:48:06 2011 UTC

# Line 8 | Line 8 | static const char RCSid[] = "$Id$";
8   #include  <signal.h>
9   #include  <ctype.h>
10  
11 #include  "platform.h"
11   #include  "mkillum.h"
13 #include  "random.h"
12  
13                                  /* default parameters */
14   #define  SAMPDENS       48              /* points per projected steradian */
# Line 26 | Line 24 | static const char RCSid[] = "$Id$";
24   struct illum_args  thisillum = {        /* our illum and default values */
25                  0,
26                  UDzpos,
27 +                0.,
28                  DFLMAT,
29                  DFLDAT,
30                  0,
# Line 69 | 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;
74        directvis = 0;
73          ambounce = 2;
74                                  /* get options from command line */
75          for (i = 1; i < argc; i++) {
# Line 177 | 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 307 | Line 315 | xoptions(                      /* process options in string s */
315                          }
316                          if (!*++cp || isspace(*cp))
317                                  continue;
318 <                        if (isintd(++cp, " \t\n\r")) {
318 >                        if (isintd(cp, " \t\n\r")) {
319                                  thisillum.sampdens = atoi(cp);
320                          } else {
321                                  atos(buf, sizeof(buf), cp);
# Line 384 | Line 392 | xoptions(                      /* process options in string s */
392                                  break;
393                          case 'z':
394                          case 'Z':
395 <                                thisillum.udir = negax ? UDxneg : UDxpos;
395 >                                thisillum.udir = negax ? UDzneg : UDzpos;
396                                  break;
397                          default:
398                                  thisillum.udir = UDunknown;
# Line 393 | Line 401 | xoptions(                      /* process options in string s */
401                          if (thisillum.udir == UDunknown || !isspace(*cp))
402                                  break;
403                          continue;
404 +                case 't':                       /* object thickness */
405 +                        if (*++cp != '=')
406 +                                break;
407 +                        if (!isfltd(++cp, " \t\n\r"))
408 +                                break;
409 +                        thisillum.thick = atof(cp);
410 +                        if (thisillum.thick < .0)
411 +                                thisillum.thick = .0;
412 +                        cp = sskip(cp);
413 +                        continue;
414                  case '!':                       /* processed file! */
415                          sprintf(errmsg, "(%s): already processed!", nm);
416                          error(WARNING, errmsg);
# Line 435 | 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:
# Line 460 | Line 478 | printopts(void)                        /* print out option default values *
478          case UDunknown:
479                  break;
480          }
481 +        printf("t=%f\t\t\t# object thickness\n", thisillum.thick);
482   }
483  
484  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines