]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/UIUCModel/uiuc_1Dinterpolation.h
Port over remaining Point3D usage to the more type and unit safe SG* classes.
[flightgear.git] / src / FDM / UIUCModel / uiuc_1Dinterpolation.h
index a891363843779be737b22a66ebff87e5c8400990..4dccccb53fae75d2482ac1f522c3fda7ff7b8ae6 100644 (file)
@@ -1,6 +1,13 @@
 #ifndef _1D_INTERPOLATION_H_
 #define _1D_INTERPOLATION_H_
 
-double uiuc_1Dinterpolation( double xData[100], double yData[100], int xmax, double x );
+double uiuc_1Dinterpolation( double xData[100], 
+                             double yData[100], 
+                             int xmax, 
+                             double x );
+int uiuc_1Dinterpolation( double xData[], 
+                         int yData[], 
+                         int xmax, 
+                         double x );
 
 #endif // _1D_INTERPOLATION_H_