April 25 updates to JSBsim by Jon.
This commit is contained in:
parent
ff8e6b9e28
commit
8f71890c08
4 changed files with 6 additions and 6 deletions
|
@ -72,9 +72,9 @@ public:
|
||||||
|
|
||||||
inline FGColumnVector GetVel(void) {return vVel;}
|
inline FGColumnVector GetVel(void) {return vVel;}
|
||||||
inline FGColumnVector GetUVW(void) {return vUVW;}
|
inline FGColumnVector GetUVW(void) {return vUVW;}
|
||||||
inline FGColumnVector GetVn(void) {return vVel(1);}
|
inline float GetVn(void) {return vVel(1);}
|
||||||
inline FGColumnVector GetVe(void) {return vVel(2);}
|
inline float GetVe(void) {return vVel(2);}
|
||||||
inline FGColumnVector GetVd(void) {return vVel(3);}
|
inline float GetVd(void) {return vVel(3);}
|
||||||
|
|
||||||
bool Run(void);
|
bool Run(void);
|
||||||
};
|
};
|
||||||
|
|
|
@ -88,7 +88,7 @@ public:
|
||||||
inline float Getbeta (void) {return beta; }
|
inline float Getbeta (void) {return beta; }
|
||||||
inline float Getgamma(void) {return gamma;}
|
inline float Getgamma(void) {return gamma;}
|
||||||
|
|
||||||
inline void SetUVW(FGColumnVector tt) {vUVW = tt;}
|
void SetUVW(FGColumnVector tt) {vUVW = tt;}
|
||||||
|
|
||||||
inline void Setalpha(float tt) {alpha = tt;}
|
inline void Setalpha(float tt) {alpha = tt;}
|
||||||
inline void Setbeta (float tt) {beta = tt;}
|
inline void Setbeta (float tt) {beta = tt;}
|
||||||
|
|
|
@ -39,7 +39,7 @@ HISTORY
|
||||||
INCLUDES
|
INCLUDES
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
#if __BCPLUSPLUS__ >= 0x0540 // If compiling under Borland C++Builder
|
#if __BCPLUSPLUS__ == 0x0540 // If compiling under Borland C++Builder
|
||||||
#pragma hdrstop
|
#pragma hdrstop
|
||||||
#include <condefs.h>
|
#include <condefs.h>
|
||||||
USEUNIT("FGUtility.cpp");
|
USEUNIT("FGUtility.cpp");
|
||||||
|
|
|
@ -81,7 +81,7 @@ protected:
|
||||||
|
|
||||||
public:
|
public:
|
||||||
FGFCSComponent(FGFCS*);
|
FGFCSComponent(FGFCS*);
|
||||||
~FGFCSComponent ( ) { } //Destructor
|
virtual ~FGFCSComponent ( ) { } //Destructor
|
||||||
|
|
||||||
virtual bool Run (void);
|
virtual bool Run (void);
|
||||||
virtual void SetOutput(void);
|
virtual void SetOutput(void);
|
||||||
|
|
Loading…
Add table
Reference in a new issue