AGI STK Objects 11 Send comments on this topic.
IAgSaVOModel Interface





Description

Interface IAgSaVOModel exposes all Satellite's VO Model properties.

Object Model



Public Properties

Public Property GroundMarker Define the display of the marker to represent the vehicle's position along its ground track, separate from that of its orbit. The ground track of a vehicle is the portion of the central body's surface that it covers while traveling along its track.
Public Property IsPointVisible Whether the point that is shown at certain viewing distances to represent an object, is visible.
Public Property OrbitMarker Define the display of the marker to represent the selected vehicle while traveling along its actual orbit, separate from that of its ground track. The orbit is the actual path that a vehicle follows.
Public Property PointSize A size of the point (in pixels). Dimensionless.
Public Property SolarPanelsPointAtSun The model's solar panels are defaulted to point toward the sun.

Interfaces

Implemented Interface
IAgVOModel

Example

Change the 3D Model and marker properties
[MATLAB] Copy Code
% IAgSatellite satellite: Satellite object 
model = satellite.VO.Model; 
model.ModelData.Filename = 'STKData\VO\Models\Space\dsp.mdl'; 
orbitmarker = model.OrbitMarker; 
orbitmarker.SetMarkerImageFile('C:\Program Files\AGI\STK 11\STKData\VO\Markers\Satellite.ppm'); 
orbitmarker.MarkerData.IsTransparent = true; 
orbitmarker.PixelSize = 18; 
orbitmarker.OrientationMode = 'eVOMarkerOrientationFollowDirection'; 
 
 

CoClasses that Implement IAgSaVOModel

© 2016 Analytical Graphics, Inc. All Rights Reserved.

STK Programming Interface 11.0.1