Changeset 3372 in orxonox.OLD
- Timestamp:
- Jan 7, 2005, 3:42:34 AM (20 years ago)
- Location:
- orxonox/branches/trackManager/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/trackManager/src/environment.cc
r3369 r3372 55 55 glTranslatef (this->getAbsCoor ().x, this->getAbsCoor ().y, this->getAbsCoor ().z); 56 56 //rotate 57 this->getAbsDir 57 this->getAbsDir().matrix (matrix); 58 58 glMultMatrixf((float*)matrix); 59 59 60 glMatrixMode(GL_MODELVIEW);61 60 this->model->draw(); 62 61 } -
orxonox/branches/trackManager/src/p_node.cc
r3371 r3372 214 214 */ 215 215 Quaternion PNode::getAbsDir () 216 {} 216 { 217 return this->absDirection; 218 } 217 219 218 220 -
orxonox/branches/trackManager/src/track_manager.cc
r3371 r3372 445 445 if (this->localTime <= this->firstTrackElem->duration) 446 446 this->jumpTo(this->localTime); 447 printf("LocalTime is: %f, timestep is: %f\n", this->localTime, dt);448 447 this->localTime += dt; 449 448 if (this->localTime > this->currentTrackElem->startingTime + this->currentTrackElem->duration && this->currentTrackElem->childCount > 0)
Note: See TracChangeset
for help on using the changeset viewer.