]> git.mxchange.org Git - simgear.git/commitdiff
Expose some internals.
authorehofman <ehofman>
Fri, 11 Nov 2005 13:19:58 +0000 (13:19 +0000)
committerehofman <ehofman>
Fri, 11 Nov 2005 13:19:58 +0000 (13:19 +0000)
simgear/ephemeris/star.cxx
simgear/ephemeris/star.hxx

index 3a74bac31da0006ca353b06a2b4fa4fc9681763f..86450380f629c08186ec225ffbfc5531d3a9652b 100644 (file)
@@ -80,7 +80,7 @@ void Star::updatePosition(double mjd)
   double 
     actTime, eccAnom, 
     xv, yv, v, r,
-    xe, ye, ze, ecl;
+    xe, ecl;
 
   updateOrbElements(mjd);
   
index b28eff98e9b3933fdf40a644f3e630cdb38e1f20..81419e79f7663e1e25452791da5b2c4ac0b342a4 100644 (file)
@@ -35,6 +35,7 @@ class Star : public CelestialBody
 private:
 
     double xs, ys;     // the sun's rectangular geocentric coordinates
+    double ye, ze;     // the sun's rectangularequatorial rectangular geocentric coordinates
     double distance;   // the sun's distance to the earth
 
 public:
@@ -47,6 +48,8 @@ public:
     double getw();
     double getxs();
     double getys();
+    double getye();
+    double getze();
     double getDistance();
 };
 
@@ -71,6 +74,16 @@ inline double Star::getys()
   return ys;
 }
 
+inline double Star::getye()
+{
+   return ye;
+}
+
+inline double Star::getze()
+{
+   return ze;
+}
+
 inline double Star::getDistance()
 {
   return distance;