JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGPropertyVector3 Class Reference

Detailed Description

Definition at line 58 of file FGExternalForce.h.

Public Member Functions

 FGPropertyVector3 (FGPropertyManager *pm, const std::string &baseName, const std::string &xcmp, const std::string &ycmp, const std::string &zcmp)
 
 operator FGColumnVector3 () const
 
FGColumnVector3 operator* (double a) const
 
FGPropertyVector3operator= (const FGColumnVector3 &v)
 

Constructor & Destructor Documentation

◆ FGPropertyVector3() [1/2]

FGPropertyVector3 ( void  )
inline

Definition at line 61 of file FGExternalForce.h.

61{}

◆ FGPropertyVector3() [2/2]

FGPropertyVector3 ( FGPropertyManager pm,
const std::string &  baseName,
const std::string &  xcmp,
const std::string &  ycmp,
const std::string &  zcmp 
)

Definition at line 76 of file FGExternalForce.cpp.

81{
82 data[0] = pm->GetNode(baseName + "/" + xcmp, true);
83 data[1] = pm->GetNode(baseName + "/" + ycmp, true);
84 data[2] = pm->GetNode(baseName + "/" + zcmp, true);
85}

Member Function Documentation

◆ operator FGColumnVector3()

operator FGColumnVector3 ( ) const
inline

Definition at line 74 of file FGExternalForce.h.

74 {
75 return FGColumnVector3(data[0]->getDoubleValue(), data[1]->getDoubleValue(),
76 data[2]->getDoubleValue());
77 }

◆ operator*()

FGColumnVector3 operator* ( double  a) const
inline

Definition at line 79 of file FGExternalForce.h.

79 {
80 return FGColumnVector3(a * data[0]->getDoubleValue(),
81 a * data[1]->getDoubleValue(),
82 a * data[2]->getDoubleValue());
83 }

◆ operator=()

FGPropertyVector3 & operator= ( const FGColumnVector3 v)
inline

Definition at line 66 of file FGExternalForce.h.

66 {
67 data[1]->setDoubleValue(v(2));
68 data[0]->setDoubleValue(v(1));
69 data[2]->setDoubleValue(v(3));
70
71 return *this;
72 }

The documentation for this class was generated from the following files: