version 1.1.9
[debian/openrocket] / src / net / sf / openrocket / util / GeodeticComputationStrategy.java
index 6f1fb53aa4dc425d893ebe7c17b6736325069f4a..f8a37a09dd5bc848966eb2bd98f71acf889b10f6 100644 (file)
@@ -54,7 +54,7 @@ public enum GeodeticComputationStrategy {
                        double newAlt = location.getAltitude() + delta.z;
                        
                        // bearing (in radians, clockwise from north);
-                       // d/R is the angular distance (in radians), where d is the distance traveled and R is the earths radius
+                       // d/R is the angular distance (in radians), where d is the distance traveled and R is the earth's radius
                        double d = MathUtil.hypot(delta.x, delta.y);
                        
                        // Check for zero movement before computing bearing
@@ -99,7 +99,7 @@ public enum GeodeticComputationStrategy {
                        double newAlt = location.getAltitude() + delta.z;
                        
                        // bearing (in radians, clockwise from north);
-                       // d/R is the angular distance (in radians), where d is the distance traveled and R is the earths radius
+                       // d/R is the angular distance (in radians), where d is the distance traveled and R is the earth's radius
                        double d = MathUtil.hypot(delta.x, delta.y);
                        
                        // Check for zero movement before computing bearing