//! The Lie groups `SO(3)` and `SE(3)`.
//!
//! Pose optimisation runs over the Lie algebra rather than over matrix
//! entries: six free parameters instead of sixteen constrained ones, and
//! the update `T ← exp(Δξ) · T` stays on the manifold by construction.
//!
//! Ordering convention: `ξ = [ρ; φ]` — translation first, then rotation.
//! It runs through the whole project: the same order indexes the rows of
//! the adjoint, the columns of the residual Jacobian and the degrees of
//! freedom in the conditioning report. It cannot be changed in one place
//! alone.
pub use absolute_orientation;
pub use ;
pub use ;
pub use ;