Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 9, 2010, 9:32:58 PM (14 years ago)
Author:
rgrieder
Message:

Removed excess white space at the end of lines.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation3/src/modules/weapons/RocketController.cc

    r7021 r7127  
    2828
    2929#include "RocketController.h"
    30 #include "projectiles/SimpleRocket.h" 
     30#include "projectiles/SimpleRocket.h"
    3131#include "util/Math.h"
    3232#include "weapons/projectiles/SimpleRocket.h"
     
    6666            this->moveToTargetPosition();
    6767        }
    68        
    69        
     68
     69
    7070    }
    7171
     
    102102
    103103
    104         if (distance > 1000 && this->rocket_->getVelocity().squaredLength()<160000) 
     104        if (distance > 1000 && this->rocket_->getVelocity().squaredLength()<160000)
    105105            this->rocket_->setAcceleration(this->rocket_->getOrientation()*Vector3(-20,-20,-20));
    106106        if (distance <1000) this->rocket_->setAcceleration(0,0,0);
Note: See TracChangeset for help on using the changeset viewer.