Changeset 4812 in orxonox.OLD for orxonox/trunk/src
- Timestamp:
- Jul 7, 2005, 2:31:03 PM (19 years ago)
- Location:
- orxonox/trunk/src/lib/graphics/spatial_separation
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/graphics/spatial_separation/quadtree.cc
r4808 r4812 39 39 // delete what has to be deleted here 40 40 } 41 42 43 /** 44 \brief gives the signal to separate the model into a quadtree 45 */ 46 void Quadtree::separate() 47 {} 48 49 50 /** 51 \brief draws the debug quadtree boxes around the model 52 */ 53 void Quadtree::drawTree(int depth, int drawMode) const 54 {} -
orxonox/trunk/src/lib/graphics/spatial_separation/quadtree.h
r4811 r4812 21 21 virtual ~Quadtree(); 22 22 23 void separate(); 24 23 25 void drawTree(int depth, int drawMode) const; 24 26 -
orxonox/trunk/src/lib/graphics/spatial_separation/quadtree_node.cc
r4808 r4812 40 40 // delete what has to be deleted here 41 41 } 42 43 44 /** 45 \brief gives the signal to separate the model into a quadtree 46 */ 47 void QuadtreeNode::separateNode() 48 {} 49 50 51 /** 52 \brief draws the debug quadtree boxes around the model 53 */ 54 void QuadtreeNode::drawTree(int depth, int drawMode) const 55 {} -
orxonox/trunk/src/lib/graphics/spatial_separation/quadtree_node.h
r4811 r4812 21 21 virtual ~QuadtreeNode(); 22 22 23 void separateNode(); 24 25 void drawTree(int depth, int drawMode) const; 26 23 27 24 28 private:
Note: See TracChangeset
for help on using the changeset viewer.