13#include "../detail/traits.hpp"
14#include "../lie_groups.hpp"
15#include "../polynomial/basis.hpp"
37template<
int K, LieGroup G>
40 std::ranges::sized_range
auto && vs,
41 const MatrixType
auto & Bcum,
43 OptTangent<G> vel = {},
44 OptTangent<G> acc = {},
45 OptTangent<G> jer = {})
noexcept;
64template<
int K, LieGroup G>
67 std::ranges::sized_range
auto && vs,
68 const MatrixType
auto & Bcum,
70 OptSplineJacobian<G, K - 1> dvel_dvs = {},
71 OptSplineJacobian<G, K - 1> dacc_dvs = {})
noexcept;
90template<
int K, std::ranges::sized_range R, LieGroup G = std::ranges::range_value_t<R>>
94 const MatrixType
auto & Bcum,
96 OptTangent<G> vel = {},
97 OptTangent<G> acc = {},
98 OptTangent<G> jer = {})
noexcept;
118template<
int K, std::ranges::sized_range R, LieGroup G = std::ranges::range_value_t<R>>
122 const MatrixType
auto & Bcum,
124 OptSplineJacobian<G, K> dvel_dgs = {},
125 OptSplineJacobian<G, K> dacc_dgs = {})
noexcept;
128#include "detail/cumulative_spline_impl.hpp"
SMOOTH_BEGIN_NAMESPACE G cspline_eval_vs(std::ranges::sized_range auto &&vs, const MatrixType auto &Bcum, Scalar< G > u, OptTangent< G > vel={}, OptTangent< G > acc={}, OptTangent< G > jer={}) noexcept
Evaluate a cumulative spline of order from differences.
SplineJacobian< G, K > cspline_eval_dg_dgs(R &&gs, const MatrixType auto &Bcum, const Scalar< G > &u, OptSplineJacobian< G, K > dvel_dgs={}, OptSplineJacobian< G, K > dacc_dgs={}) noexcept
Derivatives of a cumulative spline w.r.t. the coefficients.
G cspline_eval_gs(R &&gs, const MatrixType auto &Bcum, Scalar< G > u, OptTangent< G > vel={}, OptTangent< G > acc={}, OptTangent< G > jer={}) noexcept
Evaluate a cumulative basis spline of order K from coefficients.
SplineJacobian< G, K - 1 > cspline_eval_dg_dvs(std::ranges::sized_range auto &&vs, const MatrixType auto &Bcum, const Scalar< G > &u, OptSplineJacobian< G, K - 1 > dvel_dvs={}, OptSplineJacobian< G, K - 1 > dacc_dvs={}) noexcept
Derivatives of a cumulative spline w.r.t. the differences.
typename traits::man< M >::Scalar Scalar
Manifold scalar type.