From: andy Date: Mon, 9 Feb 2004 15:18:33 +0000 (+0000) Subject: Fix the left/right terms in the twist handling to be symmetrical. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=85115ef347a887103d44737236c3386d55303063;p=flightgear.git Fix the left/right terms in the twist handling to be symmetrical. --- diff --git a/src/FDM/YASim/Wing.cpp b/src/FDM/YASim/Wing.cpp index 368cb4ec9..8816cfa99 100644 --- a/src/FDM/YASim/Wing.cpp +++ b/src/FDM/YASim/Wing.cpp @@ -360,7 +360,7 @@ void Wing::compile() sr->surface = s; sr->weight = chord * segWid; s->setTotalDrag(sr->weight); - s->setTwist(_twist * Math::sqrt(frac)); + s->setTwist(_twist * frac); _surfs.add(sr); } }