[][src]Trait rtsam::core::manifold::Manifold

pub trait Manifold {
    type TangentVector;
    fn local(origin: &Self, other: &Self) -> Self::TangentVector;
fn retract(origin: &Self, v: &Self::TangentVector) -> Self; }

Associated Types

Loading content...

Required methods

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

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

Loading content...

Implementors

impl Manifold for SE3<f64>[src]

type TangentVector = Vector6<f64>

impl Manifold for SO3<f64>[src]

type TangentVector = Vector3<f64>

Loading content...