]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIAircraft.hxx
Merge branch 'radio-clutter' into attenuation
[flightgear.git] / src / AIModel / AIAircraft.hxx
index 7504aaecf504479329cbd9d49dfff78e5758b134..cfadfaf51208d4960976268af98751f435e689a6 100644 (file)
@@ -103,6 +103,7 @@ public:
     int getTakeOffStatus() { return takeOffStatus; };
 
     void checkTcas();
+    double calcVerticalSpeed(double vert_ft, double dist_m, double speed, double error);
 
     FGATCController * getATCController() { return controller; };
     
@@ -181,6 +182,8 @@ private:
     time_t timeElapsed;
 
     PerformanceData* _performance; // the performance data for this aircraft
+    
+   void assertSpeed(double speed);
 };