Type Definition na::Vector

source ·
pub type Vector<T, D, S> = Matrix<T, D, Const<1>, S>;
Expand description

A matrix with one column and D rows.

Trait Implementations§

source§

impl<'a, T, S> JoinVec<T, Matrix<T, Const<2>, Const<1>, S>> for Vector<T, U2, S>where T: BaseNum, S: Storage<T, U2, U1>,

§

type Output = Matrix<T, Const<4>, Const<1>, ArrayStorage<T, 4, 1>>

source§

fn join(self, v: Vector<T, U2, S>) -> Vector4<T>

source§

impl<'a, T, S1, S2> JoinVec<T, Matrix<T, Const<2>, Const<1>, S2>> for Vector<T, U1, S1>where T: BaseNum, S1: Storage<T, U1, U1>, S2: Storage<T, U2, U1>,

§

type Output = Matrix<T, Const<3>, Const<1>, ArrayStorage<T, 3, 1>>

source§

fn join(self, v: Vector<T, U2, S2>) -> Vector3<T>

source§

impl<'a, T, S> JoinVec<T, T> for Vector<T, U3, S>where T: BaseNum, S: Storage<T, U3, U1>,

§

type Output = Matrix<T, Const<4>, Const<1>, ArrayStorage<T, 4, 1>>

source§

fn join(self, v: T) -> Vector4<T>