[][src]Trait glsl_linalg::matrix::FromVectors

pub trait FromVectors<V> {
    fn from_cols(v: V) -> Self;
fn from_rows(v: V) -> Self; }

Required methods

fn from_cols(v: V) -> Self

fn from_rows(v: V) -> Self

Loading content...

Implementors

impl<T> FromVectors<(V2<T>, V2<T>)> for M2<T> where
    T: Numeric
[src]

impl<T> FromVectors<(V3<T>, V3<T>, V3<T>)> for M3<T> where
    T: Numeric
[src]

impl<T> FromVectors<(V4<T>, V4<T>, V4<T>, V4<T>)> for M4<T> where
    T: Numeric
[src]

Loading content...