]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/YASim/Math.cpp
Fix stall widths for the "auxilliary" (reverse flow) stalls so they
[flightgear.git] / src / FDM / YASim / Math.cpp
index 3f3643c30a5243777c0c4929dedaca49fa09657b..c7203941c95215a8450d139c7f5669f5f5204d7d 100644 (file)
@@ -60,6 +60,11 @@ float Math::atan2(float y, float x)
     return (float)::atan2(y, x);
 }
 
+double Math::floor(double x)
+{
+    return ::floor(x);
+}
+
 double Math::abs(double f)
 {
     return ::fabs(f);