Changeset 6897 in orxonox.OLD for branches/cdmerge/src/lib/collision_detection
- Timestamp:
- Jan 31, 2006, 3:45:13 PM (19 years ago)
- Location:
- branches/cdmerge/src/lib/collision_detection
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/cdmerge/src/lib/collision_detection/obb_tree.cc
r6894 r6897 66 66 if( unlikely(this->rootNode != NULL)) 67 67 { 68 PRINTF(2)("The BVTree has already been spawned, flushing and respawning again...\n");69 this->flushTree();68 PRINTF(2)("The BVTree has already been spawned, returning\n"); 69 return; 70 70 } 71 71 72 this->rootNode = new OBBTreeNode(*this, NULL, depth-1); 72 73 73 /* triangles indexes created */ 74 74 int* triangleIndexes = new int[modelInf.numTriangles]; -
branches/cdmerge/src/lib/collision_detection/obb_tree_node.cc
r6894 r6897 689 689 { 690 690 691 printf("draw bv\n"); 691 692 692 693 /* this function can be used to draw the triangles and/or the points only */
Note: See TracChangeset
for help on using the changeset viewer.