]> git.mxchange.org Git - simgear.git/commitdiff
Fix bug in SGMisc<T>:: normalizePeriodic()
authorTorsten Dreyer <Torsten@t3r.de>
Mon, 17 Jan 2011 18:51:29 +0000 (19:51 +0100)
committerTorsten Dreyer <Torsten@t3r.de>
Mon, 17 Jan 2011 18:51:29 +0000 (19:51 +0100)
SGMisc<T>::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().

simgear/math/SGMisc.hxx

index a154d632b38c7baff1d9b31ab3bddb982a5ae388..89417cb3ff417521965cfdc2157d51bc3bc6de7d 100644 (file)
@@ -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;