Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3847 in orxonox.OLD for orxonox/trunk/src/animation.cc


Ignore:
Timestamp:
Apr 17, 2005, 2:01:28 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: naming of animation changed
Anim → Animation
tAnim → tAnimation
Animation → Animation3D

@paede: i hope you like it.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/animation.cc

    r3833 r3847  
    2020
    2121
    22 Anim::Anim(void)
     22Animation::Animation(void)
    2323
    2424  // initialize a beginning KeyFrame, that will be deleted afterwards
     
    3434}
    3535
    36 Anim::~Anim(void)
     36Animation::~Animation(void)
    3737{
    3838  this->doNotHandle();
    3939}
    4040
    41 void Anim::doNotHandle(void)
     41void Animation::doNotHandle(void)
    4242{
    4343  if (this->bHandled)
     
    4646
    4747
    48 void Anim::setInfinity(ANIM_INFINITY postInfinity)
     48void Animation::setInfinity(ANIM_INFINITY postInfinity)
    4949{
    5050  this->postInfinity = postInfinity;
     
    5252
    5353
    54 void Anim::play()
     54void Animation::play()
    5555{
    5656  this->bRunning = true;
     
    5858
    5959
    60 void Anim::stop()
     60void Animation::stop()
    6161{
    6262  this->rewind();
     
    6565  this->bRunning = false;
    6666}
    67 void Anim::pause()
     67void Animation::pause()
    6868{
    6969  this->bRunning = false;
    7070}
    71 void Anim::replay()
     71void Animation::replay()
    7272{
    7373  this->rewind();
Note: See TracChangeset for help on using the changeset viewer.