]> git.mxchange.org Git - simgear.git/commitdiff
Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
authorcurt <curt>
Tue, 27 Jan 1998 00:47:59 +0000 (00:47 +0000)
committercurt <curt>
Tue, 27 Jan 1998 00:47:59 +0000 (00:47 +0000)
system and commandline/config file processing code.

Math/fg_geodesy.c
Math/fg_random.c
Math/polar.c
Math/polar.h

index aefb751ead2dbfc4ec479b2b3d7447fe7294bf06..e90ac85d0837a58fc9f6975932689450ace57dd9 100644 (file)
@@ -14,7 +14,7 @@
 #include <math.h>
 
 #include <Math/fg_geodesy.h>
-#include <Include/constants.h>
+#include <Include/fg_constants.h>
 
 
 /* ONE_SECOND is pi/180/60/60, or about 100 feet at earths' equator */
@@ -140,6 +140,10 @@ void fgGeodToGeoc( double lat_geod, double alt, double *sl_radius,
 
 $Header$
 $Log$
+Revision 1.4  1998/01/27 00:47:59  curt
+Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
+system and commandline/config file processing code.
+
 Revision 1.3  1998/01/19 19:27:12  curt
 Merged in make system changes from Bob Kuehne <rpk@sgi.com>
 This should simplify things tremendously.
@@ -201,10 +205,14 @@ Initial Flight Gear revision.
 
 
 /* $Log$
-/* Revision 1.3  1998/01/19 19:27:12  curt
-/* Merged in make system changes from Bob Kuehne <rpk@sgi.com>
-/* This should simplify things tremendously.
+/* Revision 1.4  1998/01/27 00:47:59  curt
+/* Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
+/* system and commandline/config file processing code.
 /*
+ * Revision 1.3  1998/01/19 19:27:12  curt
+ * Merged in make system changes from Bob Kuehne <rpk@sgi.com>
+ * This should simplify things tremendously.
+ *
  * Revision 1.2  1997/12/15 23:54:54  curt
  * Add xgl wrappers for debugging.
  * Generate terrain normals on the fly.
index 5a2f588eac8a2e97517b8ffd7e79750b1de85823..73ed67f1499a8a8924d1f0cb853b1cd835462f62 100644 (file)
@@ -27,6 +27,7 @@
 #include <stdio.h>
 #include <stdlib.h>         /* for random(), srandom() */
 #include <time.h>           /* for time() to seed srandom() */        
+#include <Main/fg_debug.h>
 
 #include "fg_random.h"
 
@@ -41,7 +42,7 @@
 /* Seed the random number generater with time() so we don't see the
  * same sequence every time */
 void fg_srandom(void) {
-    printf("Seeding random number generater\n");
+    fgPrintf( FG_MATH, FG_INFO, "Seeding random number generater\n");
 
 #ifdef USE_RAND
     srand(time(NULL));
@@ -62,9 +63,13 @@ double fg_random(void) {
 
 
 /* $Log$
-/* Revision 1.2  1997/12/30 20:47:48  curt
-/* Integrated new event manager with subsystem initializations.
+/* Revision 1.3  1998/01/27 00:47:59  curt
+/* Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
+/* system and commandline/config file processing code.
 /*
+ * Revision 1.2  1997/12/30 20:47:48  curt
+ * Integrated new event manager with subsystem initializations.
+ *
  * Revision 1.1  1997/07/30 16:04:09  curt
  * Moved random routines from Utils/ to Math/
  *
index 3d8d7ba24bfd27fa46793b2f018d4976b8b415f4..1bd1283b22f18321fa2cfc14c32ebe5f55390779 100644 (file)
@@ -28,7 +28,7 @@
 #include <stdio.h>
 
 #include <Math/polar.h>
-#include <Include/constants.h>
+#include <Include/fg_constants.h>
 
 
 /* we can save these values between calls for efficiency */
@@ -101,10 +101,14 @@ struct fgCartesianPoint fgRotateCartesianPoint(struct fgCartesianPoint p) {
 
 
 /* $Log$
-/* Revision 1.4  1998/01/19 19:27:12  curt
-/* Merged in make system changes from Bob Kuehne <rpk@sgi.com>
-/* This should simplify things tremendously.
+/* Revision 1.5  1998/01/27 00:48:00  curt
+/* Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
+/* system and commandline/config file processing code.
 /*
+ * Revision 1.4  1998/01/19 19:27:12  curt
+ * Merged in make system changes from Bob Kuehne <rpk@sgi.com>
+ * This should simplify things tremendously.
+ *
  * Revision 1.3  1997/12/15 23:54:54  curt
  * Add xgl wrappers for debugging.
  * Generate terrain normals on the fly.
index 3fdc7846e15cf7afd7c89af7f904e3fde218bbb7..cc7ff3cdb0aee8fed58d608652e7638d44c73fc3 100644 (file)
@@ -28,7 +28,7 @@
 #define _POLAR_H
 
 
-#include <Include/types.h>
+#include <Include/fg_types.h>
 
 
 /* Convert a polar coordinate to a cartesian coordinate.  Lon and Lat
@@ -63,9 +63,13 @@ struct fgCartesianPoint fgRotateCartesianPoint(struct fgCartesianPoint p);
 
 
 /* $Log$
-/* Revision 1.6  1998/01/22 02:59:39  curt
-/* Changed #ifdef FILE_H to #ifdef _FILE_H
+/* Revision 1.7  1998/01/27 00:48:00  curt
+/* Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
+/* system and commandline/config file processing code.
 /*
+ * Revision 1.6  1998/01/22 02:59:39  curt
+ * Changed #ifdef FILE_H to #ifdef _FILE_H
+ *
  * Revision 1.5  1998/01/19 19:27:13  curt
  * Merged in make system changes from Bob Kuehne <rpk@sgi.com>
  * This should simplify things tremendously.