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

Comparing ray/src/rt/rtmain.c (file contents):
Revision 2.10 by greg, Wed May 25 04:44:26 2005 UTC vs.
Revision 2.14 by greg, Wed Apr 5 06:22:57 2006 UTC

# Line 7 | Line 7 | static const char      RCSid[] = "$Id$";
7  
8   #include "copyright.h"
9  
10 #include  <sys/types.h>
10   #include  <signal.h>
11  
12   #include  "platform.h"
# Line 228 | Line 227 | main(int  argc, char  *argv[])
227                                          /* initialize object types */
228          initotypes();
229                                          /* initialize urand */
230 <        initurand(2048);
230 >        if (rand_samp) {
231 >                srandom((long)time(0));
232 >                initurand(0);
233 >        } else {
234 >                srandom(0L);
235 >                initurand(2048);
236 >        }
237                                          /* set up signal handling */
238          sigdie(SIGINT, "Interrupt");
239   #ifdef SIGHUP
# Line 274 | Line 279 | main(int  argc, char  *argv[])
279                  openheader();
280          }
281   #endif
277 #ifdef  _WIN32
282          if (outform != 'a')
283                  SET_FILE_BINARY(stdout);
280        if (octname == NULL)
281                SET_FILE_BINARY(stdin);
282 #endif
284          readoct(octname, loadflags, &thescene, NULL);
285          nsceneobjs = nobjects;
286  
# Line 439 | Line 440 | printdefaults(void)                    /* print default values to stdou
440                  case 'o': printf(" origin"); break;
441                  case 'd': printf(" direction"); break;
442                  case 'v': printf(" value"); break;
443 +                case 'V': printf(" contribution"); break;
444                  case 'l': printf(" length"); break;
445                  case 'L': printf(" first_length"); break;
446                  case 'p': printf(" point"); break;
# Line 446 | Line 448 | printdefaults(void)                    /* print default values to stdou
448                  case 'N': printf(" unperturbed_normal"); break;
449                  case 's': printf(" surface"); break;
450                  case 'w': printf(" weight"); break;
451 +                case 'W': printf(" coefficient"); break;
452                  case 'm': printf(" modifier"); break;
453                  case 'M': printf(" material"); break;
451                case 'W': printf(" contribution"); break;
454                  case '-': printf(" stroke"); break;
455                  }
456          putchar('\n');

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines