[][src]Trait hcomplex::transform::Transform

pub trait Transform<U> {
    pub fn apply(&self, x: U) -> U;
}

Complex and hypercomplex transformation basic trait.

Required methods

pub fn apply(&self, x: U) -> U[src]

Apply the transformation.

Loading content...

Implementors

impl<T: Algebra + Clone, U: Algebra<T> + Clone> Transform<Construct<T, Construct<T, U>>> for Moebius<Construct<T, U>>[src]

impl<U> Transform<U> for Moebius<U> where
    U: Add<Output = U> + Mul<Output = U> + Div<Output = U> + Clone
[src]

Loading content...