1
0
Fork 0

Put the sqrt(frac) terms back into the wing twist.

This commit is contained in:
andy 2004-02-09 19:53:14 +00:00
parent 85115ef347
commit fc565ebd86

View file

@ -349,7 +349,7 @@ void Wing::compile()
sr->surface = s;
sr->weight = chord * segWid;
s->setTotalDrag(sr->weight);
s->setTwist(_twist * frac);
s->setTwist(_twist * Math::sqrt(frac));
_surfs.add(sr);
if(_mirror) {
@ -360,7 +360,7 @@ void Wing::compile()
sr->surface = s;
sr->weight = chord * segWid;
s->setTotalDrag(sr->weight);
s->setTwist(_twist * frac);
s->setTwist(_twist * Math::sqrt(frac));
_surfs.add(sr);
}
}