#include <vtkSMCameraManipulatorProxy.h>
Inheritance diagram for vtkSMCameraManipulatorProxy:
Public Member Functions | |
vtkTypeRevisionMacro (vtkSMCameraManipulatorProxy, vtkSMKeyFrameAnimationCueManipulatorProxy) | |
void | PrintSelf (ostream &os, vtkIndent indent) |
Static Public Member Functions | |
vtkSMCameraManipulatorProxy * | New () |
Protected Member Functions | |
vtkSMCameraManipulatorProxy () | |
~vtkSMCameraManipulatorProxy () | |
virtual void | Initialize (vtkSMAnimationCueProxy *) |
virtual void | Finalize (vtkSMAnimationCueProxy *) |
virtual void | UpdateValue (double currenttime, vtkSMAnimationCueProxy *cueproxy) |
Protected Attributes | |
vtkCameraInterpolator * | CameraInterpolator |
This is the manipulator for animating camera. Unlike the base class, interpolation is not done by the Keyframe objects. Instead, this class does the interpolation using the values in the keyframe objects.
Definition at line 31 of file vtkSMCameraManipulatorProxy.h.
|
|
|
|
|
Reimplemented from vtkSMKeyFrameAnimationCueManipulatorProxy. |
|
|
|
Reimplemented from vtkSMKeyFrameAnimationCueManipulatorProxy. |
|
This method is called when the AnimationCue's StartAnimationCueEvent is triggerred, to let the animation manipulator know that the cue has been restarted. This is here for one major reason: after the last key frame, the state of the scene must be as it was left a the the last key frame. This does not happend automatically, since if while animating the currentime never coincides with the last key frame's key time, then it never gets a chance to update the properties value. Hence, we note when the cue begins. Then, if the currentime is beyond that of the last key frame we pretend that the current time coincides with that of the last key frame and let it update the properties. This is done only once per Animation cycle. The Initialize method is used to indicate that a new animation cycle has begun. Reimplemented from vtkSMKeyFrameAnimationCueManipulatorProxy. |
|
This method is called when the AnimationCue's EndAnimationCueEvent is triggerred. Typically, the Manipulator will set the state of the Cue to that at the end of the cue. Reimplemented from vtkSMKeyFrameAnimationCueManipulatorProxy. |
|
This updates the values based on currenttime. currenttime is normalized to the time range of the Cue. Reimplemented from vtkSMKeyFrameAnimationCueManipulatorProxy. |
|
Definition at line 53 of file vtkSMCameraManipulatorProxy.h. |