1
0
Fork 0
flightgear/LaRCsim/ls_types.h
curt bda27365e4 Merged in make system changes from Bob Kuehne <rpk@sgi.com>
This should simplify things tremendously.
1998-01-19 19:26:51 +00:00

52 lines
1.2 KiB
C

/***************************************************************************
TITLE: ls_types.h
----------------------------------------------------------------------------
FUNCTION: LaRCSim type definitions header file
----------------------------------------------------------------------------
MODULE STATUS: developmental
----------------------------------------------------------------------------
GENEALOGY: Created 15 DEC 1993 by Bruce Jackson from old
ls_eom.h header
----------------------------------------------------------------------------
DESIGNED BY: B. Jackson
CODED BY: B. Jackson
MAINTAINED BY: guess who
----------------------------------------------------------------------------
MODIFICATION HISTORY:
DATE PURPOSE BY
--------------------------------------------------------------------------*/
#ifndef _LS_TYPES_H
#define _LS_TYPES_H
/* SCALAR type is used throughout equations of motion code - sets precision */
typedef double SCALAR;
typedef SCALAR VECTOR_3[3];
/* DATA type is old style; this statement for continuity */
#define DATA SCALAR
#endif /* _LS_TYPES_H */
/* --------------------------- end of ls_types.h -------------------------*/