Changeset 5111 in orxonox.OLD for trunk/src/util/animation
- Timestamp:
- Aug 23, 2005, 11:13:56 PM (19 years ago)
- Location:
- trunk/src/util/animation
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/util/animation/animation3d.cc
r5110 r5111 58 58 // delete all the KeyFrames 59 59 tIterator<KeyFrame3D>* itKF = keyFrameList->getIterator(); 60 KeyFrame3D* enumKF = itKF-> firstElement();60 KeyFrame3D* enumKF = itKF->nextElement(); 61 61 while (enumKF) 62 62 { -
trunk/src/util/animation/animation_player.cc
r5110 r5111 86 86 // deleting the Animation List AND all the elements of the List 87 87 tIterator<Animation>* animIt = this->animationList->getIterator(); 88 Animation* anim = animIt-> firstElement();88 Animation* anim = animIt->nextElement(); 89 89 while( anim != NULL) 90 90 { … … 109 109 // iterate through all the animations and tick them. 110 110 tIterator<Animation>* animIt = this->animationList->getIterator(); 111 Animation* anim = animIt-> firstElement();111 Animation* anim = animIt->nextElement(); 112 112 while( anim != NULL) 113 113 { … … 147 147 { 148 148 tIterator<Animation>* animIt = this->animationList->getIterator(); 149 Animation* anim = animIt-> firstElement();149 Animation* anim = animIt->nextElement(); 150 150 while( anim != NULL) 151 151 { … … 176 176 // Per ANIMATION DEBUG 177 177 tIterator<Animation>* animIt = this->animationList->getIterator(); 178 Animation* anim = animIt-> firstElement();178 Animation* anim = animIt->nextElement(); 179 179 while( anim != NULL) 180 180 { -
trunk/src/util/animation/t_animation.h
r5110 r5111 108 108 // delete all the KeyFrames 109 109 tIterator<KeyFrameF>* itKF = keyFrameList->getIterator(); 110 KeyFrameF* enumKF = itKF-> firstElement();110 KeyFrameF* enumKF = itKF->nextElement(); 111 111 while (enumKF) 112 112 {
Note: See TracChangeset
for help on using the changeset viewer.