]> git.mxchange.org Git - flightgear.git/blob - GenAirports/area.hxx
Updated names and priorities of area types.
[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 #include "point2d.hxx"
33
34
35 // generate an area for a runway (return result points in degrees)
36 list < point2d >
37 gen_runway_area( double lon, double lat, double heading, 
38                       double length, double width);
39
40
41 #endif // _AREA_H
42
43
44 // $Log$
45 // Revision 1.2  1998/09/04 23:04:49  curt
46 // Beginning of convex hull genereration routine.
47 //
48 // Revision 1.1  1998/09/01 19:34:33  curt
49 // Initial revision.
50 //
51 // Revision 1.1  1998/07/20 12:54:05  curt
52 // Initial revision.
53 //
54 //