]> git.mxchange.org Git - flightgear.git/blob - Slew/slew.hxx
Moved max node per tile definition to fg_constants.h
[flightgear.git] / Slew / slew.hxx
1 // slew.hxx -- the "slew" flight model
2 //
3 // Written by Curtis Olson, started May 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
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // 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 #ifndef _SLEW_HXX
26 #define _SLEW_HXX
27
28
29 #ifndef __cplusplus                                                          
30 # error This library requires C++
31 #endif                                   
32
33
34 // reset flight params to a specific position 
35 void fgSlewInit(double pos_x, double pos_y, double pos_z, double heading);
36
37 // update position based on inputs, positions, velocities, etc.
38 void fgSlewUpdate( void );
39
40
41 #endif // _SLEW_HXX
42
43
44 // $Log$
45 // Revision 1.2  1998/10/17 01:34:18  curt
46 // C++ ifying ...
47 //
48 // Revision 1.1  1998/10/16 23:27:52  curt
49 // C++-ifying.
50 //
51 // Revision 1.4  1998/01/22 02:59:34  curt
52 // Changed #ifdef FILE_H to #ifdef _FILE_H
53 //
54 // Revision 1.3  1998/01/19 18:40:30  curt
55 // Tons of little changes to clean up the code and to remove fatal errors
56 // when building with the c++ compiler.
57 //
58 // Revision 1.2  1997/07/23 21:52:20  curt
59 // Put comments around the text after an #endif for increased portability.
60 //
61 // Revision 1.1  1997/05/29 02:29:43  curt
62 // Moved to their own directory.
63 //
64 // Revision 1.2  1997/05/23 15:40:38  curt
65 // Added GNU copyright headers.
66 //
67 // Revision 1.1  1997/05/16 16:04:46  curt
68 // Initial revision.
69 //
70