From: Torsten Dreyer Date: Mon, 17 Jan 2011 18:51:29 +0000 (+0100) Subject: Fix bug in SGMisc:: normalizePeriodic() X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e988dc0e421744fe71b7cdc74b8ff081becfc31d;p=simgear.git Fix bug in SGMisc:: normalizePeriodic() SGMisc::normalizePeriodic(min,max,value) returned zero for all values less than min. Example: A call of normalizePeriodic(0,twopi(),-pi()) returned zero where the correct value would be 3*pi(). --- diff --git a/simgear/math/SGMisc.hxx b/simgear/math/SGMisc.hxx index a154d632..89417cb3 100644 --- a/simgear/math/SGMisc.hxx +++ b/simgear/math/SGMisc.hxx @@ -65,7 +65,7 @@ public: return min; T normalized = value - range*floor((value - min)/range); // two security checks that can only happen due to roundoff - if (value <= min) + if (normalized <= min) return min; if (max <= normalized) return min;