Struct ttf_parser::Transform

source ·
pub struct Transform {
    pub a: f32,
    pub b: f32,
    pub c: f32,
    pub d: f32,
    pub e: f32,
    pub f: f32,
}
Expand description

An affine transform.

Fields§

§a: f32

The ‘a’ component of the transform.

§b: f32

The ‘b’ component of the transform.

§c: f32

The ‘c’ component of the transform.

§d: f32

The ‘d’ component of the transform.

§e: f32

The ‘e’ component of the transform.

§f: f32

The ‘f’ component of the transform.

Implementations§

source§

impl Transform

source

pub fn new(a: f32, b: f32, c: f32, d: f32, e: f32, f: f32) -> Self

Creates a new transform with the specified components.

source

pub fn new_translate(tx: f32, ty: f32) -> Self

Creates a new translation transform.

source

pub fn new_rotate(angle: f32) -> Self

Creates a new rotation transform.

source

pub fn new_skew(skew_x: f32, skew_y: f32) -> Self

Creates a new skew transform.

source

pub fn new_scale(sx: f32, sy: f32) -> Self

Creates a new scale transform.

source

pub fn combine(ts1: Self, ts2: Self) -> Self

Combines two transforms with each other.

source

pub fn is_default(&self) -> bool

Checks whether a transform is the identity transform.

Trait Implementations§

source§

impl Clone for Transform

source§

fn clone(&self) -> Transform

Returns a copy of the value. Read more
1.0.0§

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

Performs copy-assignment from source. Read more
source§

impl Debug for Transform

source§

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

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

impl Default for Transform

source§

fn default() -> Self

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

impl PartialEq for Transform

source§

fn eq(&self, other: &Transform) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Transform

source§

impl StructuralPartialEq for Transform

Auto Trait Implementations§

§

impl Freeze for Transform

§

impl RefUnwindSafe for Transform

§

impl Send for Transform

§

impl Sync for Transform

§

impl Unpin for Transform

§

impl UnwindSafe for Transform

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

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

§

unsafe fn clone_to_uninit(&self, dst: *mut T)

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

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn into(self) -> U

Calls U::from(self).

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

§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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

§

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

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

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

Performs the conversion.