]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/JSBSim/FGForce.h
Fix stall widths for the "auxilliary" (reverse flow) stalls so they
[flightgear.git] / src / FDM / JSBSim / FGForce.h
index 06d587bf3b4c093a77d7c832fdcd7f9ae1237c60..5f33e805836ea9406fc5f6cb9b3fdf1d2fb22031 100644 (file)
@@ -261,7 +261,7 @@ public:
     vXYZn(eZ) = z;
     SetActingLocation(x, y, z);
   }
-  
+
   /** Acting point of application.
       JSBsim structural coords used (inches, x +back, y +right, z +up).
       This function sets the point at which the force acts - this may
@@ -283,7 +283,7 @@ public:
   inline double SetActingLocationZ(double z) {vActingXYZn(eZ) = z; return z;}
   inline void SetLocation(FGColumnVector3 vv) { vXYZn = vv; SetActingLocation(vv);}
   inline void SetActingLocation(FGColumnVector3 vv) { vActingXYZn = vv; }
-  
+
   inline double GetLocationX( void ) { return vXYZn(eX);}
   inline double GetLocationY( void ) { return vXYZn(eY);}
   inline double GetLocationZ( void ) { return vXYZn(eZ);}
@@ -320,7 +320,7 @@ protected:
   FGColumnVector3 vFn;
   FGColumnVector3 vMn;
   FGColumnVector3 vH;
-  
+
 private:
   FGColumnVector3 vFb;
   FGColumnVector3 vM;
@@ -331,7 +331,7 @@ private:
 
   FGMatrix33 mT;
 
-  virtual void Debug(int from);
+  void Debug(int from);
 };
 }
 #endif