[][src]Struct ultraviolet::Mat4

pub struct Mat4 {
    pub cols: [Vec4; 4],
}

Fields

cols: [Vec4; 4]

Methods

impl Mat4[src]

pub fn new(col1: Vec4, col2: Vec4, col3: Vec4, col4: Vec4) -> Self[src]

Trait Implementations

impl Clone for Mat4[src]

impl Copy for Mat4[src]

impl Debug for Mat4[src]

impl Mul<Vec4> for Mat4[src]

type Output = Vec4

The resulting type after applying the * operator.

Auto Trait Implementations

impl Send for Mat4

impl Sync for Mat4

impl Unpin for Mat4

impl UnwindSafe for Mat4

impl RefUnwindSafe for Mat4

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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