[][src]Struct oxygengine_composite_renderer::math::Mat2d

pub struct Mat2d(pub [Scalar; 6]);

Methods

impl Mat2d[src]

pub fn new(cells: [Scalar; 6]) -> Self[src]

pub fn translation(value: Vec2) -> Self[src]

pub fn rotation(value: Scalar) -> Self[src]

pub fn scale(value: Vec2) -> Self[src]

Trait Implementations

impl Copy for Mat2d[src]

impl PartialEq<Mat2d> for Mat2d[src]

impl Default for Mat2d[src]

impl Clone for Mat2d[src]

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

Performs copy-assignment from source. Read more

impl From<[f32; 6]> for Mat2d[src]

impl Into<[f32; 6]> for Mat2d[src]

impl Debug for Mat2d[src]

impl Mul<Mat2d> for Mat2d[src]

type Output = Self

The resulting type after applying the * operator.

impl Mul<Vec2> for Mat2d[src]

type Output = Vec2

The resulting type after applying the * operator.

impl Mul<Mat2d> for Vec2[src]

type Output = Self

The resulting type after applying the * operator.

impl Not for Mat2d[src]

type Output = Option<Self>

The resulting type after applying the ! operator.

Auto Trait Implementations

impl Send for Mat2d

impl Sync for Mat2d

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<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, 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.

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

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

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

impl<T> Any for T where
    T: Any

impl<T> Resource for T where
    T: Any + Send + Sync

impl<T> TryDefault for T where
    T: Default

fn unwrap_default() -> Self

Calls try_default and panics on an error case.

impl<T> Event for T where
    T: Send + Sync + 'static, 

impl<T> Erased for T