Changeset 4717 in orxonox.OLD for orxonox/trunk/src/lib
- Timestamp:
- Jun 27, 2005, 1:49:58 AM (19 years ago)
- Location:
- orxonox/trunk/src/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/collision_detection/obb_tree_node.cc
r4712 r4717 91 91 void OBBTreeNode::spawnBVTree(const int depth, sVec3D *verticesList, const int length) 92 92 { 93 PRINT( 0)("\n");93 PRINT(3)("\n"); 94 94 this->treeIndex = this->obbTree->getID(); 95 PRINTF( 0)("OBB Depth: %i, tree index: %i, numVertices: %i\n", depth, treeIndex, length);95 PRINTF(3)("OBB Depth: %i, tree index: %i, numVertices: %i\n", depth, treeIndex, length); 96 96 this->depth = depth; 97 97 … … 122 122 else 123 123 { 124 PRINTF( 0)("Aboarding tree walk: less than 3 vertices left\n");124 PRINTF(3)("Aboarding tree walk: less than 3 vertices left\n"); 125 125 } 126 126 … … 133 133 else 134 134 { 135 PRINTF( 0)("Abording tree walk: less than 3 vertices left\n");135 PRINTF(3)("Abording tree walk: less than 3 vertices left\n"); 136 136 } 137 137 -
orxonox/trunk/src/lib/graphics/importer/md2Model.cc
r4697 r4717 203 203 } 204 204 205 205 206 for(; i > 0; i--, pCommands += 3) /* down counting for loop, next 3 gl commands */ 206 207 { 208 glTexCoord2f( ((float *)pCommands)[0], ((float *)pCommands)[1] ); 207 209 glNormal3fv(anorms[this->data->pLightNormals[pCommands[2]]]); 208 glTexCoord2f( ((float *)pCommands)[0], ((float *)pCommands)[1] );209 210 glVertex3fv(verticesList[pCommands[2]]); 210 211 } 211 212 glEnd(); 213 212 214 } 213 215 glDisable(GL_CULL_FACE);
Note: See TracChangeset
for help on using the changeset viewer.