Struct Transform2D

Source
pub struct Transform2D {
    pub previous: Option<Box<Transform2D>>,
    pub rotate: Option<Rotation>,
    pub translate: Option<[Size; 2]>,
    pub anchor: Option<[Size; 2]>,
    pub scale: Option<[Size; 2]>,
    pub skew: Option<[Rotation; 2]>,
}
Expand description

A sugary representation of an Affine transform+, including anchor and align as layout-computed properties.

translate represents an (x,y) affine translation scale represents an (x,y) non-uniform affine scale rotate represents a (z) affine rotation (intuitive 2D rotation) anchor represents the “(0,0)” point of the render node as it relates to its own bounding box. By default that’s the top-left of the element, but anchor allows that to be offset either by a pixel or percentage-of-element-size for each of (x,y)

Fields§

§previous: Option<Box<Transform2D>>

Keeps track of a linked list of previous Transform2Ds, assembled e.g. via multiplication

§rotate: Option<Rotation>

Rotation is single-dimensional for 2D rendering, representing rotation over z axis

§translate: Option<[Size; 2]>§anchor: Option<[Size; 2]>§scale: Option<[Size; 2]>§skew: Option<[Rotation; 2]>

Implementations§

Source§

impl Transform2D

Source

pub fn scale(x: Size, y: Size) -> Self

Scale coefficients (1.0 == 100%) over x-y plane

Source

pub fn rotate(z: Rotation) -> Self

Rotation over z axis

Source

pub fn translate(x: Size, y: Size) -> Self

Translation across x-y plane, pixels

Source

pub fn anchor(x: Size, y: Size) -> Self

Describe alignment of the (0,0) position of this element as it relates to its own bounding box

Trait Implementations§

Source§

impl Clone for Transform2D

Source§

fn clone(&self) -> Transform2D

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl CoercionRules for Transform2D

Source§

impl Debug for Transform2D

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Transform2D

Source§

fn default() -> Transform2D

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Transform2D

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl HelperFunctions for Transform2D

Source§

impl Interpolatable for Transform2D

Source§

fn interpolate(&self, _other: &Self, _t: f64) -> Self

Source§

impl Mul for Transform2D

Source§

type Output = Transform2D

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Self) -> Self::Output

Performs the * operation. Read more
Source§

impl Serialize for Transform2D

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl ToPaxValue for Transform2D

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> RoundFrom<T> for T

Source§

fn round_from(x: T) -> T

Performs the conversion.
Source§

impl<T, U> RoundInto<U> for T
where U: RoundFrom<T>,

Source§

fn round_into(self) -> U

Performs the conversion.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

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

Source§

impl<T> PropertyValue for T
where T: Default + Clone + Interpolatable + 'static,