]> git.mxchange.org Git - flightgear.git/blob - GenAirports/area.hxx
8ef5146944928552972adf36fb5f17a42a423450
[flightgear.git] / GenAirports / 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 #include <list>
31
32
33 typedef struct {
34     union {
35         double x;
36         double dist;
37         double lon;
38     };
39     union {
40         double y;
41         double theta;
42         double lat;
43     };
44 } point2d;
45
46
47 // generate an area for a runway
48 list < point2d >
49 gen_runway_area( double lon, double lat, double heading, 
50                       double length, double width);
51
52
53 #endif // _AREA_H
54
55
56 // $Log$
57 // Revision 1.1  1998/09/01 19:34:33  curt
58 // Initial revision.
59 //
60 // Revision 1.1  1998/07/20 12:54:05  curt
61 // Initial revision.
62 //
63 //