Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 15, 2005, 12:17:37 AM (20 years ago)
Author:
patrick
Message:

orxonox/trunk: cleaned out a segfault in the getDimension function

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/graphics/spatial_separation/quadtree.cc

    r4852 r4868  
    5555
    5656/**
     57 *  gives the signal to separate the model into a quadtree
     58 */
     59void 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 */
     68void Quadtree::separate(float minLength)
     69{
     70  this->rootNode->separateNode(minLength);
     71}
     72
     73
     74/**
    5775 *  draws the debug quadtree boxes around the model
    5876 */
Note: See TracChangeset for help on using the changeset viewer.