STK ObjectsSend comments on this topic.
SetPointingTargetedTracking Method (IAgSnCommonTasks)
See Also
TrackModeType
AboutBoresightType
TargetPath
Windows





Windows & Linux

Description

Sets the pointing method to Targeted with Tracking.

Syntax

[Visual Basic .NET]
Public Function SetPointingTargetedTracking( _
    ByVal TrackModeType As AgETrackModeType, _
    ByVal AboutBoresightType As AgEBoresightType, _
    ByVal TargetPath As String _
) As IAgSnPtTargeted
[Managed C++]
public: IAgSnPtTargeted^ SetPointingTargetedTracking(
    AgETrackModeType TrackModeType,
    AgEBoresightType AboutBoresightType,
    String __gc ^ TargetPath
);
[Unmanaged C++]
public: HRESULT SetPointingTargetedTracking(
    AgETrackModeType TrackModeType,
    AgEBoresightType AboutBoresightType,
    BSTR TargetPath,
    IAgSnPtTargeted ** ppIAgSnPtTargeted
);
[Java]
public IAgSnPtTargeted setPointingTargetedTracking(
    AgETrackModeType TrackModeType,
    AgEBoresightType AboutBoresightType,
    String TargetPath
);
[Python - STK API ]
def SetPointingTargetedTracking(self, TrackModeType:"AgETrackModeType", AboutBoresightType:"AgEBoresightType", TargetPath:str) -> "IAgSnPtTargeted":

Parameters

TrackModeType
AboutBoresightType
TargetPath

See Also

Example

Define targeted sensor pointing
[C#]
IAgSnPtTargeted targetedSensor = sensor.CommonTasks.SetPointingTargetedTracking(
    AgETrackModeType.eTrackModeTransmit, AgEBoresightType.eBoresightLevel, "*/AreaTarget/AreaTarget1");
Define targeted sensor pointing
[Visual Basic .NET]
Dim targetedSensor As IAgSnPtTargeted = sensor.CommonTasks.SetPointingTargetedTracking(AgETrackModeType.eTrackModeTransmit, AgEBoresightType.eBoresightLevel, "*/AreaTarget/AreaTarget1")
© 2024 Analytical Graphics, Inc. All Rights Reserved.