Changeset 4903 in orxonox.OLD for orxonox/trunk/src/subprojects/collision_detection
- Timestamp:
- Jul 19, 2005, 10:50:53 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/subprojects/collision_detection/collision_detection.cc
r4741 r4903 29 29 #include "test_entity.h" 30 30 #include "environment.h" 31 #include "terrain.h" 31 32 32 33 … … 80 81 entityList = new tList<WorldEntity>(); 81 82 82 a = new TestEntity(); a->setName("Clown1");83 b = new Environment(); b->setName("Jaeger");84 //c= new Terrain();85 86 b->setRelCoor(0.0, 0.0, -20.0);87 b->setRelDir(Quaternion(-M_PI/2.0f, Vector(0.0, 1.0, 0.0)));83 // a = new TestEntity(); a->setName("Clown1"); 84 // b = new Environment(); b->setName("Jaeger"); 85 a = new Terrain(); 86 87 // b->setRelCoor(0.0, 0.0, -20.0); 88 // b->setRelDir(Quaternion(-M_PI/2.0f, Vector(0.0, 1.0, 0.0))); 88 89 89 90 entityList->add(a); 90 entityList->add(b);91 // entityList->add(b); 91 92 92 93 CDEngine::getInstance()->setEntityList(entityList);
Note: See TracChangeset
for help on using the changeset viewer.