In the below method, the _currentLocation is set according to the current model time vs.getTime(). The code currently looks for the track position at or immediately after the supplied time. How can we use the interpolation here to find the proper value for _currentLocation? I should use the interpolate(Vector3f beginVec, Vector3f finalVec, float changeAmnt) method from jMonkeyEngine.
private void updatePosition(long time)
{
// TODO: interpolate these positions
int trackLen = _history.getNumPoints();
for (int i = 0; i < trackLen; i++)
{
Point pt = (Point) _history.getGeometryN(i);
VehicleState vs = (VehicleState) pt.getUserData();
if (vs.getTime() >= time)
{
_currentLocation = pt.getCoordinate();
_currentState = vs;
break;
}
}
}