STK ObjectsSend comments on this topic.
SetPointingFixedQuat Method (IAgSnCommonTasks)
See Also
QX
QY
QZ
QS
Windows





Windows & Linux

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
[C#]
public IAgSnPtFixed SetPointingFixedQuat(
    double QX,
    double QY,
    double QZ,
    double QS
);
[Managed C++]
public: IAgSnPtFixed^ SetPointingFixedQuat(
    double QX,
    double QY,
    double QZ,
    double QS
);
[Unmanaged C++]
public: HRESULT SetPointingFixedQuat(
    double QX,
    double QY,
    double QZ,
    double QS,
    IAgSnPtFixed ** ppIAgSnPtFixed
);
[Java]
public IAgSnPtFixed setPointingFixedQuat(
    double QX,
    double QY,
    double QZ,
    double QS
);
[Python - STK API ]
def SetPointingFixedQuat(self, QX:float, QY:float, QZ:float, QS:float) -> "IAgSnPtFixed":

Parameters

QX
QY
QZ
QS

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)


        
© 2024 Analytical Graphics, Inc. All Rights Reserved.