mesh, meshgroup, scenefile
[vrlugburz] / src / geom.h
diff --git a/src/geom.h b/src/geom.h
new file mode 100644 (file)
index 0000000..afce931
--- /dev/null
@@ -0,0 +1,15 @@
+#ifndef GEOM_H_
+#define GEOM_H_
+
+#include "cgmath/cgmath.h"
+
+struct sphere {
+       cgm_vec3 pos;
+       float rad;
+};
+
+struct aabox {
+       cgm_vec3 vmin, vmax;
+};
+
+#endif /* GEOM_H_ */