]> git.mxchange.org Git - flightgear.git/blob - src/FDM/UIUCModel/uiuc_2Dinterpolation.h
Reset: work with threaded OSG modes
[flightgear.git] / src / FDM / UIUCModel / uiuc_2Dinterpolation.h
1 #ifndef _2D_INTERPOLATION_H_
2 #define _2D_INTERPOLATION_H_
3
4 double uiuc_2Dinterpolation( double xData[100][100], 
5                              double yData[100], 
6                              double zData[100][100], 
7                              int xmax[100], 
8                              int ymax, 
9                              double x, 
10                              double y );
11
12 #endif // _2D_INTERPOLATION_H_