Changeset 4898 in orxonox.OLD for orxonox/trunk/src/lib/graphics/spatial_separation/quadtree.h
- Timestamp:
- Jul 19, 2005, 9:59:28 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/graphics/spatial_separation/quadtree.h
r4887 r4898 18 18 19 19 public: 20 Quadtree(modelInfo* pModelInfo );20 Quadtree(modelInfo* pModelInfo, const int treeDepth); 21 21 virtual ~Quadtree(); 22 23 void separate();24 void separate(const int maxDepth);25 void separate(float minLength);26 22 27 23 void drawTree(int depth, int drawMode) const; … … 30 26 QuadtreeNode* rootNode; //!< reference to the root node of the quadtree 31 27 modelInfo* pModelInfo; //!< reference to the modelInfo of the object 32 28 int treeDepth; //!< depth of the tree 33 29 }; 34 30
Note: See TracChangeset
for help on using the changeset viewer.