STK ObjectsSend comments on this topic.
SetPointingFixedEuler Method (IAgSnCommonTasks)
See Also
Sequence
A
B
C
Windows





Windows & Linux

Description

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

Syntax

[Visual Basic .NET]
Public Function SetPointingFixedEuler( _
    ByVal Sequence As AgEEulerOrientationSequence, _
    ByVal A As System.Object, _
    ByVal B As System.Object, _
    ByVal C As System.Object _
) As IAgSnPtFixed
[C#]
public IAgSnPtFixed SetPointingFixedEuler(
    AgEEulerOrientationSequence Sequence,
    System.Object A,
    System.Object B,
    System.Object C
);
[Managed C++]
public: IAgSnPtFixed^ SetPointingFixedEuler(
    AgEEulerOrientationSequence Sequence,
    VARIANT A,
    VARIANT B,
    VARIANT C
);
[Unmanaged C++]
public: HRESULT SetPointingFixedEuler(
    AgEEulerOrientationSequence Sequence,
    VARIANT A,
    VARIANT B,
    VARIANT C,
    IAgSnPtFixed ** ppIAgSnPtFixed
);
[Java]
public IAgSnPtFixed setPointingFixedEuler(
    AgEEulerOrientationSequence Sequence,
    AgVariant A,
    AgVariant B,
    AgVariant C
);
[Python - STK API ]
def SetPointingFixedEuler(self, Sequence:"AgEEulerOrientationSequence", A:typing.Any, B:typing.Any, C:typing.Any) -> "IAgSnPtFixed":

Parameters

Sequence
A
B
C

See Also

Example

Define sensor pointing fixed Euler
[C#]
IAgSnPtFixed fixedSensor = sensor.CommonTasks.SetPointingFixedEuler(AgEEulerOrientationSequence.e132, 30, 40, 50);
Define sensor pointing fixed Euler
[Visual Basic .NET]
Dim fixedSensor As IAgSnPtFixed = sensor.CommonTasks.SetPointingFixedEuler(AgEEulerOrientationSequence.e132, 30, 40, 50)
Define sensor pointing fixed Euler
[Python - STK API]
# IAgSensor sensor: Sensor object
# Change pointing and set
sensor.CommonTasks.SetPointingFixedEuler(AgEEulerOrientationSequence.e132, 30, 40, 50)

Define sensor pointing fixed Euler
[MATLAB]
% IAgSensor sensor: Sensor object
% Change pointing and set
sensor.CommonTasks.SetPointingFixedEuler('e132', 30, 40, 50)


        
© 2024 Analytical Graphics, Inc. All Rights Reserved.