]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIBallistic.hxx
Durk Talsma:
[flightgear.git] / src / AIModel / AIBallistic.hxx
index 83231bcf3e8b4300649bbdff1552964750f336b5..c9df2a8d6510817a1eb90a6a4d8518a946f423fc 100644 (file)
@@ -39,7 +39,7 @@ public:
     void setAzimuth( double az );
     void setElevation( double el );
     void setRoll( double rl );
-    void setStabilization( bool val );
+    void setStabilisation( bool val );
     void setDragArea( double a );
     void setLife( double seconds );
     void setBuoyancy( double fpss );
@@ -57,7 +57,7 @@ private:
     double elevation;       // degrees
     double rotation;        // degrees
     double hs;              // horizontal speed (fps)
-    bool aero_stabilized;   // if true, object will point where it's going
+    bool aero_stabilised;   // if true, object will align wit trajectory
     double drag_area;       // equivalent drag area in ft2
     double life_timer;      // seconds
     double gravity;         // fps2
@@ -67,7 +67,6 @@ private:
     bool wind;              // if true, local wind will be applied to object
     double Cd;              // drag coefficient
     double mass;            // slugs
-    double Mach;
 
     void Run(double dt);
 };