|
|
| SE3 ()=default |
| | Constructs a state space representing SE(3).
|
| |
| ScopedState | createState () const |
| | Helper function to create a ScopedState. More...
|
| |
|
ScopedState | cloneState (const StateSpace::State *stateIn) const |
| | Creates an identical clone of stateIn.
|
| |
| const Isometry3d & | getIsometry (const State *_state) const |
| | Gets value as an Eigen transformation object. More...
|
| |
| void | setIsometry (State *_state, const Isometry3d &_transform) const |
| | Sets value to an Eigen transfomation object. More...
|
| |
| std::size_t | getStateSizeInBytes () const override |
| | Gets the size of a State, in bytes. More...
|
| |
| StateSpace::State * | allocateStateInBuffer (void *_buffer) const override |
| | Create a new state in a pre-allocated buffer. More...
|
| |
|
void | freeStateInBuffer (StateSpace::State *_state) const override |
| |
|
void | compose (const StateSpace::State *_state1, const StateSpace::State *_state2, StateSpace::State *_out) const override |
| |
|
void | getIdentity (StateSpace::State *_out) const override |
| |
|
void | getInverse (const StateSpace::State *_in, StateSpace::State *_out) const override |
| |
| std::size_t | getDimension () const override |
| | Get the dimension of this Lie group. More...
|
| |
| void | copyState (const StateSpace::State *_source, StateSpace::State *_destination) const override |
| | Copy a state. More...
|
| |
| void | expMap (const Eigen::VectorXd &_tangent, StateSpace::State *_out) const override |
| | Exponential mapping of Lie algebra element to a Lie group element. More...
|
| |
| void | logMap (const StateSpace::State *_in, Eigen::VectorXd &_tangent) const override |
| | Log mapping of Lie group element to a Lie algebra element. More...
|
| |
|
void | print (const StateSpace::State *_state, std::ostream &_os) const override |
| | Print the quaternion followed by the translation Format: [q.w, q.x, q.y, q.z, x, y, z] where is the quaternion representation of the rotational component of the state.
|
| |
| ScopedState | createState () const |
| | Helper function to create a ScopedState. More...
|
| |
|
ScopedState | cloneState (const State *stateIn) const |
| | Creates an identical clone of stateIn.
|
| |
| virtual State * | allocateState () const |
| | Allocate a new state. More...
|
| |
| virtual void | freeState (State *_state) const |
| | Free a state previously created by allocateState. More...
|
| |
| virtual void | freeStateInBuffer (State *_state) const =0 |
| | Free a state previously created by allocateStateInBuffer. More...
|
| |
| virtual void | compose (const State *_state1, const State *_state2, State *_out) const =0 |
| | Lie group operation for this StateSpace. More...
|
| |
| virtual void | compose (State *_state1, const State *_state2) const |
| | Lie group operation for this StateSpace. More...
|
| |
| virtual void | getIdentity (State *_out) const =0 |
| | Gets the identity element for this Lie group, such that: More...
|
| |
| virtual void | getInverse (const State *_state, State *_out) const =0 |
| | Gets the inverse of _in in this Lie group, such that: More...
|
| |
| virtual void | getInverse (State *_state) const |
| | Gets the inverse of _in in this Lie group. More...
|
| |
| virtual void | expMap (const Eigen::VectorXd &_tangent, State *_out) const =0 |
| | Exponential mapping of Lie algebra element to a Lie group element. More...
|
| |
| virtual void | logMap (const State *_in, Eigen::VectorXd &_tangent) const =0 |
| | Log mapping of Lie group element to a Lie algebra element. More...
|
| |
| virtual void | print (const State *_state, std::ostream &_os) const =0 |
| | Print the state to the output stream. More...
|
| |
The three-dimensional special Euclidean group SE(3), i.e.
the space of spatial rigid body transformations. Note that the group operation for SE(3) differs from the group operation of the Cartesian product space R^3 x SO(3) because it is constructed through the semi-direct product.