Description
Computes the quaternion representing the Axes at the interface's current time.
Syntax
| [Visual Basic .NET] |
|---|
Public Function CurrentValue( _
ByVal DispInterface As Object, _
ByRef Q1 As Double, _
ByRef Q2 As Double, _
ByRef Q3 As Double, _
ByRef Q4 As Double _
) As Boolean
|
| [C#] |
|---|
public bool CurrentValue(
Object DispInterface,
ref double Q1,
ref double Q2,
ref double Q3,
ref double Q4
);
|
| [Managed C++] |
|---|
public: bool CurrentValue(
IUnknown ^ DispInterface,
double ^ Q1,
double ^ Q2,
double ^ Q3,
double ^ Q4
);
|
| [Unmanaged C++] |
|---|
public: HRESULT CurrentValue(
IUnknown * DispInterface,
double * Q1,
double * Q2,
double * Q3,
double * Q4,
VARIANT_BOOL * pResult
);
|
[Python - STK API ] |
|---|
def CurrentValue(self, DispInterface:"IDispatch", Q1:float, Q2:float, Q3:float, Q4:float) -> typing.Tuple[float, float, float, float, bool]:
|
Parameters
Return Type
Returns false if an error occurred, else returns true.
Remarks
See Also