ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/color.h
(Generate patch)

Comparing ray/src/common/color.h (file contents):
Revision 1.12 by greg, Wed Jul 17 11:52:25 1991 UTC vs.
Revision 1.13 by greg, Thu Oct 24 10:29:03 1991 UTC

# Line 48 | Line 48 | typedef float  COLOR[3];       /* red, green, blue */
48   #define  normbright(c)          (int)((67L*(c)[RED]+168L*(c)[GRN]+21L*(c)[BLU])/256)
49   #endif
50  
51 < #define  luminance(col)         (470. * bright(col))
51 > #define  D65EFFICACY            203.            /* luminous efficacy of D65 */
52 > #define  luminance(col)         (D65EFFICACY * bright(col))
53  
54   #define  intens(col)            ( (col)[0] > (col)[1] \
55                                  ? (col)[0] > (col)[2] ? (col)[0] : (col)[2] \

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines