[][src]Type Definition doem_math::Vector

type Vector<const M: usize> = Matrix<M, 1>;

Methods

impl<const M: usize> Vector<M>[src]

pub fn normalize(&self) -> Vector<M>[src]

pub fn length(&self) -> Scalar[src]

pub fn dimension_hop<const P: usize>(&self) -> Vector<P>[src]

pub fn sign_length(&self) -> Scalar[src]

pub fn dot_product(&self, rhs: &Vector<M>) -> Scalar[src]