projects
/
vrlugburz
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
updated treestore.h
[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_ */