Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4837 in orxonox.OLD for orxonox/trunk/src/util/animation


Ignore:
Timestamp:
Jul 12, 2005, 3:11:57 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: derivation of superclasses is more clear now. lets see, if this will hold out for some time (about 115 classes long)

Location:
orxonox/trunk/src/util/animation
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/util/animation/animation.h

    r4836 r4837  
    8888  virtual void rewind() = 0;
    8989
    90   /** \brief A virtual function that ticks the animation @param dt the time passed */
     90  /** A virtual function that ticks the animation @param dt the time passed */
    9191  virtual void tick(float dt) = 0;
    9292
     
    124124 public:
    125125  inline aTest() { last = 0.0;}
    126   /** \brief a 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 */
    127127  inline void littleDebug(float f) {  diff = f - last; printf("f=%f, diff=%f\n", f,diff); last = f;}
    128128 private:
  • orxonox/trunk/src/util/animation/t_animation.h

    r4836 r4837  
    6161
    6262
    63   //  ANIM_FUNCTION animFunc;
     63  //  ANIM_FUNCTION animFunc
    6464  float (tAnimation<T>::*animFunc)(float) const;  //!< A Function for the AnimationType
    6565
Note: See TracChangeset for help on using the changeset viewer.