Done = (NewMomentum * theGlobalNormal <= 0.0);
}
else {
Done = (NewMomentum * theGlobalNormal >= 0.0);
Done = (NewMomentum * theGlobalNormal >= -kCarTolerance);
// JPmod - Following Nuno's suggestion to add a tolerance
} while (!Done);