]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIThermal.hxx
Durk Talsma:
[flightgear.git] / src / AIModel / AIThermal.hxx
index be772c733ced52a831bbd19ed66ce88e6d1fd984..b3fee71bc293f0d71850f18781f9a0e253db4d8c 100644 (file)
@@ -42,8 +42,10 @@ public:
 
         inline void setMaxStrength( double s ) { max_strength = s; };
         inline void setDiameter( double d ) { diameter = d; };
+        inline void setHeight( double h ) { height = h; };
         inline double getStrength() const { return strength; };
         inline double getDiameter() const { return diameter; };
+        inline double getHeight() const { return height; };
 
 private:
 
@@ -52,6 +54,7 @@ private:
         double max_strength;
         double strength;
         double diameter;
+        double height;
         double factor;
 };