mesh, meshgroup, scenefile
[vrlugburz] / src / geom.h
1 #ifndef GEOM_H_
2 #define GEOM_H_
3
4 #include "cgmath/cgmath.h"
5
6 struct sphere {
7         cgm_vec3 pos;
8         float rad;
9 };
10
11 struct aabox {
12         cgm_vec3 vmin, vmax;
13 };
14
15 #endif  /* GEOM_H_ */