[][src]Struct glsl_linalg::matrix::M4

pub struct M4<T>(pub [[T; 4]; 4]);

Trait Implementations

impl<F> Converter<M4<F>, M4<F>> for EmptyConverter where
    F: Numeric
[src]

impl<T> Finalizer<M4<T>> for M4<T>[src]

impl<T> Finalizer<M4<T>> for V1<T> where
    T: Numeric
[src]

impl<T> Matrix for M4<T> where
    T: Numeric
[src]

impl<F> FloatMatrix<F> for M4<F> where
    F: Float
[src]

fn inverse(&self) -> Self[src]

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

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

impl<T: PartialEq> PartialEq<M4<T>> for M4<T>[src]

impl<T: Clone> Clone for M4<T>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Default> Default for M4<T>[src]

impl<T: Copy> Copy for M4<T>[src]

impl<T> DerefMut for M4<T> where
    T: Numeric
[src]

impl<T> Deref for M4<T> where
    T: Numeric
[src]

type Target = [[T; 4]; 4]

The resulting type after dereferencing.

impl<T: Debug> Debug for M4<T>[src]

impl<T> Sub<M4<T>> for M4<T> where
    T: Numeric
[src]

type Output = M4<T>

The resulting type after applying the - operator.

impl<T> Add<M4<T>> for M4<T> where
    T: Numeric
[src]

type Output = M4<T>

The resulting type after applying the + operator.

impl<T> Mul<M4<T>> for M4<T> where
    T: Numeric
[src]

type Output = M4<T>

The resulting type after applying the * operator.

impl<T> Mul<V4<T>> for M4<T> where
    T: Numeric
[src]

type Output = V4<T>

The resulting type after applying the * operator.

impl Mul<M4<i8>> for i8[src]

type Output = M4<i8>

The resulting type after applying the * operator.

impl Mul<M4<i16>> for i16[src]

type Output = M4<i16>

The resulting type after applying the * operator.

impl Mul<M4<i32>> for i32[src]

type Output = M4<i32>

The resulting type after applying the * operator.

impl Mul<M4<i64>> for i64[src]

type Output = M4<i64>

The resulting type after applying the * operator.

impl Mul<M4<f32>> for f32[src]

type Output = M4<f32>

The resulting type after applying the * operator.

impl Mul<M4<f64>> for f64[src]

type Output = M4<f64>

The resulting type after applying the * operator.

impl<T> Mul<M4<T>> for V4<T> where
    T: Numeric
[src]

type Output = V4<T>

The resulting type after applying the * operator.

impl<T> Div<T> for M4<T> where
    T: Numeric
[src]

type Output = M4<T>

The resulting type after applying the / operator.

Auto Trait Implementations

impl<T> Send for M4<T> where
    T: Send

impl<T> Sync for M4<T> where
    T: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.