Changeset 4868 in orxonox.OLD for orxonox/trunk/src/lib/graphics/spatial_separation/quadtree.cc
- Timestamp:
- Jul 15, 2005, 12:17:37 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/graphics/spatial_separation/quadtree.cc
r4852 r4868 55 55 56 56 /** 57 * gives the signal to separate the model into a quadtree 58 */ 59 void Quadtree::separate(int treeDepth) 60 { 61 this->rootNode->separateNode(treeDepth); 62 } 63 64 65 /** 66 * gives the signal to separate the model into a quadtree 67 */ 68 void Quadtree::separate(float minLength) 69 { 70 this->rootNode->separateNode(minLength); 71 } 72 73 74 /** 57 75 * draws the debug quadtree boxes around the model 58 76 */
Note: See TracChangeset
for help on using the changeset viewer.