]> git.mxchange.org Git - flightgear.git/commitdiff
Beginning work on generating output scenery.
authorcurt <curt>
Tue, 23 Mar 1999 17:44:49 +0000 (17:44 +0000)
committercurt <curt>
Tue, 23 Mar 1999 17:44:49 +0000 (17:44 +0000)
GenOutput/genobj.hxx

index 45f2b00827684d93a009c40b5cb7b57b2e408221..76ce3aee203a78b249d0de3b406f514f5eadcc27 100644 (file)
 #endif                                   
 
 
+#include <Math/point3d.hxx>
 #include <Triangulate/triangle.hxx>
 
 
+typedef vector < Point3D > wgs84_node_list;
+typedef wgs84_node_list::iterator wgs84_node_list_iterator;
+typedef wgs84_node_list::const_iterator const_wgs84_node_list_iterator;
+
+typedef vector < Point3D > normal_list;
+typedef normal_list::iterator normal_list_iterator;
+typedef normal_list::const_iterator const_normal_list_iterator;
+
+class FGGenOutput {
+
+private:
+
+    wgs84_node_list wgs84_nodes;
+    normal_list normals;
+
+public:
+    
+};
+
+
 // generate the flight gear format from the triangulation
 int fgGenOutput( const FGTriangle& t );
 
@@ -43,6 +64,9 @@ int fgGenOutput( const FGTriangle& t );
 
 
 // $Log$
+// Revision 1.2  1999/03/23 17:44:49  curt
+// Beginning work on generating output scenery.
+//
 // Revision 1.1  1999/03/22 23:51:51  curt
 // Initial revision.
 //