Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 30, 2005, 2:19:41 PM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: fields are now time-independant

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/physics/physics_connection.cc

    r4384 r4395  
    4949    \param dt The time to apply in Seconds
    5050*/
    51 void PhysicsConnection::apply(const float& dt) const
     51void PhysicsConnection::apply(void) const
    5252{
    5353  if (likely(this->type == PCON_PhysIField && this->field->getMagnitude() != 0.0))
    54       this->subject->applyField(this->field, dt);
     54      this->subject->applyField(this->field);
    5555  else ;
    5656}
Note: See TracChangeset for help on using the changeset viewer.