Trait vecmat::traits::Normalize[][src]

pub trait Normalize {
    fn normalize(self) -> Self;
}

Something that could be normalized using most suitable norm.

Required methods

fn normalize(self) -> Self[src]

Normalize object.

Loading content...

Implementors

impl<T> Normalize for Complex<T> where
    T: Float
[src]

fn normalize(self) -> Self[src]

impl<T> Normalize for Quaternion<T> where
    T: Float
[src]

fn normalize(self) -> Self[src]

impl<T, const N: usize> Normalize for Vector<T, N> where
    T: Float
[src]

fn normalize(self) -> Self[src]

impl<T: Neg<Output = T> + Num + Copy> Normalize for Moebius<T>[src]

fn normalize(self) -> Self[src]

Loading content...