diff options
| author | twells46 <173561638+twells46@users.noreply.github.com> | 2026-03-30 21:07:39 -0500 |
|---|---|---|
| committer | twells46 <173561638+twells46@users.noreply.github.com> | 2026-03-30 21:07:39 -0500 |
| commit | f874d6571a9c5763e5c4270c3389ef2502d2f5e3 (patch) | |
| tree | dde651f3a2fb6ef4a70ee6da027497dbd734d7e0 /color.h | |
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 |