STK ObjectsSend comments on this topic.
IAgMtoVOModel Interface

Description

Interface for MTO track model options

Public Properties

Public Property ArticulationConfigures the model articulations.
Public Property FilenameThe name of the track model file.
Public Property FilePathThe full path and file name of the track model file.
Public Property InitialBearingThe initial bearing of the model, relative to north. Uses Angle Dimension.
Public Property IsVisibleOpt whether to use a model to represent the track in the 3D Graphics window.
Public Property ScaleValueThe exponential scaling value for the track model.
Public Property ZPointsNadirOpt 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#]
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]
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
© 2024 Analytical Graphics, Inc. All Rights Reserved.