]> git.mxchange.org Git - flightgear.git/commitdiff
Incorporated Durk's updates.
authorcurt <curt>
Mon, 9 Mar 1998 22:47:25 +0000 (22:47 +0000)
committercurt <curt>
Mon, 9 Mar 1998 22:47:25 +0000 (22:47 +0000)
Astro/sky.c
Astro/sun.c
Astro/sun.h

index 815c4a18d7f3dc8501a884f65864bed9c626c6d7..a3c14035c5d6aa00c3dd3c75a344ce09e94b9a39 100644 (file)
@@ -348,16 +348,20 @@ void fgSkyRender( void ) {
     xglColor4fv( outer_color[0] );
     xglVertex3fv( outer_vertex[0] );
     xglEnd();
+
     xglPopMatrix();
 }
 
 
 /* $Log$
-/* Revision 1.7  1998/02/19 13:05:49  curt
-/* Incorporated some HUD tweaks from Michelle America.
-/* Tweaked the sky's sunset/rise colors.
-/* Other misc. tweaks.
+/* Revision 1.8  1998/03/09 22:47:25  curt
+/* Incorporated Durk's updates.
 /*
+ * Revision 1.7  1998/02/19 13:05:49  curt
+ * Incorporated some HUD tweaks from Michelle America.
+ * Tweaked the sky's sunset/rise colors.
+ * Other misc. tweaks.
+ *
  * Revision 1.6  1998/02/07 15:29:32  curt
  * Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss
  * <chotchkiss@namg.us.anritsu.com>
index 2a04057bb450674941319e1bd2e5342d65df6127..e9f38c2273404f3047e3c696d01583e5a3deec50 100644 (file)
@@ -47,7 +47,7 @@ void fgCalcSunPos(struct OrbElements params)
     EccAnom = fgCalcEccAnom(params.M, params.e);
 
     /* calculate the Suns distance (r) and its true anomaly (v) */
-        xv = cos(EccAnom) - params.e;
+    xv = cos(EccAnom) - params.e;
     yv = sqrt(1.0 - params.e*params.e) * sin(EccAnom);
     v = atan2(yv, xv);
     r = sqrt(xv*xv + yv*yv);
@@ -64,24 +64,29 @@ void fgCalcSunPos(struct OrbElements params)
 }
 
 
-struct CelestialCoord fgCalculateSun(struct OrbElements params, struct fgTIME t)
+struct CelestialCoord fgCalculateSun (struct OrbElements params, 
+                                     struct fgTIME t)
 {
     struct CelestialCoord result;
     double xe, ye, ze, ecl, actTime;
 
-    /* calculate the angle between ecliptic and equatorial coordinate system */
-    actTime = fgCalcActTime(t);
+    /* calculate the angle between ecliptic and equatorial coordinate
+     * system */
+    actTime = fgCalcActTime (t);
     ecl = DEG_TO_RAD * (23.4393 - 3.563E-7 * actTime); // Angle now in Rads
 
+    /* calculate the sun's ecliptic position */
+    fgCalcSunPos (params);
+
     /* convert ecliptic coordinates to equatorial rectangular
-       geocentric coordinates */
+     * geocentric coordinates */
     xe = solarPosition.xs;
     ye = solarPosition.ys * cos (ecl);
     ze = solarPosition.ys * sin (ecl);
 
     /* and finally... Calulate Right Ascention and Declination */
-    result.RightAscension = atan2ye, xe);
-    result.Declination = atan2(ze, sqrt(xe*xe + ye*ye));
+    result.RightAscension = atan2 (ye, xe);
+    result.Declination = atan2 (ze, sqrt (xe * xe + ye * ye));
     return result;
 }
 
@@ -176,11 +181,14 @@ void fgSunRender( void ) {
 
 
 /* $Log$
-/* Revision 1.7  1998/02/23 19:07:56  curt
-/* Incorporated Durk's Astro/ tweaks.  Includes unifying the sun position
-/* calculation code between sun display, and other FG sections that use this
-/* for things like lighting.
+/* Revision 1.8  1998/03/09 22:47:25  curt
+/* Incorporated Durk's updates.
 /*
+ * Revision 1.7  1998/02/23 19:07:56  curt
+ * Incorporated Durk's Astro/ tweaks.  Includes unifying the sun position
+ * calculation code between sun display, and other FG sections that use this
+ * for things like lighting.
+ *
  * Revision 1.6  1998/02/12 21:59:39  curt
  * Incorporated code changes contributed by Charlie Hotchkiss
  * <chotchkiss@namg.us.anritsu.com>
index 0132f2a1e88921221af661f55fa7df8492bcca44..b37a7934195138a5dd1f86f6dfd01909d592cafe 100644 (file)
@@ -27,7 +27,7 @@
 #define _SUN_H
 
 
-extern struct fgSUNPOS solarPosition;
+extern fgSUNPOS solarPosition;
 
 
 void fgCalcSunPos (struct OrbElements sunParams);
@@ -44,11 +44,14 @@ void fgSunRender( void );
 
 
 /* $Log$
-/* Revision 1.4  1998/02/23 19:07:57  curt
-/* Incorporated Durk's Astro/ tweaks.  Includes unifying the sun position
-/* calculation code between sun display, and other FG sections that use this
-/* for things like lighting.
+/* Revision 1.5  1998/03/09 22:47:26  curt
+/* Incorporated Durk's updates.
 /*
+ * Revision 1.4  1998/02/23 19:07:57  curt
+ * Incorporated Durk's Astro/ tweaks.  Includes unifying the sun position
+ * calculation code between sun display, and other FG sections that use this
+ * for things like lighting.
+ *
  * Revision 1.3  1998/01/22 02:59:29  curt
  * Changed #ifdef FILE_H to #ifdef _FILE_H
  *