Description
Computes the quaternion representing the Axes and its angular rate in reference components at the given time
Syntax
[Visual Basic .NET] |
---|
Public Function Evaluate( _
ByVal Scale As AgEUtTimeScale, _
ByVal WholeDays As Integer, _
ByVal SecsIntoDay As Double, _
ByRef Q1 As Double, _
ByRef Q2 As Double, _
ByRef Q3 As Double, _
ByRef Q4 As Double, _
ByRef Wx As Double, _
ByRef Wy As Double, _
ByRef Wz As Double _
) As Boolean
|
[Unmanaged C++] |
---|
public: HRESULT Evaluate(
AgEUtTimeScale Scale,
long WholeDays,
double SecsIntoDay,
double * Q1,
double * Q2,
double * Q3,
double * Q4,
double * Wx,
double * Wy,
double * Wz,
VARIANT_BOOL * pResult
);
|
[Python - STK API ] |
---|
def Evaluate(self, Scale:"AgEUtTimeScale", WholeDays:int, SecsIntoDay:float, Q1:float, Q2:float, Q3:float, Q4:float, Wx:float, Wy:float, Wz:float) -> typing.Tuple[float, float, float, float, float, float, float, bool]:
|
Parameters
Return Type
Returns false if an error occurred, else returns true.
See Also