From be73c0fe434a80b6b513c456ef446d4ac59760ef Mon Sep 17 00:00:00 2001 From: Mathias Froehlich Date: Sat, 1 Dec 2012 07:59:56 +0100 Subject: [PATCH] hla: Use a different extrapolation method for HLALocation. --- simgear/hla/HLALocation.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/hla/HLALocation.hxx b/simgear/hla/HLALocation.hxx index 7c8a172b..d19ec8bb 100644 --- a/simgear/hla/HLALocation.hxx +++ b/simgear/hla/HLALocation.hxx @@ -52,7 +52,7 @@ public: SGLocationd getLocation(const SGTimeStamp& timeStamp) const { SGLocationd location = getLocation(); - location.eulerStepBodyVelocities(getTimeDifference(timeStamp), getLinearBodyVelocity(), getAngularBodyVelocity()); + location.eulerStepBodyVelocitiesMidOrientation(getTimeDifference(timeStamp), getLinearBodyVelocity(), getAngularBodyVelocity()); return location; } }; -- 2.39.5