STK ObjectsSend comments on this topic.
SetPointingFixedYPR Method (IAgSnCommonTasks)
See Also
Sequence
Yaw
Pitch
Roll
Windows





Windows & Linux

Description

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

Syntax

[Visual Basic .NET]
Public Function SetPointingFixedYPR( _
    ByVal Sequence As AgEYPRAnglesSequence, _
    ByVal Yaw As System.Object, _
    ByVal Pitch As System.Object, _
    ByVal Roll As System.Object _
) As IAgSnPtFixed
[C#]
public IAgSnPtFixed SetPointingFixedYPR(
    AgEYPRAnglesSequence Sequence,
    System.Object Yaw,
    System.Object Pitch,
    System.Object Roll
);
[Managed C++]
public: IAgSnPtFixed^ SetPointingFixedYPR(
    AgEYPRAnglesSequence Sequence,
    VARIANT Yaw,
    VARIANT Pitch,
    VARIANT Roll
);
[Unmanaged C++]
public: HRESULT SetPointingFixedYPR(
    AgEYPRAnglesSequence Sequence,
    VARIANT Yaw,
    VARIANT Pitch,
    VARIANT Roll,
    IAgSnPtFixed ** ppIAgSnPtFixed
);
[Java]
public IAgSnPtFixed setPointingFixedYPR(
    AgEYPRAnglesSequence Sequence,
    AgVariant Yaw,
    AgVariant Pitch,
    AgVariant Roll
);
[Python - STK API ]
def SetPointingFixedYPR(self, Sequence:"AgEYPRAnglesSequence", Yaw:typing.Any, Pitch:typing.Any, Roll:typing.Any) -> "IAgSnPtFixed":

Parameters

Sequence
Yaw
Pitch
Roll

See Also

Example

Define sensor pointing fixed YPR
[C#]
IAgSnPtFixed fixedSensor = sensor.CommonTasks.SetPointingFixedYPR(AgEYPRAnglesSequence.eRPY, 12, 24, 36);
Define sensor pointing fixed YPR
[Visual Basic .NET]
Dim fixedSensor As IAgSnPtFixed = sensor.CommonTasks.SetPointingFixedYPR(AgEYPRAnglesSequence.eRPY, 12, 24, 36)
Define sensor pointing fixed YPR
[Python - STK API]
# IAgSensor sensor: Sensor object
# Change pointing and set
sensor.CommonTasks.SetPointingFixedYPR(AgEYPRAnglesSequence.eRPY, 12, 24, 36)

Define sensor pointing fixed YPR
[MATLAB]
% IAgSensor sensor: Sensor object
% Change pointing and set
sensor.CommonTasks.SetPointingFixedYPR('eRPY', 12, 24, 36)


        
© 2024 Analytical Graphics, Inc. All Rights Reserved.