]> git.mxchange.org Git - flightgear.git/blob - LaRCsim/ls_types.h
Merged in make system changes from Bob Kuehne <rpk@sgi.com>
[flightgear.git] / LaRCsim / ls_types.h
1 /***************************************************************************
2
3         TITLE:  ls_types.h
4         
5 ----------------------------------------------------------------------------
6
7         FUNCTION:       LaRCSim type definitions header file
8
9 ----------------------------------------------------------------------------
10
11         MODULE STATUS:  developmental
12
13 ----------------------------------------------------------------------------
14
15         GENEALOGY:      Created 15 DEC 1993 by Bruce Jackson from old
16                         ls_eom.h header
17
18 ----------------------------------------------------------------------------
19
20         DESIGNED BY:    B. Jackson
21         
22         CODED BY:       B. Jackson
23         
24         MAINTAINED BY:  guess who
25
26 ----------------------------------------------------------------------------
27
28         MODIFICATION HISTORY:
29         
30         DATE    PURPOSE                                         BY
31         
32 --------------------------------------------------------------------------*/
33
34 #ifndef _LS_TYPES_H
35 #define _LS_TYPES_H
36
37
38 /* SCALAR type is used throughout equations of motion code - sets precision */
39
40 typedef double SCALAR;
41
42 typedef SCALAR VECTOR_3[3];
43
44 /* DATA type is old style; this statement for continuity */
45
46 #define DATA SCALAR
47
48
49 #endif /* _LS_TYPES_H */
50
51
52 /* --------------------------- end of ls_types.h -------------------------*/