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

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

Implementations

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]

pub fn inverse(self) -> Option<Self>[src]

Trait Implementations

impl Clone for Mat2d[src]

impl Copy for Mat2d[src]

impl Debug for Mat2d[src]

impl Default for Mat2d[src]

impl<'de> Deserialize<'de> for Mat2d[src]

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

impl From<(f32, f32, f32, f32, f32, f32)> for Mat2d[src]

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

impl Into<(f32, f32, f32, f32, f32, f32)> for Mat2d[src]

impl Mul<Mat2d> for Mat2d[src]

type Output = Self

The resulting type after applying the * operator.

impl Mul<Mat2d> for Vec2[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 Not for Mat2d[src]

type Output = Option<Self>

The resulting type after applying the ! operator.

impl PartialEq<Mat2d> for Mat2d[src]

impl Serialize for Mat2d[src]

impl StructuralPartialEq for Mat2d[src]

Auto Trait Implementations

impl RefUnwindSafe for Mat2d

impl Send for Mat2d

impl Sync for Mat2d

impl Unpin for Mat2d

impl UnwindSafe for Mat2d

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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

impl<T> Resource for T where
    T: Any, 

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryDefault for T where
    T: Default

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<V, T> VZip<V> for T where
    V: MultiLane<T>,