|
enum class | AnimationState { Paused = 0
, Playing
, Rendering
} |
|
enum class | PlaybackMode { Once = 0
, Loop
, Swing
} |
|
enum class | PlaybackDirection { Forward = 0
, Backward
} |
|
enum class | ControlAction { Pause
, Jump
} |
|
enum class | ItemTypes { Keyframe
, KeyframeSequence
, ControlTrack
, PropertyTrack
} |
|
|
template<typename Iterator> |
AnimationTimeState | animateRange (Iterator begin, Iterator end, Seconds from, Seconds to, AnimationState state) |
|
IVW_MODULE_ANIMATION_API bool | operator== (const CameraKeyframe &a, const CameraKeyframe &b) |
|
IVW_MODULE_ANIMATION_API bool | operator!= (const CameraKeyframe &a, const CameraKeyframe &b) |
|
template<typename Prop, typename Key, typename Seq> |
bool | operator== (const PropertyTrack< Prop, Key, Seq > &a, const PropertyTrack< Prop, Key, Seq > &b) |
|
template<typename Prop, typename Key, typename Seq> |
bool | operator!= (const PropertyTrack< Prop, Key, Seq > &a, const PropertyTrack< Prop, Key, Seq > &b) |
|
template<typename T> |
bool | operator== (const ValueKeyframe< T > &a, const ValueKeyframe< T > &b) |
|
template<typename T> |
bool | operator!= (const ValueKeyframe< T > &a, const ValueKeyframe< T > &b) |
|
IVW_MODULE_ANIMATION_API bool | operator== (const Interpolation &a, const Interpolation &b) |
|
IVW_MODULE_ANIMATION_API bool | operator!= (const Interpolation &a, const Interpolation &b) |
|
IVW_MODULE_ANIMATIONQT_API qreal | getSnapTime (const qreal &actualTime, const qreal &scale) |
|
constexpr double | timeToScenePos (Seconds time) |
|
constexpr Seconds | scenePosToTime (double pos) |
|
IVW_MODULE_ANIMATIONQT_API FindDivisionsResult | findDivisions (double start, double stop, int divisions) |
|