]> git.mxchange.org Git - simgear.git/blobdiff - simgear/math/SGGeoc.hxx
Ignore generated binaries.
[simgear.git] / simgear / math / SGGeoc.hxx
index 72af480cf5952244c57637252f2f4d0262ba6e84..6810be309e310459eb6e7e271ca439a05b37faa5 100644 (file)
@@ -28,13 +28,12 @@ class SGGeoc {
 public:
   /// Default constructor, initializes the instance to lat = lon = lat = 0
   SGGeoc(void);
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+  /// Initialize from a cartesian vector assumed to be in meters
   /// Note that this conversion is relatively expensive to compute
-  SGGeoc(const SGGeod& geod);
-
   SGGeoc(const SGVec3<double>& cart);
+  /// Initialize from a geodetic position
+  /// Note that this conversion is relatively expensive to compute
+  SGGeoc(const SGGeod& geod);
 
   /// Factory from angular values in radians and radius in ft
   static SGGeoc fromRadFt(double lon, double lat, double radius);