| 1 |
– |
/* Copyright (c) 1992 Regents of the University of California */ |
| 2 |
– |
|
| 1 |
|
#ifndef lint |
| 2 |
< |
static char SCCSid[] = "$SunId$ LBL"; |
| 2 |
> |
static const char RCSid[] = "$Id$"; |
| 3 |
|
#endif |
| 6 |
– |
|
| 4 |
|
/* |
| 5 |
|
* Convert Neutral File Format input to Radiance scene description. |
| 6 |
|
* |
| 427 |
|
progname); |
| 428 |
|
exit(1); |
| 429 |
|
} |
| 430 |
< |
if (invert = r0 < 0.) { |
| 430 |
> |
if ( (invert = r0 < 0.) ) { |
| 431 |
|
r0 = -r0; |
| 432 |
|
r1 = -r1; |
| 433 |
|
} |
| 548 |
|
* $Revision$ |
| 549 |
|
* $Date$ |
| 550 |
|
* $Log$ |
| 551 |
< |
* Revision 2.4 1993/07/20 11:34:40 greg |
| 552 |
< |
* fixes in materials and light sources (hacks all) |
| 551 |
> |
* Revision 2.6 2003/07/27 22:12:01 schorsch |
| 552 |
> |
* Added grouping parens to reduce ambiguity warnings. |
| 553 |
> |
* |
| 554 |
> |
* Revision 2.5 2003/02/22 02:07:23 greg |
| 555 |
> |
* Changes and check-in for 3.5 release |
| 556 |
> |
* Includes new source files and modifications not recorded for many years |
| 557 |
> |
* See ray/doc/notes/ReleaseNotes for notes between 3.1 and 3.5 release |
| 558 |
|
* |
| 559 |
|
* Revision 1.2 88/09/12 12:53:47 markv |
| 560 |
|
* Fixed problem in LookupColorbyName, had return ; and return(0). |