Fri, 18 Oct 2024 14:22:45 -0500
Sketch exp
/// A point on a manifold pub trait ManifoldPoint : Clone + PartialEq { // Type of tangent factors type Tangent : Euclidean<f64, Output=Self::Tangent> + std::fmt::Debug; /// Exponential map fn exp(&self, tangent : &Self::Tangent) -> Self; /// Logarithmic map fn log(&self, other : &Self) -> Self::Tangent; }