]> git.mxchange.org Git - flightgear.git/blobdiff - Main/views.c
Merged in make system changes from Bob Kuehne <rpk@sgi.com>
[flightgear.git] / Main / views.c
index 40e4285767f24a111fcfc9a3a567c00fcddf93cf..4f6470a2f6f362cbc763e1381b96106ac9fd6d4e 100644 (file)
  **************************************************************************/
 
 
-#include "views.h"
+#include <Main/views.h>
 
-#include "../Include/constants.h"
+#include <Include/constants.h>
 
-#include "../Flight/flight.h"
-#include "../Math/mat3.h"
-#include "../Math/polar.h"
-#include "../Math/vector.h"
-#include "../Scenery/scenery.h"
-#include "../Time/fg_time.h"
+#include <Flight/flight.h>
+#include <Math/mat3.h>
+#include <Math/polar.h>
+#include <Math/vector.h>
+#include <Scenery/scenery.h>
+#include <Time/fg_time.h>
 
 
 /* This is a record containing current view parameters */
@@ -69,8 +69,8 @@ void fgViewUpdate(struct fgFLIGHT *f, struct fgVIEW *v, struct fgLIGHT *l) {
     v->view_pos.y -= scenery.center.y;
     v->view_pos.z -= scenery.center.z;
 
-    /* printf("View pos = %.4f, %.4f, %.4f\n", 
-          v->view_pos.x, v->view_pos.y, v->view_pos.z); */
+    printf("View pos = %.4f, %.4f, %.4f\n", 
+          v->view_pos.x, v->view_pos.y, v->view_pos.z);
 
     /* make a vector to the current view position */
     MAT3_SET_VEC(v0, v->view_pos.x, v->view_pos.y, v->view_pos.z);
@@ -182,9 +182,17 @@ void fgViewUpdate(struct fgFLIGHT *f, struct fgVIEW *v, struct fgLIGHT *l) {
 
 
 /* $Log$
-/* Revision 1.8  1997/12/30 22:22:33  curt
-/* Further integration of event manager.
+/* Revision 1.10  1998/01/19 19:27:09  curt
+/* Merged in make system changes from Bob Kuehne <rpk@sgi.com>
+/* This should simplify things tremendously.
 /*
+ * Revision 1.9  1998/01/13 00:23:09  curt
+ * Initial changes to support loading and management of scenery tiles.  Note,
+ * there's still a fair amount of work left to be done.
+ *
+ * Revision 1.8  1997/12/30 22:22:33  curt
+ * Further integration of event manager.
+ *
  * Revision 1.7  1997/12/30 20:47:45  curt
  * Integrated new event manager with subsystem initializations.
  *