Type Definition Vector
na::base
type Vector<N, D, S> = Matrix<N, D, U1, S>;
A matrix with one column and D rows.
D
impl<'a, T, S> JoinVec<T, Matrix<T, U2, U1, S>> for Vector<T, U2, S> where T: BaseNum, S: Storage<T, U2, U1>,
type Output = Vector4<T>
fn join(self, v: Vector<T, U2, S>) -> Vector4<T>
impl<'a, T, S1, S2> JoinVec<T, Matrix<T, U2, U1, S2>> for Vector<T, U1, S1> where T: BaseNum, S1: Storage<T, U1, U1>, S2: Storage<T, U2, U1>,
type Output = Vector3<T>
fn join(self, v: Vector<T, U2, S2>) -> Vector3<T>
impl<'a, T, S> JoinVec<T, T> for Vector<T, U3, S> where T: BaseNum, S: Storage<T, U3, U1>,
fn join(self, v: T) -> Vector4<T>