pub trait Exp {
    type Output;

    // Required method
    fn exp(self) -> Self::Output;
}
Expand description

The exponential function

Required Associated Types§

Required Methods§

source

fn exp(self) -> Self::Output

Implementors§

source§

impl Exp for ComplexNumber

source§

impl Exp for geometric_algebra::ppga2d::IdealPoint

source§

impl Exp for Point

source§

impl Exp for geometric_algebra::ppga3d::IdealPoint

source§

impl Exp for Line