Changeset 4837 in orxonox.OLD for orxonox/trunk/src/util/animation
- Timestamp:
- Jul 12, 2005, 3:11:57 AM (19 years ago)
- Location:
- orxonox/trunk/src/util/animation
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/animation/animation.h
r4836 r4837 88 88 virtual void rewind() = 0; 89 89 90 /** \briefA virtual function that ticks the animation @param dt the time passed */90 /** A virtual function that ticks the animation @param dt the time passed */ 91 91 virtual void tick(float dt) = 0; 92 92 … … 124 124 public: 125 125 inline aTest() { last = 0.0;} 126 /** \briefa little debug information to show the results of this class @param f new value */126 /** a little debug information to show the results of this class @param f new value */ 127 127 inline void littleDebug(float f) { diff = f - last; printf("f=%f, diff=%f\n", f,diff); last = f;} 128 128 private: -
orxonox/trunk/src/util/animation/t_animation.h
r4836 r4837 61 61 62 62 63 // ANIM_FUNCTION animFunc ;63 // ANIM_FUNCTION animFunc 64 64 float (tAnimation<T>::*animFunc)(float) const; //!< A Function for the AnimationType 65 65
Note: See TracChangeset
for help on using the changeset viewer.