Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 22, 2005, 11:27:44 PM (19 years ago)
Author:
patrick
Message:

collision_detection: moved the treedepth variable and therefore the hole interface changed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/collision_detection/src/lib/collision_detection/obb_tree.h

    r5702 r5716  
    2020
    2121  public:
    22     OBBTree();
    2322    OBBTree(int depth, sVec3D *verticesList, const int length);
    2423    OBBTree(int depth, const modelInfo& modInfo);
     
    2625    void init();
    2726
    28     virtual void spawnBVTree(int depth, sVec3D *verticesList, const int length);
    29     virtual void spawnBVTree(int depth, const modelInfo& modelInf);
     27    virtual void spawnBVTree(sVec3D *verticesList, const int length);
     28    virtual void spawnBVTree(const modelInfo& modelInf);
    3029    virtual void flushTree();
    3130
     
    4342    OBBTreeNode*         rootNode;                        //!< reference to the root node of the tree
    4443    int                  id;
     44    int                  depth;                           //!< the depth of the tree to generate
    4545};
    4646
Note: See TracChangeset for help on using the changeset viewer.