Changeset 4918 in orxonox.OLD for orxonox/trunk/src/lib/collision_detection
- Timestamp:
- Jul 21, 2005, 12:37:46 PM (19 years ago)
- Location:
- orxonox/trunk/src/lib/collision_detection
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/collision_detection/cd_engine.cc
r4907 r4918 61 61 void CDEngine::checkCollisions() 62 62 { 63 this->checkCollisionObjects();63 //this->checkCollisionObjects(); 64 64 this->checkCollisionGround(); 65 65 } -
orxonox/trunk/src/lib/collision_detection/cd_engine.h
r4836 r4918 15 15 class WorldEntity; 16 16 class OBBTree; 17 class Terrain; 17 18 18 19 … … 45 46 46 47 inline void setEntityList(tList<WorldEntity>* entityList) { this->entityList = entityList; } 48 inline void setTerrain(Terrain* terrain) { this->terrain = terrain; } 47 49 48 50 void drawBV(int depth, int drawMode) const; … … 68 70 tList<WorldEntity>* entityList; //!< pointer to the world entity list 69 71 OBBTree* rootTree; //!< for testing purposes a root tree 72 73 Terrain* terrain; //!< this it a ref to the terrain, serving as a ground for all WE 70 74 }; 71 75
Note: See TracChangeset
for help on using the changeset viewer.