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





Description

Interface for MTO track model options

Object Model


Public Properties

Public Property Articulation Configures the model articulations.
Public Property Filename The name of the track model file.
Public Property FilePath The full path and file name of the track model file.
Public Property InitialBearing The initial bearing of the model, relative to north. Uses Angle Dimension.
Public Property IsVisible Opt whether to use a model to represent the track in the 3D Graphics window.
Public Property ScaleValue The exponential scaling value for the track model.
Public Property ZPointsNadir Opt whether to have the Z axis point to nadir (to orient it as an aircraft) or not (to orient it as a surface vehicle).

Example

Configure MTO track model
[C#] Copy Code
IAgMtoVOModel model = track.Model; 
model.IsVisible = true
model.Filename = @"STKData\VO\Models\Land\ariane-lp.mdl"
model.InitialBearing = 3.0
model.ScaleValue = 2.0
model.ZPointsNadir = true
 

Configure MTO track model
[Visual Basic .NET] Copy Code
Dim model As IAgMtoVOModel = track.Model
model.IsVisible = True
model.Filename = "STKData\VO\Models\Land\ariane-lp.mdl"
model.InitialBearing = 3
model.ScaleValue = 2
model.ZPointsNadir = True

© 2016 Analytical Graphics, Inc. All Rights Reserved.

STK Programming Interface 11.0.1