Description
Sets the pointing method to Fixed with a Quaternion orientation.
Syntax
[Visual Basic .NET] |
---|
Public Function SetPointingFixedQuat( _
ByVal QX As Double, _
ByVal QY As Double, _
ByVal QZ As Double, _
ByVal QS As Double _
) As IAgSnPtFixed
|
[Managed C++] |
---|
public: IAgSnPtFixed^ SetPointingFixedQuat(
double QX,
double QY,
double QZ,
double QS
);
|
Parameters
See Also
Example
Define sensor pointing fixed Quaternion
[C#] |
---|
IAgSnPtFixed fixedSensor = sensor.CommonTasks.SetPointingFixedQuat(0.1, 0.2, 0.3, 0.4);
|
|
Define sensor pointing fixed Quaternion
[Visual Basic .NET] |
---|
Dim fixedSensor As IAgSnPtFixed = sensor.CommonTasks.SetPointingFixedQuat(0.1, 0.2, 0.3, 0.4)
|
|
Define sensor pointing fixed Quaternion
[Python - STK API] |
---|
# IAgSensor sensor: Sensor object
# Change pointing and set
sensor.CommonTasks.SetPointingFixedQuat(0.1, 0.2, 0.3, 0.4)
|
|
Define sensor pointing fixed Quaternion
[MATLAB] |
---|
% IAgSensor sensor: Sensor object
% Change pointing and set
sensor.CommonTasks.SetPointingFixedQuat(0.1, 0.2, 0.3, 0.4)
|
|