Struct cosmic_text::Transform

source ·
pub struct Transform {
    pub xx: f32,
    pub xy: f32,
    pub yx: f32,
    pub yy: f32,
    pub x: f32,
    pub y: f32,
}
Expand description

Two dimensional transformation matrix.

Fields§

§xx: f32§xy: f32§yx: f32§yy: f32§x: f32§y: f32

Implementations§

source§

impl Transform

source

pub const IDENTITY: Transform = _

Identity matrix.

source

pub fn new(xx: f32, xy: f32, yx: f32, yy: f32, x: f32, y: f32) -> Transform

Creates a new transform.

source

pub fn translation(x: f32, y: f32) -> Transform

Creates a translation transform.

source

pub fn rotation(angle: Angle) -> Transform

Creates a rotation transform.

source

pub fn rotation_about(point: impl Into<Vector>, angle: Angle) -> Transform

Creates a rotation transform around a point.

source

pub fn scale(x: f32, y: f32) -> Transform

Creates a scale transform.

source

pub fn skew(x: Angle, y: Angle) -> Transform

Creates a skew transform.

source

pub fn then(&self, other: &Transform) -> Transform

Returns a new transform that represents the application of this transform followed by other.

source

pub fn pre_translate(&self, x: f32, y: f32) -> Transform

Returns a new transform that represents a translation followed by this transform.

source

pub fn then_translate(&self, x: f32, y: f32) -> Transform

Returns a new transform that represents this transform followed by a translation.

source

pub fn pre_rotate(&self, angle: Angle) -> Transform

Returns a new transform that represents a rotation followed by this transform.

source

pub fn then_rotate(&self, angle: Angle) -> Transform

Returns a new transform that represents this transform followed by a rotation.

source

pub fn pre_scale(&self, x: f32, y: f32) -> Transform

Returns a new transform that represents a scale followed by this transform.

source

pub fn then_scale(&self, x: f32, y: f32) -> Transform

Returns a new transform that represents this transform followed by a scale.

source

pub fn determinant(&self) -> f32

Returns the determinant of the transform.

source

pub fn invert(&self) -> Option<Transform>

Returns the inverse of the transform, if any.

source

pub fn transform_point(&self, point: Vector) -> Vector

Returns the result of applying this transform to a point.

source

pub fn transform_vector(&self, vector: Vector) -> Vector

Returns the result of applying this transform to a vector.

Trait Implementations§

source§

impl Clone for Transform

source§

fn clone(&self) -> Transform

Returns a copy 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 Debug for Transform

source§

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

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

impl Default for Transform

source§

fn default() -> Transform

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

impl Copy for Transform

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> 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> ToOwned for T
where T: Clone,

§

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>,

§

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>,

§

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.