STK ObjectsSend comments on this topic.
IAgLineTarget Interface

Description

Line Target Path properties.

Public Properties

Public Property AccessConstraintsReturns the constraints for the line target.
Public Property AllowObjectAccessOpt to have access to the object constrained to when it applies to the entire object,rather than any part of it.
Public Property GraphicsReturns the 2D graphics properties of the line target.
Public Property PointsGet the points table, which displays a summary of the latitude and longitude values for each point, and indicates which point is currently defined as the anchor point.
Public Property VOReturns the 3D graphics properties of the line target.

Interfaces

CoClasses that Implement IAgLineTarget

Example

Create a New LineTarget (on the current scenario central body)
[Python - STK API]
# IAgScenario scenario: Scenario object
lineTarget = scenario.Children.New(AgESTKObjectType.eLineTarget, 'MyLineTarget')
point1 = lineTarget.Points.Add(34.72, -118.34)
point2 = lineTarget.Points.Add(30.83, -82.67)

Create a New LineTarget (on the current scenario central body)
[MATLAB]
% IAgScenario scenario: Scenario object
lineTarget = scenario.Children.New('eLineTarget', 'MyLineTarget');
point1 = lineTarget.Points.Add(34.72, -118.34);
point2 = lineTarget.Points.Add(30.83, -82.67);


        
© 2024 Analytical Graphics, Inc. All Rights Reserved.