]> git.mxchange.org Git - flightgear.git/blobdiff - SplitTris/splittris.hxx
Point3D tweaks.
[flightgear.git] / SplitTris / splittris.hxx
index 9a4e058e8c2189b505de7d93c2586c33d2a4125a..12787872d92c3f4206eff6e2017cb5273f0e1c2b 100644 (file)
@@ -39,7 +39,7 @@
 using namespace std;
 #endif
 
-#include <Include/fg_types.h>
+#include <Math/point3d.hxx>
 
 
 // A triangle (indices of the three nodes)
@@ -48,7 +48,7 @@ typedef struct {
 } triangle;
 
 
-typedef vector < fgPoint3d > container_3d;
+typedef vector < Point3D > container_3d;
 typedef container_3d::iterator iterator_3d;
 typedef container_3d::const_iterator const_iterator_3d;
 
@@ -65,6 +65,9 @@ void triload(const string& basename);
 
 
 // $Log$
+// Revision 1.4  1998/10/18 01:17:28  curt
+// Point3D tweaks.
+//
 // Revision 1.3  1998/09/22 23:49:58  curt
 // C++-ified, STL-ified, and string-ified.
 //