---------------------------------------------------------------------
| 62 | SimpleSpline::~SimpleSpline() {} |
| 63 | //--------------------------------------------------------------------- |
| 64 | void SimpleSpline::addPoint( const Vector3 &p ) |
| 65 | { |
| 66 | mPoints.push_back( p ); |
| 67 | if( mAutoCalc ) |
| 68 | { |
| 69 | recalcTangents(); |
| 70 | } |
| 71 | } |
| 72 | //--------------------------------------------------------------------- |
| 73 | Vector3 SimpleSpline::interpolate( Real t ) const |
| 74 | { |
no test coverage detected