aboutsummaryrefslogtreecommitdiff
path: root/color.h
diff options
context:
space:
mode:
Diffstat (limited to 'color.h')
-rw-r--r--color.h16
1 files changed, 16 insertions, 0 deletions
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