diff options
Diffstat (limited to 'color.h')
| -rw-r--r-- | color.h | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +#ifndef _COLOR_MATH_H +#define _COLOR_MATH_H + +#include "math.h" + +struct rgb { + double r, g, b; +}; + +struct xyz { + double x, y, z; +}; + +struct rgb calc_whitepoint(int temp); + +#endif |