Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 24, 2005, 12:50:34 AM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: now there is a possibility to render the bvtree through the world entities, the bvtree is a member of the worldentity

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/collision_detection/obb_tree.cc

    r4671 r4682  
    3131OBBTree::OBBTree ()
    3232{
     33  this->init();
     34}
     35
     36OBBTree::OBBTree(int depth, sVec3D *verticesList, const int length)
     37{
     38  this->init();
     39  this->spawnBVTree(depth, verticesList, length);
     40}
     41
     42
     43
     44void OBBTree::init()
     45{
    3346  this->setClassID(CL_OBB_TREE, "OBBTree");
    3447
     
    6174  this->id = 0;
    6275}
    63 
    6476
    6577/**
Note: See TracChangeset for help on using the changeset viewer.