Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update orientation_3d_stamped.h #385

Open
wants to merge 2 commits into
base: devel
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -164,11 +164,11 @@ class Orientation3DLocalParameterization : public fuse_core::LocalParameterizati

#if CERES_SUPPORTS_MANIFOLDS
/**
* @brief A Manifold class for 2D Orientations.
* @brief A Manifold class for 3D Orientations.
*
* 2D orientations add and subtract in the "usual" way, except for the 2*pi rollover issue. This local parameterization
* handles the rollover. Because the Jacobians for this parameterization are always identity, we implement this
* parameterization with "analytic" derivatives, instead of using the Ceres's autodiff system.
* 3D orientations add and subtract nonlinearly. Additionally, the typcial 3D orientation representation is a
* quaternion, which has 4 degrees of freedom to parameterize a 3D space. This manifold uses the
* Rodrigues/angle-axis formulas to combine 3D rotations, along with the appropriate "analytic" derivatives.
*/
class Orientation3DManifold : public fuse_core::Manifold
{
Expand Down