From 1dce89b1aae21ac1611e8c2cf9d539c30b197175 Mon Sep 17 00:00:00 2001 From: curt Date: Tue, 23 Mar 1999 17:44:49 +0000 Subject: [PATCH] Beginning work on generating output scenery. --- GenOutput/genobj.hxx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/GenOutput/genobj.hxx b/GenOutput/genobj.hxx index 45f2b0082..76ce3aee2 100644 --- a/GenOutput/genobj.hxx +++ b/GenOutput/genobj.hxx @@ -32,9 +32,30 @@ #endif +#include #include +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. //