Changeset 4924 in orxonox.OLD for orxonox/trunk/src/lib/collision_detection
- Timestamp:
- Jul 21, 2005, 4:46:41 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
r4923 r4924 71 71 72 72 73 73 /** 74 * this checks the collisions with the objects 75 */ 74 76 void CDEngine::checkCollisionObjects() 75 77 { … … 96 98 97 99 100 /** 101 * this checks the collisions with the ground 102 */ 98 103 void CDEngine::checkCollisionGround() 99 104 { … … 103 108 104 109 110 /** 111 * this draws the bounding volume tree 112 * @param depth until which depth to draw the tree 113 * @param drawMode mod which states how to draw it 114 */ 105 115 void CDEngine::drawBV(int depth, int drawMode) const 106 116 { … … 116 126 } 117 127 delete iterator; 118 //model->draw();119 128 } 120 129 121 130 122 123 124 131 /** 132 * some debug output on the class 133 */ 125 134 void CDEngine::debug() 126 135 { … … 133 142 } 134 143 144 145 /** 146 * this spawns a tree for debug purposes only 147 */ 135 148 void CDEngine::debugSpawnTree(int depth, sVec3D* vertices, int numVertices) 136 149 { … … 140 153 } 141 154 155 156 /** 157 * this draws the debug spawn tree 158 */ 142 159 void CDEngine::debugDraw(int depth, int drawMode) 143 160 { -
orxonox/trunk/src/lib/collision_detection/cd_engine.h
r4919 r4924 55 55 56 56 void debug(); 57 void debugSpawnTree(int depth, sVec3D* vertices, int numVertices); 58 void debugDraw(int depth, int drawMode); 57 59 58 60 59 private: … … 66 65 void checkCollisionObjects(); 67 66 void checkCollisionGround(); 67 68 void debugSpawnTree(int depth, sVec3D* vertices, int numVertices); 69 void debugDraw(int depth, int drawMode); 68 70 69 71
Note: See TracChangeset
for help on using the changeset viewer.