Changeset 4568 in orxonox.OLD for orxonox/trunk/src/lib/collision_detection
- Timestamp:
- Jun 9, 2005, 6:01:18 PM (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
r4562 r4568 135 135 printf("center: %f, %f, %f\n\n", center.x, center.y, center.z); 136 136 137 for(int i = 0; i < length; i++)138 {139 printf("vertex %i: %f, %f, %f\n", i, verticesList[i][0], verticesList[i][1], verticesList[i][2]);140 }141 142 137 143 138 for(int i = 0; i < 3; ++i) … … 210 205 void OBBTreeNode::drawBVBlended(int currentDepth, const int depth) const 211 206 {} 207 208 209 void OBBTreeNode::debug() 210 { 211 212 /* 213 for(int i = 0; i < length; i++) 214 { 215 printf("vertex %i: %f, %f, %f\n", i, verticesList[i][0], verticesList[i][1], verticesList[i][2]); 216 } 217 */ 218 } -
orxonox/trunk/src/lib/collision_detection/obb_tree_node.h
r4560 r4568 36 36 virtual void drawBVBlended(int currentDepth, const int depth) const; 37 37 38 void debug(); 39 38 40 private: 39 41 OBB* createBox();
Note: See TracChangeset
for help on using the changeset viewer.