Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 7, 2005, 12:29:52 AM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: mod some interface arguments, defined some functions of bv tree

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/util/collision_detection/bv_tree.h

    r4514 r4524  
    1111
    1212// FORWARD DEFINITION
    13 
     13class BoundingVolume;
    1414
    1515
     
    2121  virtual ~BVTree();
    2222
     23  void spawnBVTree(int depth);
     24  void flushTree();
     25
     26  BoundingVolume* getBV(int index) const;
     27 
     28  void collideWith(const BVTree &tree);
     29
     30  void drawBV(int currentDepth, const int depth) const;
     31  void drawBVPolygon(int currentDepth, const int depth) const;
     32  void drawBVBlended(int currentDepth, const int depth) const;
    2333
    2434 private:
     35  BoundingVolume* firstElement;
    2536
    2637};
Note: See TracChangeset for help on using the changeset viewer.