Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7334 in orxonox.OLD


Ignore:
Timestamp:
Apr 18, 2006, 8:47:10 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: doxy

Location:
trunk/src/lib/particles
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/particles/particle_system.cc

    r7333 r7334  
    279279
    280280  PRINTF(4)("Precaching %s::%s %d seconds %d timesPerSecond\n", this->getClassName(), this->getName(), seconds, ticksPerSecond);
    281   this->debug();
    282281  for (unsigned int i = 0; i < seconds*ticksPerSecond; i++)
    283282    this->tick(1.0/(float)ticksPerSecond);
  • trunk/src/lib/particles/quick_animation.cc

    r7333 r7334  
    288288
    289289
    290 
     290/**
     291 * @brief compares two QuickKeyFrames with their positions.
     292 * @param key1 the first keyframe
     293 * @param key2 the second keyframe
     294 * @returns true, if the key1.position < key2.position.
     295 */
    291296bool QuickAnimation::QuickKeyFrame::sortPositionPredicate(const QuickKeyFrame& key1, const QuickKeyFrame& key2)
    292297{
     
    294299}
    295300
     301/**
     302 * @brief compares two QuickKeyFrames with their values.
     303 * @param key1 the first keyframe
     304 * @param key2 the second keyframe
     305 * @returns true, if the key1.value < key2.value.
     306 */
    296307bool QuickAnimation::QuickKeyFrame::sortValuePredicate(const QuickKeyFrame& key1, const QuickKeyFrame& key2)
    297308{
  • trunk/src/lib/particles/quick_animation.h

    r7333 r7334  
    4848  }
    4949
    50 /**
     50  /**
    5151   * @brief returns the value of the animation at a certain position
    5252   * @param position the position to get the value from :)
    5353   * @returns the calculated Value.
    54  */
     54   */
    5555  float QuickAnimation::getValue(float position) const
    5656  {
     
    5959
    6060  void debug() const;
     61
    6162private:
    6263  void rebuild();
Note: See TracChangeset for help on using the changeset viewer.