STK ObjectsSend comments on this topic.
IAgVeVOSystemsCollection Interface

Description

List of Systems

Public Methods

Public Method AddAdds a new element to the collection.
Public Method ContainsChecks whether the given frame is already in the list.
Public Method RemoveRemoves a system by name
Public Method RemoveAllRemoves all elements from the collection.
Public Method RemoveAtRemoves an element from the collection using specified index.

Public Properties

Public Property CountReturns the number of elements in a collection.
Public Property FixedByWindowGets the Fixed By Window System
Public Property InertialByWindowGets the Inertial By Window System
Public Property ItemGiven an index, returns an element in the collection.
Public Property SupportedSystemsReturns a list of element types that can be added to the collection

Example

Add Fixed System Orbit System in 3D Display
[Python - STK API]
# IAgSatellite satellite: Satellite object
orbitsystems = satellite.VO.OrbitSystems
orbitsystems.FixedByWindow.IsVisible = True
orbitsystems.FixedByWindow.Inherit = False
orbitsystems.FixedByWindow.Color = Colors.Yellow

Add Fixed System Orbit System in 3D Display
[MATLAB]
% IAgSatellite satellite: Satellite object
orbitsystems = satellite.VO.OrbitSystems;
orbitsystems.FixedByWindow.IsVisible = true;
orbitsystems.FixedByWindow.Inherit = false;
orbitsystems.FixedByWindow.Color = 65535;   % yellow


        
© 2024 Analytical Graphics, Inc. All Rights Reserved.