]> git.mxchange.org Git - flightgear.git/blob - FixObj/main.cxx
Moved ../Triangle ./Triangle
[flightgear.git] / FixObj / main.cxx
1 // main.cxx -- read and fix the stripping order of a .obj file
2 //
3 // Written by Curtis Olson, started December 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 modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation; either version 2 of the License, or
10 // (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU 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 #include <stdio.h>
26
27 #include "obj.hxx"
28
29
30 int main(int argc, char **argv) {
31     char infile[256], outfile[256];
32
33     if ( argc != 3 ) {
34         printf("Usage %s: infile outfile\n", argv[0]);
35     }
36
37     strcpy(infile, argv[1]);
38     strcpy(outfile, argv[2]);
39
40     // load the input data files
41     obj_fix(infile, outfile);
42
43     return(0);
44 }
45
46
47 // $Log$
48 // Revision 1.1  1998/06/08 17:11:45  curt
49 // Renamed *.[ch] to *.[ch]xx
50 //
51 // Revision 1.2  1998/01/09 23:03:12  curt
52 // Restructured to split 1deg x 1deg dem's into 64 subsections.
53 //
54 // Revision 1.1  1997/12/08 19:28:54  curt
55 // Initial revision.
56 //
57