X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=laserbrain_demo;a=blobdiff_plain;f=src%2Fsnode.h;h=94ccb6a2e7125fc2d2b13ddbe77ee5dae4bbc009;hp=5af02f41fc0d99ed03f42902d40e3a169f48f44a;hb=ad052fc67fe4e76d2f4a01b2381a738da1708cdb;hpb=dbcb9345c23c5c027d808915962843e7db2d14aa diff --git a/src/snode.h b/src/snode.h index 5af02f4..94ccb6a 100644 --- a/src/snode.h +++ b/src/snode.h @@ -3,6 +3,7 @@ #include #include "object.h" +#include "geom.h" #include "gmath/gmath.h" class Scene; @@ -23,6 +24,9 @@ private: Mat4 xform; Mat4 inv_xform; + mutable bool local_bvol_valid; + mutable AABox local_bvol; + public: Scene *scene; // scene to which this node belongs Mat4 dbg_xform; @@ -69,6 +73,15 @@ public: void apply_xform(); bool intersect(const Ray &ray, HitPoint *hit) const; + + // cached local bounding box (all objects in this node in model space) + const AABox &calc_local_bounds(); + const AABox &get_local_bounds() const; + + // world bounding box of the node + AABox get_node_bounds() const; + // world bounding box of the node and it's subtree + AABox get_bounds() const; }; #endif // SNODE_H_