]> git.mxchange.org Git - flightgear.git/blob - src/FDM/UIUCModel/uiuc_menu_functions.h
Port over remaining Point3D usage to the more type and unit safe SG* classes.
[flightgear.git] / src / FDM / UIUCModel / uiuc_menu_functions.h
1
2 #ifndef _MENU_FUNCTIONS_H_
3 #define _MENU_FUNCTIONS_H_
4
5 #include "uiuc_aircraft.h"
6 #include <simgear/compiler.h>
7
8 #include <string>
9
10 void d_2_to_3( double array2D[100][100], double array3D[][100][100], int index3D);
11 void d_1_to_2( double array1D[100], double array2D[][100], int index2D);
12 void d_1_to_1( double array1[100], double array2[100] );
13 void i_1_to_2( int array1D[100], int array2D[][100], int index2D);
14 bool check_float( const std::string &token);
15 //bool check_float( const string &token);
16
17 #endif //_MENU_FUNCTIONS_H_