Visualization Library v1.0.3A lightweight C++ OpenGL middleware for 2D/3D graphics |
[Download] [Tutorials] [All Classes] [Grouped Classes] |
The LinearInterpolator class is a template class that implements Catmull-Rom spline interpolation. More...
#include <CatmullRomInterpolator.hpp>
Public Member Functions | |
CatmullRomInterpolator () | |
CatmullRomInterpolator (const std::vector< T > &path) | |
void | setupEndPoints (bool is_loop) |
Call this function after having specified the control points if you want to automatically generate the start/end control points. | |
T | computePoint (float t) const |
Samples the Catmull-Rom spline at the given point. The t parameter must be in the range 0.0 ... 1.0 included. | |
void | setPath (const std::vector< T > &path) |
The control points defining the Catmull-Rom spline. | |
const std::vector< T > & | path () const |
The control points defining the Catmull-Rom spline. | |
std::vector< T > & | path () |
The control points defining the Catmull-Rom spline. | |
Protected Attributes | |
std::vector< T > | mPath |
std::vector< T > | mCatmullRomSpline |
The LinearInterpolator class is a template class that implements Catmull-Rom spline interpolation.
Catmull-Rom spline interpolation allows smoother interpolations than simple linear interpolation, is thus indicated for example when you want to smoothly interpolate from one position to another or from one color to another.
Definition at line 46 of file CatmullRomInterpolator.hpp.
vl::CatmullRomInterpolator< T >::CatmullRomInterpolator | ( | ) | [inline] |
Definition at line 51 of file CatmullRomInterpolator.hpp.
References VL_DEBUG_SET_OBJECT_NAME.
vl::CatmullRomInterpolator< T >::CatmullRomInterpolator | ( | const std::vector< T > & | path ) | [inline] |
Definition at line 56 of file CatmullRomInterpolator.hpp.
void vl::CatmullRomInterpolator< T >::setupEndPoints | ( | bool | is_loop ) | [inline] |
Call this function after having specified the control points if you want to automatically generate the start/end control points.
Definition at line 59 of file CatmullRomInterpolator.hpp.
References vl::CatmullRomInterpolator< T >::mCatmullRomSpline, vl::CatmullRomInterpolator< T >::mPath, and VL_CHECK.
T vl::CatmullRomInterpolator< T >::computePoint | ( | float | t ) | const [inline] |
Samples the Catmull-Rom spline at the given point. The t
parameter must be in the range 0.0 ... 1.0 included.
Definition at line 96 of file CatmullRomInterpolator.hpp.
References vl::clamp(), vl::CatmullRomInterpolator< T >::mCatmullRomSpline, and VL_CHECK.
Referenced by vl::CatmullRomInterpolatorDouble::computePoint(), vl::CatmullRomInterpolatorDVec2::computePoint(), vl::CatmullRomInterpolatorDVec3::computePoint(), vl::CatmullRomInterpolatorDVec4::computePoint(), vl::CatmullRomInterpolatorFloat::computePoint(), vl::CatmullRomInterpolatorFVec2::computePoint(), vl::CatmullRomInterpolatorFVec3::computePoint(), and vl::CatmullRomInterpolatorFVec4::computePoint().
void vl::CatmullRomInterpolator< T >::setPath | ( | const std::vector< T > & | path ) | [inline] |
The control points defining the Catmull-Rom spline.
Because of the Catmull-Rom formula the interpolated path must start and end with an extra control point (one on each side) and cannot have less than 4 control points. You can also automatically generate such extra control points by calling the setupEndPoints() method.
Definition at line 130 of file CatmullRomInterpolator.hpp.
References vl::CatmullRomInterpolator< T >::mPath, and vl::CatmullRomInterpolator< T >::path().
const std::vector<T>& vl::CatmullRomInterpolator< T >::path | ( | ) | const [inline] |
The control points defining the Catmull-Rom spline.
Definition at line 133 of file CatmullRomInterpolator.hpp.
References vl::CatmullRomInterpolator< T >::mPath.
Referenced by vl::CatmullRomInterpolator< T >::setPath().
std::vector<T>& vl::CatmullRomInterpolator< T >::path | ( | ) | [inline] |
The control points defining the Catmull-Rom spline.
Definition at line 136 of file CatmullRomInterpolator.hpp.
References vl::CatmullRomInterpolator< T >::mPath.
std::vector<T> vl::CatmullRomInterpolator< T >::mPath [protected] |
Definition at line 139 of file CatmullRomInterpolator.hpp.
Referenced by vl::CatmullRomInterpolator< T >::path(), vl::CatmullRomInterpolator< T >::setPath(), and vl::CatmullRomInterpolator< T >::setupEndPoints().
std::vector<T> vl::CatmullRomInterpolator< T >::mCatmullRomSpline [protected] |
Definition at line 140 of file CatmullRomInterpolator.hpp.
Referenced by vl::CatmullRomInterpolator< T >::computePoint(), and vl::CatmullRomInterpolator< T >::setupEndPoints().