VTK
|
interpolate a quaternion More...
#include <vtkQuaternionInterpolator.h>
interpolate a quaternion
This class is used to interpolate a series of quaternions representing the rotations of a 3D object. The interpolation may be linear in form (using spherical linear interpolation SLERP), or via spline interpolation (using SQUAD). In either case the interpolation is specialized to quaternions since the interpolation occurs on the surface of the unit quaternion sphere.
To use this class, specify at least two pairs of (t,q[4]) with the AddQuaternion() method. Next interpolate the tuples with the InterpolateQuaternion(t,q[4]) method, where "t" must be in the range of (t_min,t_max) parameter values specified by the AddQuaternion() method (t is clamped otherwise), and q[4] is filled in by the method.
There are several important background references. Ken Shoemake described the practical application of quaternions for the interpolation of rotation (K. Shoemake, "Animating rotation with quaternion curves", Computer Graphics (Siggraph '85) 19(3):245--254, 1985). Another fine reference (available on-line) is E. B. Dam, M. Koch, and M. Lillholm, Technical Report DIKU-TR-98/5, Dept. of Computer Science, University of Copenhagen, Denmark.
Definition at line 63 of file vtkQuaternionInterpolator.h.
Reimplemented from vtkObject.
Definition at line 66 of file vtkQuaternionInterpolator.h.
anonymous enum |
Enums to control the type of interpolation to use.
Definition at line 113 of file vtkQuaternionInterpolator.h.
vtkQuaternionInterpolator::vtkQuaternionInterpolator | ( | ) | [protected] |
virtual vtkQuaternionInterpolator::~vtkQuaternionInterpolator | ( | ) | [protected, virtual] |
static int vtkQuaternionInterpolator::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkObject.
virtual int vtkQuaternionInterpolator::IsA | ( | const char * | name | ) | [virtual] |
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkObject.
static vtkQuaternionInterpolator* vtkQuaternionInterpolator::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkObject.
virtual vtkObjectBase* vtkQuaternionInterpolator::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkObject.
Reimplemented from vtkObject.
void vtkQuaternionInterpolator::PrintSelf | ( | ostream & | os, |
vtkIndent | indent | ||
) | [virtual] |
static vtkQuaternionInterpolator* vtkQuaternionInterpolator::New | ( | ) | [static] |
Instantiate the class.
Reimplemented from vtkObject.
Return the number of quaternions in the list of quaternions to be interpolated.
Obtain some information about the interpolation range. The numbers returned (corresponding to parameter t, usually thought of as time) are undefined if the list of transforms is empty. This is a convenience method for interpolation.
Obtain some information about the interpolation range. The numbers returned (corresponding to parameter t, usually thought of as time) are undefined if the list of transforms is empty. This is a convenience method for interpolation.
Reset the class so that it contains no data; i.e., the array of (t,q[4]) information is discarded.
void vtkQuaternionInterpolator::AddQuaternion | ( | double | t, |
const vtkQuaterniond & | q | ||
) |
Add another quaternion to the list of quaternions to be interpolated. Note that using the same time t value more than once replaces the previous quaternion at t. At least one quaternions must be added to define an interpolation functios.
void vtkQuaternionInterpolator::AddQuaternion | ( | double | t, |
double | q[4] | ||
) |
Add another quaternion to the list of quaternions to be interpolated. Note that using the same time t value more than once replaces the previous quaternion at t. At least one quaternions must be added to define an interpolation functios.
Delete the quaternion at a particular parameter t. If there is no quaternion tuple defined at t, then the method does nothing.
void vtkQuaternionInterpolator::InterpolateQuaternion | ( | double | t, |
vtkQuaterniond & | q | ||
) |
Interpolate the list of quaternions and determine a new quaternion (i.e., fill in the quaternion provided). If t is outside the range of (min,max) values, then t is clamped to lie within the range.
void vtkQuaternionInterpolator::InterpolateQuaternion | ( | double | t, |
double | q[4] | ||
) |
Interpolate the list of quaternions and determine a new quaternion (i.e., fill in the quaternion provided). If t is outside the range of (min,max) values, then t is clamped to lie within the range.
virtual void vtkQuaternionInterpolator::SetInterpolationType | ( | int | ) | [virtual] |
Specify which type of function to use for interpolation. By default (SetInterpolationFunctionToSpline()), cubic spline interpolation using a modifed Kochanek basis is employed. Otherwise, if SetInterpolationFunctionToLinear() is invoked, linear spherical interpolation is used between each pair of quaternions.
virtual int vtkQuaternionInterpolator::GetInterpolationType | ( | ) | [virtual] |
Specify which type of function to use for interpolation. By default (SetInterpolationFunctionToSpline()), cubic spline interpolation using a modifed Kochanek basis is employed. Otherwise, if SetInterpolationFunctionToLinear() is invoked, linear spherical interpolation is used between each pair of quaternions.
void vtkQuaternionInterpolator::SetInterpolationTypeToLinear | ( | ) | [inline] |
Specify which type of function to use for interpolation. By default (SetInterpolationFunctionToSpline()), cubic spline interpolation using a modifed Kochanek basis is employed. Otherwise, if SetInterpolationFunctionToLinear() is invoked, linear spherical interpolation is used between each pair of quaternions.
Definition at line 128 of file vtkQuaternionInterpolator.h.
void vtkQuaternionInterpolator::SetInterpolationTypeToSpline | ( | ) | [inline] |
Specify which type of function to use for interpolation. By default (SetInterpolationFunctionToSpline()), cubic spline interpolation using a modifed Kochanek basis is employed. Otherwise, if SetInterpolationFunctionToLinear() is invoked, linear spherical interpolation is used between each pair of quaternions.
Definition at line 130 of file vtkQuaternionInterpolator.h.
int vtkQuaternionInterpolator::InterpolationType [protected] |
Definition at line 139 of file vtkQuaternionInterpolator.h.
vtkQuaternionList* vtkQuaternionInterpolator::QuaternionList [protected] |
Definition at line 142 of file vtkQuaternionInterpolator.h.