]> git.mxchange.org Git - flightgear.git/blobdiff - Scenery/tile.hxx
Attempting to iron out seg faults and crashes.
[flightgear.git] / Scenery / tile.hxx
index 455316c4bcac5f2117a730972bf5dab980e791c8..dff5e12f8141db136fa2223a60cdbab870919a9b 100644 (file)
@@ -58,7 +58,7 @@ using namespace std;
 
 
 // Maximum nodes per tile
-#define MAX_NODES 1000
+#define MAX_NODES 2000
 
 
 // Forward declarations
@@ -117,8 +117,8 @@ public:
     // test if line intesects with this fragment.  p0 and p1 are the
     // two line end points of the line.  If side_flag is true, check
     // to see that end points are on opposite sides of face.  Returns
-    // 1 if it does, 0 otherwise.  If it intesects, result is the
-    // point of intersection
+    // 1 if it intersection found, 0 otherwise.  If it intesects,
+    // result is the point of intersection
     int intersect( fgPoint3d *end0, fgPoint3d *end1, int side_flag,
                   fgPoint3d *result);
 
@@ -171,6 +171,14 @@ public:
 
 
 // $Log$
+// Revision 1.17  1998/08/22 14:49:58  curt
+// Attempting to iron out seg faults and crashes.
+// Did some shuffling to fix a initialization order problem between view
+// position, scenery elevation.
+//
+// Revision 1.16  1998/08/22 02:01:34  curt
+// increased fragment list size.
+//
 // Revision 1.15  1998/08/20 15:12:06  curt
 // Used a forward declaration of classes fgTILE and fgMATERIAL to eliminate
 // the need for "void" pointers and casts.