Description
Sets the pointing method to FixedAxes with a Quaternion orientation.
Syntax
| [Visual Basic .NET] |
|---|
Public Function SetPointingFixedAxesQuat( _
ByVal ReferenceAxes As String, _
ByVal QX As Double, _
ByVal QY As Double, _
ByVal QZ As Double, _
ByVal QS As Double _
) As IAgSnPtFixedAxes
|
Parameters
See Also
Example
Define sensor pointing fixed axes Quaternion
| [C#] |
|---|
IAgSnPtFixedAxes fixedAxesSensor = sensor.CommonTasks.SetPointingFixedAxesQuat("CentralBody/Sun J2000 Axes", 0.1, 0.2, 0.3, 0.4);
|
|
Define sensor pointing fixed axes Quaternion
| [Visual Basic .NET] |
|---|
Dim fixedAxesSensor As IAgSnPtFixedAxes = sensor.CommonTasks.SetPointingFixedAxesQuat("CentralBody/Sun J2000 Axes", 0.1, 0.2, 0.3, 0.4)
|
|
Define sensor pointing fixed axes Quaternion
| [MATLAB] |
|---|
% IAgSensor sensor: Sensor object
% Change pointing and set
sensor.CommonTasks.SetPointingFixedAxesQuat('CentralBody/Sun J2000 Axes', 0.1, 0.2, 0.3, 0.4)
|
|