]> git.mxchange.org Git - flightgear.git/blob - Areas/area.hxx
Changed polygon index counter file.
[flightgear.git] / Areas / area.hxx
1 // area.h -- routines to assist with inserting "areas" into FG terrain
2 //
3 // Written by Curtis Olson, started February 1998.
4 //
5 // Copyright (C) 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
26 #ifndef _AREA_H
27 #define _AREA_H
28
29
30 typedef struct {
31     union {
32         double x;
33         double dist;
34         double lon;
35     };
36     union {
37         double y;
38         double theta;
39         double lat;
40     };
41 } point2d;
42
43
44 // generate an area for a runway
45 void gen_runway_area( double lon, double lat, double heading, 
46                       double length, double width,
47                       point2d *result, int *count );
48
49
50 #endif // _AREA_H
51
52
53 // $Log$
54 // Revision 1.1  1998/07/20 12:54:05  curt
55 // Initial revision.
56 //
57 //