STK ObjectsSend comments on this topic.
SetPointingFixedAxesEuler Method (IAgSnCommonTasks)
See Also
ReferenceAxes
The ReferenceAxes format is as follows: <ObjectClass>/<InstanceName> <AxesName> Axes
Example: CentralBody/Sun J2000 Axes
Sequence
A
B
C
Windows





Windows & Linux

Description

Sets the pointing method to FixedAxes with a Euler Angles orientation.

Syntax

[Visual Basic .NET]
Public Function SetPointingFixedAxesEuler( _
    ByVal ReferenceAxes As String, _
    ByVal Sequence As AgEEulerOrientationSequence, _
    ByVal A As System.Object, _
    ByVal B As System.Object, _
    ByVal C As System.Object _
) As IAgSnPtFixedAxes
[C#]
public IAgSnPtFixedAxes SetPointingFixedAxesEuler(
    string ReferenceAxes,
    AgEEulerOrientationSequence Sequence,
    System.Object A,
    System.Object B,
    System.Object C
);
[Managed C++]
public: IAgSnPtFixedAxes^ SetPointingFixedAxesEuler(
    String __gc ^ ReferenceAxes,
    AgEEulerOrientationSequence Sequence,
    VARIANT A,
    VARIANT B,
    VARIANT C
);
[Unmanaged C++]
public: HRESULT SetPointingFixedAxesEuler(
    BSTR ReferenceAxes,
    AgEEulerOrientationSequence Sequence,
    VARIANT A,
    VARIANT B,
    VARIANT C,
    IAgSnPtFixedAxes ** ppIAgSnPtFixedAxes
);
[Java]
public IAgSnPtFixedAxes setPointingFixedAxesEuler(
    String ReferenceAxes,
    AgEEulerOrientationSequence Sequence,
    AgVariant A,
    AgVariant B,
    AgVariant C
);
[Python - STK API ]
def SetPointingFixedAxesEuler(self, ReferenceAxes:str, Sequence:"AgEEulerOrientationSequence", A:typing.Any, B:typing.Any, C:typing.Any) -> "IAgSnPtFixedAxes":

Parameters

ReferenceAxes
The ReferenceAxes format is as follows: <ObjectClass>/<InstanceName> <AxesName> Axes
Example: CentralBody/Sun J2000 Axes
Sequence
A
B
C

See Also

Example

Define sensor pointing fixed axes Euler
[C#]
IAgSnPtFixedAxes fixedAxesSensor = sensor.CommonTasks.SetPointingFixedAxesEuler("CentralBody/Sun J2000 Axes", AgEEulerOrientationSequence.e132, 30, 40, 50);
Define sensor pointing fixed axes Euler
[Visual Basic .NET]
Dim fixedAxesSensor As IAgSnPtFixedAxes = sensor.CommonTasks.SetPointingFixedAxesEuler("CentralBody/Sun J2000 Axes", AgEEulerOrientationSequence.e132, 30, 40, 50)
Define sensor pointing fixed axes Euler
[Python - STK API]
# IAgSensor sensor: Sensor object
# Change pointing and set
sensor.CommonTasks.SetPointingFixedAxesEuler('CentralBody/Sun J2000 Axes', AgEEulerOrientationSequence.e132, 30, 40, 50)

Define sensor pointing fixed axes Euler
[MATLAB]
% IAgSensor sensor: Sensor object
% Change pointing and set
sensor.CommonTasks.SetPointingFixedAxesEuler('CentralBody/Sun J2000 Axes', 'e132', 30, 40, 50)


        
© 2024 Analytical Graphics, Inc. All Rights Reserved.