Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

orxonox/trunk: implemented some more bv, obb and bs functions now reached the point to start implementing it

File:
1 edited

Legend:

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

    r4521 r4525  
    1919  virtual ~OBB();
    2020
    21 
     21  inline const Vector* getAxis () const { return this->axis; }
     22  inline const sVect3D* getHalfLength() const { return this->halfLength; }
    2223
    2324 private:
    24   OBB*     leftNode;                   //!< left node of the tree
    25   OBB*     rightNode;                  //!< right node of the tree
     25  Vector*          axis;                       //!< Axes of oriented box [x,y,z]
     26  sVect3D*         halfLength;                 //!< Half lengths of the box
     27
     28  OBB*             leftNode;                   //!< left node of the tree
     29  OBB*             rightNode;                  //!< right node of the tree
    2630};
    2731
Note: See TracChangeset for help on using the changeset viewer.