# File ms8body.rb, line 48 def leapfrog(dt) @vel += acc*0.5*dt @pos += @vel*dt @vel += acc*0.5*dt end