Changeset 2702 for GTP/trunk/Lib/Vis/Preprocessing/src/SceneGraph.h
- Timestamp:
- 05/23/08 17:47:22 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/SceneGraph.h
r2694 r2702 55 55 { 56 56 public: 57 57 /** Copy constructor. 58 */ 59 SceneGraphLeaf(SceneGraphLeaf const&); 58 60 SceneGraphLeaf(); 59 61 SceneGraphLeaf(bool isDynamic); … … 74 76 virtual void UpdateBox(); 75 77 76 #if DYNAMIC_OBJECTS_HACK77 78 SceneGraphLeafIntersectable *GetIntersectable() { return mIntersectable; } 78 #endif79 79 80 /// used as actual pvs entry 80 const Matrix4x4 &GetTransformation() const { return mTrafo; } 81 82 //void SetGeometry(ObjectContainer *geometry); 83 84 /// used as actual pvs entry: note should be pointer to geometry!! 81 85 ObjectContainer mGeometry; 82 const Matrix4x4 &GetTransformation() const { return mTrafo; } 86 87 83 88 protected: 84 89 85 #if DYNAMIC_OBJECTS_HACK86 87 90 SceneGraphLeafIntersectable *mIntersectable; 88 CKTB *mKtbTree;89 90 #endif91 91 92 92 bool mIsDynamic;
Note: See TracChangeset
for help on using the changeset viewer.