]> git.mxchange.org Git - flightgear.git/blob - FixObj/main.c
Restructured to split 1deg x 1deg dem's into 64 subsections.
[flightgear.git] / FixObj / main.c
1 /* main.c -- read and fix the stripping order of a .obj file
2  *
3  * Written by Curtis Olson, started December 1997.
4  *
5  * Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
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
26 #include <stdio.h>
27
28 #include "obj.h"
29
30
31 int main(int argc, char **argv) {
32     char infile[256], outfile[256];
33
34     if ( argc != 3 ) {
35         printf("Usage %s: infile outfile\n", argv[0]);
36     }
37
38     strcpy(infile, argv[1]);
39     strcpy(outfile, argv[2]);
40
41     /* load the input data files */
42     obj_fix(infile, outfile);
43
44     return(0);
45 }
46
47
48 /* $Log$
49 /* Revision 1.2  1998/01/09 23:03:12  curt
50 /* Restructured to split 1deg x 1deg dem's into 64 subsections.
51 /*
52  * Revision 1.1  1997/12/08 19:28:54  curt
53  * Initial revision.
54  *
55  */