Description
Provides methods to control scenario animation.
Public Methods
Public Properties
CoClasses that Implement IAgAnimation
Example
Change animation mode
[Python - STK API] |
---|
# IAgStkObjectRoot root: STK Object Model Root
scenario = root.CurrentScenario
root.AnimationOptions = AgEAnimationOptions.eAniOptionStop
root.Mode = AgEAnimationModes.eAniXRealtime
scenario.Animation.AnimStepValue = 1 # second
scenario.Animation.RefreshDelta = .03 # second
|
|
Reset the scenario time
[Python - STK API] |
---|
# IAgStkObjectRoot root: STK Object Model Root
root.Rewind()
|
|
Change animation mode
[MATLAB] |
---|
% IAgStkObjectRoot root: STK Object Model Root
scenario = root.CurrentScenario;
root.AnimationOptions = 'eAniOptionStop';
root.Mode = 'eAniXRealtime';
scenario.Animation.AnimStepValue = 1; % second
scenario.Animation.RefreshDelta = .03; % second
|
|
Reset the scenario time
[MATLAB] |
---|
% IAgStkObjectRoot root: STK Object Model Root
root.Rewind;
|
|