Changeset 8012 for code/branches/tutorial/src/orxonox/controllers
- Timestamp:
- Mar 3, 2011, 4:18:34 PM (14 years ago)
- Location:
- code/branches/tutorial/src/orxonox/controllers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/tutorial/src/orxonox/controllers/AutonomousDroneController.cc
r8011 r8012 35 35 { 36 36 37 CreateFactory(AutonomousDroneController); 38 37 39 /** 38 40 @brief … … 46 48 // Make sure to register the object in the factory. 47 49 // Do some kind of initialisation. 50 RegisterObject(AutonomousDroneController); 48 51 49 52 // This checks that our creator really is a drone … … 78 81 // - rotatePitch, rotateYaw, rotateRoll 79 82 // Apply the to myDrone (e.g. myDrone->rotateYaw(..) ) 83 myDrone->rotateYaw(dt); 80 84 81 85 } -
code/branches/tutorial/src/orxonox/controllers/CMakeLists.txt
r7163 r8012 1 1 ADD_SOURCE_FILES(ORXONOX_SRC_FILES 2 AutonomousDroneController.cc 2 3 Controller.cc 3 4 HumanController.cc
Note: See TracChangeset
for help on using the changeset viewer.