TimeIntervalDisplayConditionFactory#
- class ansys.stk.core.graphics.TimeIntervalDisplayConditionFactory#
Define an inclusive time interval that determines when an object, such as a primitive, is rendered based on the current animation time .
Overview#
Initialize a default time display condition. minimum time is set to JulianDate.MinValue and maximum time is set to JulianDate.MaxValue. With this interval, an object is always rendered regardless of the current animation time. |
|
Initialize a time display condition with the inclusive time interval [minimumTime, maximumTime]… |
|
Initialize a time display condition with a time interval. |
Import detail#
from ansys.stk.core.graphics import TimeIntervalDisplayConditionFactory
Method detail#
- TimeIntervalDisplayConditionFactory.initialize(self) TimeIntervalDisplayCondition #
Initialize a default time display condition. minimum time is set to JulianDate.MinValue and maximum time is set to JulianDate.MaxValue. With this interval, an object is always rendered regardless of the current animation time.
- Returns:
TimeIntervalDisplayCondition
- TimeIntervalDisplayConditionFactory.initialize_with_times(self, minimum_time: Date, maximum_time: Date) TimeIntervalDisplayCondition #
Initialize a time display condition with the inclusive time interval [minimumTime, maximumTime]…
- Parameters:
minimum_time :
Date
maximum_time :
Date
- Returns:
TimeIntervalDisplayCondition
- TimeIntervalDisplayConditionFactory.initialize_with_time_interval(self, time_interval: list) TimeIntervalDisplayCondition #
Initialize a time display condition with a time interval.
- Parameters:
time_interval :
list
- Returns:
TimeIntervalDisplayCondition