Visualization LibraryA lightweight C++ OpenGL middleware for 2D/3D graphics |
[Home] [Tutorials] [All Classes] [Grouped Classes] |
#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 |
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.
| vl::CatmullRomInterpolator< T >::CatmullRomInterpolator | ( | ) | [inline] |
| vl::CatmullRomInterpolator< T >::CatmullRomInterpolator | ( | const std::vector< T > & | path | ) | [inline] |
| 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.
| 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.
| 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.
| const std::vector<T>& vl::CatmullRomInterpolator< T >::path | ( | ) | const [inline] |
The control points defining the Catmull-Rom spline.
| std::vector<T>& vl::CatmullRomInterpolator< T >::path | ( | ) | [inline] |
The control points defining the Catmull-Rom spline.
std::vector<T> vl::CatmullRomInterpolator< T >::mPath [protected] |
std::vector<T> vl::CatmullRomInterpolator< T >::mCatmullRomSpline [protected] |