wlsunset/color_math.h

9 lines
270 B
C
Raw Normal View History

2020-09-13 01:22:18 +00:00
#ifndef _COLOR_MATH_H
#define _COLOR_MATH_H
2020-10-04 13:27:46 +00:00
void sun(struct tm *tm, double longitude, double latitude, time_t *dawn, time_t *sunrise, time_t *sunset, time_t *dusk);
2020-09-13 01:22:18 +00:00
double clamp(double value);
void calc_whitepoint(int temp, double *rw, double *gw, double *bw);
#endif