AGI STK Objects 11 Send comments on this topic.
IAgVeVODropLinePathItemCollection Collection
Windows






Windows & Linux

Description

Interface for drop lines from the vehicle's orbit or trajectory.

Object Model

Public Properties

Public Property CountReturns the number of elements in a collection.
Public Property ItemGiven an index, returns an element in the collection.

Example

Display droplines in 3D Window
[MATLAB]Copy Code
% IAgSatellite satellite: Satellite object 
orbitDroplines = satellite.VO.DropLines.Orbit; 
wgs84 = orbitDroplines.Item(0); %   Droplines to WGS84 surface 
wgs84.IsVisible = true; 
wgs84.LineWidth = 1; 
wgs84.Use2DColor = false; 
wgs84.Color = 255;  %red 
 
 
Display droplines in 3D Window
[Python]Copy Code
# IAgSatellite satellite: Satellite object 
orbitDroplines = satellite.VO.DropLines.Orbit 
wgs84 = orbitDroplines.Item(0) #   Droplines to WGS84 surface 
wgs84.IsVisible = True 
wgs84.LineWidth = 1 
wgs84.Use2DColor = False 
wgs84.Color = 255  #red 
 
 
© 2018 Analytical Graphics, Inc. All Rights Reserved.