Changeset 4617 in orxonox.OLD for orxonox/trunk/src/subprojects
- Timestamp:
- Jun 13, 2005, 9:32:26 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/subprojects/collision_detection/collision_detection.cc
r4615 r4617 31 31 { 32 32 CDEngine::getInstance(); 33 //CDEngine::getInstance()->debug();33 CDEngine::getInstance()->debug(); 34 34 35 model = new MD2Model("models/tris.md2", "models/tris.pcx");36 model->tick(0.1f);37 CDEngine::getInstance()->debugSpawnTree(1, model->data->pVertices, model->data->numVertices);35 //model = new MD2Model("models/tris.md2", "models/tris.pcx"); 36 //model->tick(0.1f); 37 //CDEngine::getInstance()->debugSpawnTree(2, model->data->pVertices, model->data->numVertices); 38 38 39 39 LightManager* lightMan = LightManager::getInstance(); … … 70 70 LightManager::getInstance()->draw(); 71 71 72 model->draw();72 //model->draw(); 73 73 } 74 74 … … 84 84 void Framework::moduleInitGui(int argc, char** argv) 85 85 { 86 Window* guiMainWindow = NULL;87 88 initGUI(0, NULL);89 90 guiMainWindow = new Window("Collision_detection");91 {92 // all the Widgets you need93 }94 Window::mainWindow->showall();95 Window::mainWindow->setSize(300, 500);86 // Window* guiMainWindow = NULL; 87 // 88 // initGUI(0, NULL); 89 // 90 // guiMainWindow = new Window("Collision_detection"); 91 // { 92 // // all the Widgets you need 93 // } 94 // Window::mainWindow->showall(); 95 // Window::mainWindow->setSize(300, 500); 96 96 }
Note: See TracChangeset
for help on using the changeset viewer.