Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4479 in orxonox.OLD


Ignore:
Timestamp:
Jun 2, 2005, 5:04:57 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: QuickAnimation - doxy

Location:
orxonox/trunk/src/lib/particles
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/particles/quick_animation.cc

    r4433 r4479  
    169169}
    170170
    171 
     171/**
     172   \brief outputs some nice information about this class
     173*/
    172174void QuickAnimation::debug(void)
    173175{
  • orxonox/trunk/src/lib/particles/quick_animation.h

    r4425 r4479  
    2525
    2626 public:
     27
    2728  //! a simple struct that stores keyframes for the QuickAnimation-Class.
    2829  struct QuickKeyFrame
    2930  {
    30     float value;       //!< The starting value of this KeyFrame
    31     float position;    //!< The end position of thies KeyFrame
     31    float            value;             //!< The starting value of this KeyFrame
     32    float            position;          //!< The end position of thies KeyFrame
    3233
    33     QuickKeyFrame* next;    //!< The next Animation
     34    QuickKeyFrame*   next;              //!< The next Animation
    3435  };
    3536
     
    4445      bool moveEntry(float position);
    4546  */
     47
    4648  float getValue(float position);
    4749
    4850  void debug(void);
     51
    4952 private:
    50   QuickKeyFrame* first;
    51   QuickKeyFrame* current;
     53  QuickKeyFrame*       first;          //!< The first KeyFrame in a Sequence of Keyframes
     54  QuickKeyFrame*       current;        //!< The currently selected KeyFrame
    5255};
    5356
Note: See TracChangeset for help on using the changeset viewer.