|
template<typename Point , typename T_Point > |
T_Point | parametriccurves::make_cubic_vector (Point const &a, Point const &b, Point const &c, Point const &d) |
| Creates coefficient vector of a cubic spline defined on the interval [tBegin, tEnd]. It follows the equation x(t) = a + b(t - t_min_) + c(t - t_min_)^2 + d(t - t_min_)^3. More...
|
|
template<typename Numeric , Eigen::Index Dim, typename Point , typename T_Point > |
Polynomial< Numeric, Dim, Point > | parametriccurves::create_cubic (Point const &a, Point const &b, Point const &c, Point const &d, const Numeric min, const Numeric max) |
|
template<typename Point , typename T_Point > |
T_Point | parametriccurves::make_quintic_vector (Point const &a, Point const &b, Point const &c, Point const &d, Point const &e, Point const &f) |
| Creates coefficient vector of a quintic spline defined on the interval [tBegin, tEnd]. It follows the equation x(t) = a + b(t - t_min_) + c(t - t_min_)^2 + d(t - t_min_)^3 + e(t - t_min_)^4 + f(t - t_min_)^5. More...
|
|
template<typename Numeric , Eigen::Index Dim, typename Point , typename T_Point > |
Polynomial< Numeric, Dim, Point > | parametriccurves::create_quintic (Point const &a, Point const &b, Point const &c, Point const &d, Point const &e, Point const &f, const Numeric min, const Numeric max) |
|