Changeset 4685 in orxonox.OLD for orxonox/trunk/src/lib/collision_detection
- Timestamp:
- Jun 24, 2005, 1:03:27 AM (19 years ago)
- Location:
- orxonox/trunk/src/lib/collision_detection
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/collision_detection/obb_tree_node.cc
r4676 r4685 837 837 838 838 839 void OBBTreeNode::debug( )839 void OBBTreeNode::debug(void) const 840 840 { 841 841 -
orxonox/trunk/src/lib/collision_detection/obb_tree_node.h
r4638 r4685 37 37 virtual void drawBV(int depth, int drawMode) const; 38 38 39 void debug( );39 void debug(void) const; 40 40 41 41 private: … … 47 47 48 48 protected: 49 OBB* bvElement;//!< the obb element50 OBBTreeNode* nodeLeft;//!< ref to the left tree node51 OBBTreeNode* nodeRight;//!< ref to the right tree node49 OBB* bvElement; //!< the obb element 50 OBBTreeNode* nodeLeft; //!< ref to the left tree node 51 OBBTreeNode* nodeRight; //!< ref to the right tree node 52 52 53 53
Note: See TracChangeset
for help on using the changeset viewer.