Struct onyx::math::Mat4 [] [src]

pub struct Mat4<R: Real = f32> { /* fields omitted */ }

Methods

impl<R: Real> Mat4<R>
[src]

Trait Implementations

impl<R: Copy + Real> Copy for Mat4<R>
[src]

impl<R: Clone + Real> Clone for Mat4<R>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<R: Debug + Real> Debug for Mat4<R>
[src]

Formats the value using the given formatter.

impl<R: Real> Index<(usize, usize)> for Mat4<R>
[src]

The returned type after indexing

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

impl<R: Real> IndexMut<(usize, usize)> for Mat4<R>
[src]

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

impl<R: Real> Add<Self> for Mat4<R>
[src]

The resulting type after applying the + operator

The method for the + operator

impl<R: Real> AddAssign<Self> for Mat4<R>
[src]

The method for the += operator

impl<R: Real> Sub<Self> for Mat4<R>
[src]

The resulting type after applying the - operator

The method for the - operator

impl<R: Real> SubAssign<Self> for Mat4<R>
[src]

The method for the -= operator

impl<R: Real> Mul<Self> for Mat4<R>
[src]

The resulting type after applying the * operator

The method for the * operator

impl<R: Real> From<Elements<R>> for Mat4<R>
[src]

Performs the conversion.