Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 31, 2015, 5:31:23 PM (9 years ago)
Author:
landauf
Message:

replaced tabs with spaces. no changes in code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentationFS14/src/modules/jump/JumpPlatformVMove.cc

    r10078 r10215  
    7171        if ((position.z < lowerBoundary_ && velocity.z < 0) || (position.z > upperBoundary_ && velocity.z > 0))
    7272        {
    73                 velocity.z = -velocity.z;
     73            velocity.z = -velocity.z;
    7474        }
    7575
     
    8787    void JumpPlatformVMove::setProperties(float lowerBoundary, float upperBoundary, float speed)
    8888    {
    89         lowerBoundary_ = lowerBoundary;
    90         upperBoundary_ = upperBoundary;
     89        lowerBoundary_ = lowerBoundary;
     90        upperBoundary_ = upperBoundary;
    9191
    9292        setVelocity(Vector3(0,0,speed));
     
    9696    void JumpPlatformVMove::touchFigure()
    9797    {
    98         figure_->JumpFromPlatform(this);
     98        figure_->JumpFromPlatform(this);
    9999    }
    100100}
Note: See TracChangeset for help on using the changeset viewer.