28.12.2014, 02:30
Make sure you have the correct speed calculation.
This is incorrect is should be this.
That should give real scale results.
Код:
return floatsqroot((velocity[0] * velocity[0]) + (velocity[1] * velocity[1]) + (velocity[2] * velocity[2])) * 100.0;
Код:
return floatsqroot((velocity[0] * velocity[0]) + (velocity[1] * velocity[1]) + (velocity[2] * velocity[2])) * 180.0;