|
| ALIGATOR_DYNAMIC_TYPEDEFS (Scalar) |
|
| PinocchioLieGroup () |
|
| PinocchioLieGroup (const LieGroup &lg) |
|
| PinocchioLieGroup (LieGroup &&lg) |
|
| PinocchioLieGroup (const PinocchioLieGroup &lg)=default |
|
| PinocchioLieGroup (PinocchioLieGroup &&lg)=default |
|
template<typename... Args> |
| PinocchioLieGroup (Args &&...args) |
|
| operator LieGroup () |
|
int | nx () const |
| Get manifold representation dimension.
|
|
int | ndx () const |
| Get manifold tangent space dimension.
|
|
bool | isNormalized (const ConstVectorRef &x) const |
| Check if the input vector x is a viable element of the manifold.
|
|
| ALIGATOR_DYNAMIC_TYPEDEFS (Scalar) |
| Scalar type.
|
|
virtual | ~ManifoldAbstractTpl ()=default |
|
VectorXs | neutral () const |
| Get the neutral element \(e \in M\) from the manifold (if this makes sense).
|
|
void | neutral (VectorRef out) const |
| Get the neutral element \(e \in M\) from the manifold (if this makes sense).
|
|
VectorXs | rand () const |
| Sample a random point \(x \in M\) on the manifold.
|
|
void | rand (VectorRef out) const |
| Sample a random point \(x \in M\) on the manifold.
|
|
TangentSpaceType | tangentSpace () const |
| Return an object representing the tangent space as a manifold.
|
|
void | integrate (const ConstVectorRef &x, const ConstVectorRef &v, VectorRef out) const |
| Manifold integration operation \(x \oplus v\).
|
|
void | Jintegrate (const ConstVectorRef &x, const ConstVectorRef &v, MatrixRef Jout, int arg) const |
| Jacobian of the integation operation.
|
|
void | JintegrateTransport (const ConstVectorRef &x, const ConstVectorRef &v, MatrixRef Jout, int arg) const |
| Perform the parallel transport operation.
|
|
void | difference (const ConstVectorRef &x0, const ConstVectorRef &x1, VectorRef out) const |
| Manifold difference/retraction operation \(x_1 \ominus x_0\).
|
|
void | Jdifference (const ConstVectorRef &x0, const ConstVectorRef &x1, MatrixRef Jout, int arg) const |
| Jacobian of the retraction operation.
|
|
void | interpolate (const ConstVectorRef &x0, const ConstVectorRef &x1, const Scalar &u, VectorRef out) const |
|
VectorXs | integrate (const ConstVectorRef &x, const ConstVectorRef &v) const |
| Manifold integration operation \(x \oplus v\).
|
|
VectorXs | difference (const ConstVectorRef &x0, const ConstVectorRef &x1) const |
| Manifold difference/retraction operation \(x_1 \ominus x_0\).
|
|
VectorXs | interpolate (const ConstVectorRef &x0, const ConstVectorRef &x1, const Scalar &u) const |
| Interpolation operation.
|
|
|
|
void | integrate_impl (const ConstVectorRef &x, const ConstVectorRef &v, VectorRef out) const |
| Perform the manifold integration operation.
|
|
void | difference_impl (const ConstVectorRef &x0, const ConstVectorRef &x1, VectorRef vout) const |
| Implementation of the manifold retraction operation.
|
|
void | Jintegrate_impl (const ConstVectorRef &x, const ConstVectorRef &v, MatrixRef Jout, int arg) const |
|
void | JintegrateTransport_impl (const ConstVectorRef &x, const ConstVectorRef &v, MatrixRef Jout, int arg) const |
|
void | Jdifference_impl (const ConstVectorRef &x0, const ConstVectorRef &x1, MatrixRef Jout, int arg) const |
|
virtual void | interpolate_impl (const ConstVectorRef &x0, const ConstVectorRef &x1, const Scalar &u, VectorRef out) const |
|
virtual void | neutral_impl (VectorRef out) const |
|
virtual void | rand_impl (VectorRef out) const |
|
virtual void | interpolate_impl (const ConstVectorRef &x0, const ConstVectorRef &x1, const Scalar &u, VectorRef out) const |
| Interpolation operation.
|
|
template<typename _LieGroup>
struct aligator::PinocchioLieGroup< _LieGroup >
Wrap a Pinocchio Lie group into a ManifoldAbstractTpl object.
Definition at line 22 of file pinocchio-groups.hpp.