diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-04-06 01:24:42 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-04-06 01:24:42 -0400 |
commit | b7405924923986314b09460995c2ebce3b717100 (patch) | |
tree | b1bd9c4defdbaabda88e90af69d4ea9dfa75a817 /libdimension/bvst.h | |
parent | e328a1d560b7924084b7a45160a75f2a0d3a6e27 (diff) | |
download | dimension-b7405924923986314b09460995c2ebce3b717100.tar.xz |
New dmnsn_bounding_box type.
Diffstat (limited to 'libdimension/bvst.h')
-rw-r--r-- | libdimension/bvst.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdimension/bvst.h b/libdimension/bvst.h index b783117..e682b2c 100644 --- a/libdimension/bvst.h +++ b/libdimension/bvst.h @@ -46,8 +46,8 @@ struct dmnsn_bvst_node { /* Parent node for easy backtracking */ dmnsn_bvst_node *parent; - /* Bounding box corners */ - dmnsn_vector min, max; + /* Bounding box */ + dmnsn_bounding_box bounding_box; /* Node payload */ dmnsn_object *object; |