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.1 by greg, Tue Nov 12 17:05:04 1991 UTC vs.
Revision 2.2 by greg, Wed Mar 11 11:09:57 1992 UTC

# Line 385 | Line 385 | printopts()                    /* print out option default values */
385   {
386          printf("m=%-15s\t\t# material name\n", thisillum.matname);
387          printf("f=%-15s\t\t# data file name\n", thisillum.datafile);
388 <        printf("c=n\t\t\t\t# color none\n");
388 >        if (thisillum.flags & IL_COLAVG)
389 >                if (thisillum.flags & IL_COLDST)
390 >                        printf("c=d\t\t\t\t# color distribution\n");
391 >                else
392 >                        printf("c=a\t\t\t\t# color average\n");
393 >        else
394 >                printf("c=n\t\t\t\t# color none\n");
395 >        if (thisillum.flags & IL_LIGHT)
396 >                printf("l+\t\t\t\t# light type on\n");
397 >        else
398 >                printf("l-\t\t\t\t# light type off\n");
399          printf("d=%d\t\t\t\t# density of points\n", thisillum.sampdens);
400          printf("s=%d\t\t\t\t# samples per point\n", thisillum.nsamps);
401          printf("b=%f\t\t\t# minimum average brightness\n", thisillum.minbrt);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines