Description
Interface for drop lines from the vehicle's orbit or trajectory.
Public Properties
  Count | Returns the number of elements in a collection. | 
  Item | Given an index, returns an element in the collection. | 
Example
 Display droplines in 3D Window
| [Python - STK API] | 
|---|
# IAgSatellite satellite: Satellite object
orbitDroplines = satellite.VO.DropLines.Orbit
wgs84 = orbitDroplines.Item(0)  # Droplines to WGS84 surface
wgs84.IsVisible = True
wgs84.LineWidth = AgELineWidth.e2
wgs84.Use2DColor = False
wgs84.Color = Colors.Red
  |  
  | 
 Display droplines in 3D Window
| [MATLAB] | 
|---|
% 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
         |  
  |