Changeset 4479 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Jun 2, 2005, 5:04:57 AM (19 years ago)
- Location:
- orxonox/trunk/src/lib/particles
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/particles/quick_animation.cc
r4433 r4479 169 169 } 170 170 171 171 /** 172 \brief outputs some nice information about this class 173 */ 172 174 void QuickAnimation::debug(void) 173 175 { -
orxonox/trunk/src/lib/particles/quick_animation.h
r4425 r4479 25 25 26 26 public: 27 27 28 //! a simple struct that stores keyframes for the QuickAnimation-Class. 28 29 struct QuickKeyFrame 29 30 { 30 float value;//!< The starting value of this KeyFrame31 float position;//!< The end position of thies KeyFrame31 float value; //!< The starting value of this KeyFrame 32 float position; //!< The end position of thies KeyFrame 32 33 33 QuickKeyFrame* next;//!< The next Animation34 QuickKeyFrame* next; //!< The next Animation 34 35 }; 35 36 … … 44 45 bool moveEntry(float position); 45 46 */ 47 46 48 float getValue(float position); 47 49 48 50 void debug(void); 51 49 52 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 52 55 }; 53 56
Note: See TracChangeset
for help on using the changeset viewer.