7f0937532362c6271b85aa7ecd20a114b5bb578c
[cyberay] / src / rt.h
1 #ifndef RT_H_
2 #define RT_H_
3
4 #include <cgmath/cgmath.h>
5 #include "image.h"
6
7 struct material {
8         cgm_vec3 color;
9         float roughness;
10         float ior;
11
12         struct image *tex_color;
13 };
14
15 #endif  /* RT_H_ */