Changeset 4618 in orxonox.OLD for orxonox/trunk/src/lib/collision_detection/obb_tree.cc
- Timestamp:
- Jun 13, 2005, 9:41:30 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/collision_detection/obb_tree.cc
r4616 r4618 75 75 if( likely(this->rootNode != NULL)) 76 76 { 77 this->rootNode->drawBV(currentDepth , depth);78 this->rootNode->drawBVPolygon(currentDepth , depth);77 this->rootNode->drawBV(currentDepth); 78 this->rootNode->drawBVPolygon(currentDepth); 79 79 } 80 80 } … … 84 84 { 85 85 if( likely(this->rootNode != NULL)) 86 this->rootNode->drawBVPolygon(currentDepth , depth);86 this->rootNode->drawBVPolygon(currentDepth); 87 87 } 88 88 … … 91 91 { 92 92 if( likely(this->rootNode != NULL)) 93 this->rootNode->drawBVBlended(currentDepth , depth);93 this->rootNode->drawBVBlended(currentDepth); 94 94 } 95 95
Note: See TracChangeset
for help on using the changeset viewer.