230 enum TransformType { tNone, tWindBody, tLocalBody, tInertialBody, tCustom };
234 inline double GetBodyXForce(
void)
const {
return vFb(eX); }
235 inline double GetBodyYForce(
void)
const {
return vFb(eY); }
236 inline double GetBodyZForce(
void)
const {
return vFb(eZ); }
241 inline void SetLocation(
double x,
double y,
double z) {
245 SetActingLocation(x, y, z);
261 inline void SetLocationX(
double x) {vXYZn(eX) = x; vActingXYZn(eX) = x;}
262 inline void SetLocationY(
double y) {vXYZn(eY) = y; vActingXYZn(eY) = y;}
263 inline void SetLocationZ(
double z) {vXYZn(eZ) = z; vActingXYZn(eZ) = z;}
264 inline void SetActingLocationX(
double x) {vActingXYZn(eX) = x;}
265 inline void SetActingLocationY(
double y) {vActingXYZn(eY) = y;}
266 inline void SetActingLocationZ(
double z) {vActingXYZn(eZ) = z;}
267 inline void SetLocation(
const FGColumnVector3& vv) { vXYZn = vv; SetActingLocation(vv);}
268 inline void SetActingLocation(
const FGColumnVector3& vv) { vActingXYZn = vv; }
270 inline double GetLocationX(
void )
const {
return vXYZn(eX);}
271 inline double GetLocationY(
void )
const {
return vXYZn(eY);}
272 inline double GetLocationZ(
void )
const {
return vXYZn(eZ);}
273 inline double GetActingLocationX(
void )
const {
return vActingXYZn(eX);}
274 inline double GetActingLocationY(
void )
const {
return vActingXYZn(eY);}
275 inline double GetActingLocationZ(
void )
const {
return vActingXYZn(eZ);}
276 const FGColumnVector3& GetLocation(
void)
const {
return vXYZn; }
277 const FGColumnVector3& GetActingLocation(
void)
const {
return vActingXYZn; }
286 void SetAnglesToBody(
double broll,
double bpitch,
double byaw);
287 inline void SetAnglesToBody(
const FGColumnVector3& vv) {
288 SetAnglesToBody(vv(eRoll), vv(ePitch), vv(eYaw));
291 void UpdateCustomTransformMatrix(
void);
292 void SetPitch(
double pitch) {vOrient(ePitch) = pitch; UpdateCustomTransformMatrix();}
293 void SetYaw(
double yaw) {vOrient(eYaw) = yaw; UpdateCustomTransformMatrix();}
295 double GetPitch(
void)
const {
return vOrient(ePitch);}
296 double GetYaw(
void)
const {
return vOrient(eYaw);}
298 inline const FGColumnVector3& GetAnglesToBody(
void)
const {
return vOrient;}
299 inline double GetAnglesToBody(
int axis)
const {
return vOrient(axis);}
301 inline void SetTransformType(TransformType ii) { ttype=ii; }
302 inline TransformType GetTransformType(
void)
const {
return ttype; }
304 const FGMatrix33& Transform(
void)
const;
308 std::shared_ptr<FGMassBalance> MassBalance;
311 FGColumnVector3 vOrient;
313 FGColumnVector3 vXYZn;
314 FGColumnVector3 vActingXYZn;
321 void Debug(
int from);