aboutsummaryrefslogtreecommitdiff
path: root/color.h
blob: f2212989ff07d4d45877c51b7b4970478f1d10cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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