15 lines
240 B
C
15 lines
240 B
C
#ifndef INCLUDED_COLOR_H
|
|
#define INCLUDED_COLOR_H
|
|
|
|
#include <stdio.h>
|
|
|
|
typedef struct Color {
|
|
double r, g, b;
|
|
} Color;
|
|
|
|
Color color_lerp(Color c1, Color c2, double t);
|
|
|
|
void color_write(FILE *out, Color c);
|
|
|
|
#endif /* INCLUDED_COLOR_H */
|