From f874d6571a9c5763e5c4270c3389ef2502d2f5e3 Mon Sep 17 00:00:00 2001 From: twells46 <173561638+twells46@users.noreply.github.com> Date: Mon, 30 Mar 2026 21:07:39 -0500 Subject: Forked --- color.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 color.h (limited to 'color.h') diff --git a/color.h b/color.h new file mode 100644 index 0000000..f221298 --- /dev/null +++ b/color.h @@ -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 -- cgit v1.2.3