rtsam 0.1.4

Real Time Smoothing and Mapping (RTSAM) in Rust.
Documentation
1
2
3
4
5
6
7
pub trait Manifold {
    type TangentVector;

    fn local(origin: &Self, other: &Self) -> Self::TangentVector;

    fn retract(origin: &Self, v: &Self::TangentVector) -> Self;
}