]> git.mxchange.org Git - flightgear.git/blobdiff - src/Airports/runways.hxx
testair.cxx is a 21 lines long, obsolete test application. After removing
[flightgear.git] / src / Airports / runways.hxx
index ae2610c8b06f41521346cd206b868260b4a170d7..b61b6a079ec6c45de16792b35b44380bf9e3e859 100644 (file)
@@ -68,21 +68,21 @@ public:
   { return _reciprocal; }
 
   /**
-   * Get the runway threshold point - this is syntatic sugar, equivalent to
+   * Get the runway begining point - this is syntatic sugar, equivalent to
    * calling pointOnCenterline(0.0);
    */
-  SGGeod threshold() const;
+  SGGeod begin() const;
   
   /**
    * Get the (possibly displaced) threshold point.
    */
-  SGGeod displacedThreshold() const;
+  SGGeod threshold() const;
   
   /**
-   * Get the opposite threshold - this is equivalent to calling
+   * Get the 'far' end - this is equivalent to calling
    * pointOnCenterline(lengthFt());
    */
-  SGGeod reverseThreshold() const;
+  SGGeod end() const;
   
   double displacedThresholdM() const
   { return _displ_thresh * SG_FEET_TO_METER; }