Changeset 4485 in orxonox.OLD for orxonox/trunk/src/util/animation/animation3d.cc
- Timestamp:
- Jun 3, 2005, 12:19:43 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/animation/animation3d.cc
r4000 r4485 86 86 \param duration The duration from the new KeyFrame to the next one 87 87 \param animFuncMov The function to animate position between this keyFrame and the next one 88 \param animFuncMov The function to animate rotation between this keyFrame and the next one 89 */ 90 void Animation3D::addKeyFrame(Vector position, Quaternion direction, float duration, ANIM_FUNCTION animFuncMov, ANIM_FUNCTION animFuncRot) 88 \param animFuncRot The function to animate rotation between this keyFrame and the next one 89 */ 90 void Animation3D::addKeyFrame(Vector position, Quaternion direction, float duration, 91 ANIM_FUNCTION animFuncMov, ANIM_FUNCTION animFuncRot) 91 92 { 92 93 // some small check … … 167 168 /** 168 169 \brief Sets The kind of movment Animation between this keyframe and the next one 169 \param animFunc The Type of Animation to set170 \param animFuncMov: The Type of Animation to set 170 171 */ 171 172 void Animation3D::setAnimFuncMov(ANIM_FUNCTION animFuncMov) … … 213 214 } 214 215 } 215 216 217 216 218 217 /** … … 348 347 /** 349 348 \brief Sets The kind of rotation Animation between this keyframe and the next one 350 \param animFunc The Type of Animation to set349 \param animFuncRot: The Type of Animation to set 351 350 */ 352 351 void Animation3D::setAnimFuncRot(ANIM_FUNCTION animFuncRot)
Note: See TracChangeset
for help on using the changeset viewer.