[−][src]Type Definition vectrix::RowVector
type RowVector<T, const N: usize> = Matrix<T, 1, N>;
A matrix with one row and N columns.
Implementations
impl<T> RowVector<T, 1>[src]
impl<T> RowVector<T, 2>[src]
impl<T> RowVector<T, 3>[src]
impl<T> RowVector<T, 4>[src]
pub const fn new(x: T, y: T, z: T, w: T) -> Self[src]
Creates a new vector from the given components.
impl<T> RowVector<T, 5>[src]
pub const fn new(x: T, y: T, z: T, w: T, a: T) -> Self[src]
Creates a new vector from the given components.
impl<T> RowVector<T, 6>[src]
pub const fn new(x: T, y: T, z: T, w: T, a: T, b: T) -> Self[src]
Creates a new vector from the given components.