pub trait Normalize {
    type Output;

    // Required method
    fn normalize(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn normalize(self) -> Self::Output

Implementors§

source§

impl<const C: usize> Normalize for &Vector<C, f32>

§

type Output = MatrixSealed<1, C, f32>