show/hide this revision's text 2 edited body

The most simple and naive implementation is to sample the accelerometerdata and use the following formula.

v+=a*dt;
s+=v*dtd+=v*dt;

But this is can give drift over time, read this for explanation why and a better solution: http://gafferongames.com/game-physics/integration-basics/

show/hide this revision's text 1

The most simple and naive implementation is to sample the accelerometerdata and use the following formula.

v+=a*dt;
s+=v*dt;

But this is can give drift over time, read this for explanation why and a better solution: http://gafferongames.com/game-physics/integration-basics/