[][src]Struct iced_graphics::Transformation

pub struct Transformation(_);

A 2D transformation matrix.

Implementations

impl Transformation[src]

pub fn identity() -> Transformation[src]

Get the identity transformation.

pub fn orthographic(width: u32, height: u32) -> Transformation[src]

Creates an orthographic projection.

pub fn translate(x: f32, y: f32) -> Transformation[src]

Creates a translate transformation.

pub fn scale(x: f32, y: f32) -> Transformation[src]

Creates a scale transformation.

Trait Implementations

impl AsRef<[f32; 16]> for Transformation[src]

impl Clone for Transformation[src]

impl Copy for Transformation[src]

impl Debug for Transformation[src]

impl From<Transformation> for [f32; 16][src]

impl Mul<Transformation> for Transformation[src]

type Output = Self

The resulting type after applying the * operator.

impl PartialEq<Transformation> for Transformation[src]

impl StructuralPartialEq for Transformation[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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