All translations

Enter a message name below to show all available translations.

Message

Found one translation.

NameCurrent message text
 h English (en)void BallLogic::nextTimeStep() {
   time += dTime;
   if(position<=0  && velocity<0) velocity=-velocity;
   velocity += acceleration*dTime;
   position += velocity*dTime+0.5*acceleration*dTime*dTime;
}
</syntaxhighlight>