Struct vecmat::mat::Mat4x3 [] [src]

pub struct Mat4x3<T: Copy> {
    pub d: [T; 12],
}

Fields

Methods

impl<T> Mat4x3<T> where
    T: Copy + Default
[src]

impl<T> Mat4x3<T> where
    T: Copy
[src]

impl<T> Mat4x3<T> where
    T: Copy
[src]

impl<T> Mat4x3<T> where
    T: Copy
[src]

impl<T> Mat4x3<T> where
    T: Copy + Zero
[src]

impl<T> Mat4x3<T> where
    T: Copy
[src]

impl<T> Mat4x3<T> where
    T: Copy
[src]

Trait Implementations

impl<T: Clone + Copy> Clone for Mat4x3<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Copy + Copy> Copy for Mat4x3<T>
[src]

impl<T: Debug + Copy> Debug for Mat4x3<T>
[src]

Formats the value using the given formatter.

impl<T: PartialEq + Copy> PartialEq for Mat4x3<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T> Default for Mat4x3<T> where
    T: Copy + Default
[src]

Returns the "default value" for a type. Read more

impl<T> Display for Mat4x3<T> where
    T: Copy + Display
[src]

Formats the value using the given formatter. Read more

impl<T> Index<(usize, usize)> for Mat4x3<T> where
    T: Copy
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl<T> IndexMut<(usize, usize)> for Mat4x3<T> where
    T: Copy
[src]

The method for the mutable indexing (container[index]) operation

impl<T> Neg for Mat4x3<T> where
    T: Copy + Num + Signed
[src]

The resulting type after applying the - operator

The method for the unary - operator

impl<T> Add for Mat4x3<T> where
    T: Copy + Num + Add<Output = T>, 
[src]

The resulting type after applying the + operator

The method for the + operator

impl<T> Sub for Mat4x3<T> where
    T: Copy + Num + Sub<Output = T>, 
[src]

The resulting type after applying the - operator

The method for the - operator

impl<T> Mul for Mat4x3<T> where
    T: Copy + Num + Mul<Output = T>, 
[src]

The resulting type after applying the * operator

The method for the * operator

impl<T> Div for Mat4x3<T> where
    T: Copy + Num + Div<Output = T>, 
[src]

The resulting type after applying the / operator

The method for the / operator

impl<T> Rem for Mat4x3<T> where
    T: Copy + Num + Rem<Output = T>, 
[src]

The resulting type after applying the % operator

The method for the % operator

impl<T> Mul<T> for Mat4x3<T> where
    T: Copy + Num + Mul<Output = T>, 
[src]

The resulting type after applying the * operator

The method for the * operator

impl<T> Div<T> for Mat4x3<T> where
    T: Copy + Num + Div<Output = T>, 
[src]

The resulting type after applying the / operator

The method for the / operator

impl<T> Rem<T> for Mat4x3<T> where
    T: Copy + Num + Rem<Output = T>, 
[src]

The resulting type after applying the % operator

The method for the % operator

impl<T> AddAssign<Mat4x3<T>> for Mat4x3<T> where
    T: Copy + Num + Add<Output = T>, 
[src]

The method for the += operator

impl<T> SubAssign<Mat4x3<T>> for Mat4x3<T> where
    T: Copy + Num + Sub<Output = T>, 
[src]

The method for the -= operator

impl<T> MulAssign<Mat4x3<T>> for Mat4x3<T> where
    T: Copy + Num + Mul<Output = T>, 
[src]

The method for the *= operator

impl<T> DivAssign<Mat4x3<T>> for Mat4x3<T> where
    T: Copy + Num + Div<Output = T>, 
[src]

The method for the /= operator

impl<T> RemAssign<Mat4x3<T>> for Mat4x3<T> where
    T: Copy + Num + Rem<Output = T>, 
[src]

The method for the %= operator

impl<T> MulAssign<T> for Mat4x3<T> where
    T: Copy + Num + Mul<Output = T>, 
[src]

The method for the *= operator

impl<T> DivAssign<T> for Mat4x3<T> where
    T: Copy + Num + Div<Output = T>, 
[src]

The method for the /= operator

impl<T> RemAssign<T> for Mat4x3<T> where
    T: Copy + Num + Rem<Output = T>, 
[src]

The method for the %= operator

impl<T> Zero for Mat4x3<T> where
    T: Copy + Num + Zero
[src]

Returns the additive identity element of Self, 0. Read more

Returns true if self is equal to the additive identity.

impl<T> Dot<Vec4<T>> for Mat4x3<T> where
    T: Copy + Num
[src]

impl<T> Dot<Mat2x4<T>> for Mat4x3<T> where
    T: Copy + Num
[src]

impl<T> Dot<Mat3x4<T>> for Mat4x3<T> where
    T: Copy + Num
[src]

impl<T> Dot<Mat4x4<T>> for Mat4x3<T> where
    T: Copy + Num
[src]