Changeset 4904 in orxonox.OLD for orxonox/trunk/src
- Timestamp:
- Jul 19, 2005, 11:05:36 PM (19 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/collision_detection/cd_engine.cc
r4836 r4904 61 61 void CDEngine::checkCollisions() 62 62 { 63 this->checkCollisionObjects(); 64 this->checkCollisionGround(); 65 } 66 67 68 69 void CDEngine::checkCollisionObjects() 70 { 63 71 tIterator<WorldEntity>* iterator1 = entityList->getIterator(); 64 72 tIterator<WorldEntity>* iterator2 = entityList->getIterator(); … … 84 92 85 93 86 87 void CDEngine::checkCollisionObjects() 88 {} 94 void CDEngine::checkCollisionGround() 95 { 89 96 90 97 91 void CDEngine::checkCollisionGround() 92 {} 98 } 93 99 94 100 -
orxonox/trunk/src/lib/graphics/spatial_separation/quadtree.h
r4902 r4904 15 15 class QuadtreeNode; 16 16 class Material; 17 class Vector; 17 18 18 19 //! A class for quadtree separation of the world … … 23 24 virtual ~Quadtree(); 24 25 26 QuadtreeNode* getQuadtreeFromPosition(const Vector& position); 27 25 28 void drawTree(int depth, int drawMode) const; 26 27 29 inline Material* getMaterial(int indexNode) const { return this->materials[indexNode % 4]; } 28 30 -
orxonox/trunk/src/lib/graphics/spatial_separation/quadtree_node.h
r4902 r4904 26 26 QuadtreeNode(modelInfo* pModelInfo, Quadtree* quadtree, const int maxDepth); 27 27 virtual ~QuadtreeNode(); 28 29 float getHeight(const Vector& position); 28 30 29 31 void drawTree(int depth, int drawMode) const; -
orxonox/trunk/src/world_entities/terrain.cc
r4889 r4904 121 121 this->model->draw(); 122 122 glPopMatrix(); 123 124 this->ssp->drawQuadtree(); 123 125 } 124 126
Note: See TracChangeset
for help on using the changeset viewer.