Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 18, 2005, 6:57:55 PM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: removed some unnecessary stuff

File:
1 edited

Legend:

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

    r4654 r4655  
    6767void QuickAnimation::addEntry(float position, float value)
    6868{
    69   if (this->getName())
    70   {
    71     printf("ADDED KEYFRAME %d\n", this->count);
    72   }
    73 
    7469  // create the new KeyFrame
    7570  QuickKeyFrame* newKey = new QuickKeyFrame;
     
    185180float QuickAnimation::getValue(float position)
    186181{
    187   int counter = 0;
    188182  while (true)
    189183  {
    190     counter++;
    191     if (counter >= 10)
    192     {
    193       printf("FUCK!!! %f\n", position);
    194       this->debug();
    195       break;
    196 
    197     }
    198184    // if we have a match
    199185    if (likely(this->current->position <= position && this->current->next->position >= position))
Note: See TracChangeset for help on using the changeset viewer.