Skip to main content

Matrix

Struct Matrix 

Source
pub struct Matrix {
    pub a: f64,
    pub b: f64,
    pub c: f64,
    pub d: f64,
    pub tx: f64,
    pub ty: f64,
}
Expand description

Affine transformation matrix [a, b, c, d, tx, ty].

Transforms point (x, y) to: x’ = ax + cy + tx y’ = bx + dy + ty

Fields§

§a: f64§b: f64§c: f64§d: f64§tx: f64§ty: f64

Implementations§

Source§

impl Matrix

Source

pub fn identity() -> Matrix

Identity matrix.

Source

pub fn new(a: f64, b: f64, c: f64, d: f64, tx: f64, ty: f64) -> Matrix

Create from 6 components.

Source

pub fn translate(tx: f64, ty: f64) -> Matrix

Translation matrix.

Source

pub fn scale(sx: f64, sy: f64) -> Matrix

Scaling matrix.

Source

pub fn rotate(angle: f64) -> Matrix

Rotation matrix (angle in degrees).

Source

pub fn multiply(&self, other: &Matrix) -> Matrix

Column-vector multiply: self × other.

Composes two transforms: the result applies other first, then self.

Source

pub fn concat(&self, other: &Matrix) -> Matrix

PostScript concat: CTM = other × CTM (row-vector convention).

Uses column-vector multiply internally: self.multiply(other).

Source

pub fn transform_point(&self, x: f64, y: f64) -> (f64, f64)

Transform a point.

Source

pub fn transform_delta(&self, dx: f64, dy: f64) -> (f64, f64)

Transform a delta (no translation).

Source

pub fn determinant(&self) -> f64

Determinant.

Source

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

Inverse matrix, or None if singular.

Source

pub fn to_array(&self) -> [f64; 6]

Convert to [a, b, c, d, tx, ty] array.

Trait Implementations§

Source§

impl Clone for Matrix

Source§

fn clone(&self) -> Matrix

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 Debug for Matrix

Source§

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

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

impl Copy for Matrix

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> Same for T

Source§

type Output = T

Should always be Self
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.