From: ehofman Date: Thu, 22 Oct 2009 11:51:15 +0000 (+0000) Subject: line up aircraft orientation and velocity vector X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=42b990ca1b5f2916b72e699308ca8747b1332e19;hp=6e2974ea570da0f6d4d671b2410bea1383fc630c;p=flightgear.git line up aircraft orientation and velocity vector --- diff --git a/src/Model/acmodel.cxx b/src/Model/acmodel.cxx index 318b082e9..1dcf2bd22 100644 --- a/src/Model/acmodel.cxx +++ b/src/Model/acmodel.cxx @@ -133,8 +133,8 @@ FGAircraftModel::update (double dt) _fx->set_orientation( orient ); _velocity = SGVec3d( -_speed_n->getDoubleValue(), - -_speed_e->getDoubleValue(), - -_speed_d->getDoubleValue()); + _speed_e->getDoubleValue(), + _speed_d->getDoubleValue()); _fx->set_velocity( _velocity ); }