Inviwo
0.9.10.1
Inviwo documentation
|
#include <keyframe.h>
Public Member Functions | |
virtual Keyframe * | clone () const =0 |
virtual void | setTime (Seconds time)=0 |
virtual Seconds | getTime () const =0 |
virtual bool | isSelected () const =0 |
virtual void | setSelected (bool selected)=0 |
virtual void | serialize (Serializer &s) const override=0 |
virtual void | deserialize (Deserializer &d) override=0 |
Public Member Functions inherited from inviwo::Observable< KeyframeObserver > | |
Observable (const Observable< KeyframeObserver > &other) | |
Observable (Observable< KeyframeObserver > &&other) | |
Observable< KeyframeObserver > & | operator= (const Observable< KeyframeObserver > &other) |
Observable< KeyframeObserver > & | operator= (Observable< KeyframeObserver > &&other) |
void | addObserver (KeyframeObserver *observer) |
void | removeObserver (KeyframeObserver *observer) |
virtual void | startBlockingNotifications () override final |
virtual void | stopBlockingNotifications () override final |
Additional Inherited Members | |
Protected Member Functions inherited from inviwo::animation::KeyframeObservable | |
void | notifyKeyframeTimeChanged (Keyframe *key, Seconds oldTime) |
void | notifyKeyframeSelectionChanged (Keyframe *key) |
Protected Member Functions inherited from inviwo::Observable< KeyframeObserver > | |
void | forEachObserver (C callback) |
Protected Member Functions inherited from inviwo::ObservableInterface | |
void | addObservationHelper (Observer *observer) |
void | removeObservationHelper (Observer *observer) |
Interface for keyframes in an animation Track. A keyframe usually contain a snapshot of a value at a given time, which will used for interpolation in a KeyFrameSequence. Note that a keyframe could also be a script to be executed.