fixed bounding volume issue
[laserbrain_demo] / src / object.h
index 65c39e1..3ffec1f 100644 (file)
@@ -12,12 +12,12 @@ class SceneNode;
 enum ObjType { OBJ_NULL, OBJ_MESH };
 
 class Object {
-private:
+protected:
        std::string name;
+       mutable AABox aabb;
 
 public:
        Material mtl;
-       //GeomObject *bvol;
        SceneNode *node;
 
        Object();