]> git.mxchange.org Git - flightgear.git/blob - FixObj/obj.hxx
Modified to adhere to new polygon naming convention, and also to read the
[flightgear.git] / FixObj / obj.hxx
1 // obj.hxx -- routines to handle WaveFront .obj format files.
2 //
3 // Written by Curtis Olson, started October 1997.
4 //
5 // Copyright (C) 1997 - 1998  Curtis L. Olson  - curt@me.umn.edu
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22 // (Log is kept at end of this file)
23
24
25 #ifndef OBJ_HXX
26 #define OBJ_HXX
27
28
29 #ifndef __cplusplus                                                          
30 # error This library requires C++
31 #endif                                   
32
33
34 #define MAXNODES 100000
35
36
37 // Load a .obj file
38 void obj_fix(char *infile, char *outfile);
39
40
41 #endif // OBJ_HXX
42
43
44 // $Log$
45 // Revision 1.1  1998/06/08 17:11:46  curt
46 // Renamed *.[ch] to *.[ch]xx
47 //
48 // Revision 1.4  1998/03/03 15:36:13  curt
49 // Tweaks for compiling with g++
50 //
51 // Revision 1.3  1998/01/31 00:41:25  curt
52 // Made a few changes converting floats to doubles.
53 //
54 // Revision 1.2  1998/01/09 23:03:13  curt
55 // Restructured to split 1deg x 1deg dem's into 64 subsections.
56 //
57 // Revision 1.1  1997/12/08 19:28:55  curt
58 // Initial revision.
59 //
60