# File ms8body.rb, line 54 def rk2(dt) old_pos = pos half_vel = vel + acc*0.5*dt @pos += vel*0.5*dt @vel += acc*dt @pos = old_pos + half_vel*dt end