Changeset 7739 in orxonox.OLD for trunk/src/lib/collision_detection
- Timestamp:
- May 20, 2006, 11:24:22 AM (19 years ago)
- Location:
- trunk/src/lib/collision_detection
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/collision_detection/cd_engine.cc
r7711 r7739 131 131 132 132 133 void CDEngine::drawBV(const ObjectManager::EntityList& drawList 133 void CDEngine::drawBV(const ObjectManager::EntityList& drawList, int level) const 134 134 { 135 135 ObjectManager::EntityList::const_iterator entity; 136 136 for (entity = drawList.begin(); entity != drawList.end(); entity++) 137 (*entity)->drawBVTree( 3, 226);137 (*entity)->drawBVTree(level, 226); 138 138 } 139 139 -
trunk/src/lib/collision_detection/cd_engine.h
r7713 r7739 53 53 void checkCollisions(std::list<WorldEntity*>& list1, std::list<WorldEntity*>& list2); 54 54 55 void drawBV(const std::list<WorldEntity*>& drawList 55 void drawBV(const std::list<WorldEntity*>& drawList, int level) const; 56 56 void debug(); 57 57
Note: See TracChangeset
for help on using the changeset viewer.