[][src]Struct quicksilver::geom::Transform

pub struct Transform(_);

A 2D transformation represented by a matrix

Transforms can be composed together through matrix multiplication, and are applied to Vectors through multiplication, meaning the notation used is the '*' operator. A property of matrix multiplication is that for some matrices A, B, C and vector V is

Transform = A * B * C
Transform * V = A * (B * (C * V))

This property allows encoding multiple transformations in a single matrix. A transformation that involves rotating a shape 30 degrees and then moving it six units up could be written as

use quicksilver::geom::{Transform, Vector};
let transform = Transform::rotate(30) * Transform::translate(Vector::new(0, -6));

and then applied to a Vector

transform * Vector::new(5, 5)

Methods

impl Transform[src]

pub const IDENTITY: Transform[src]

The identity transformation

pub fn rotate<T: Scalar>(angle: T) -> Transform[src]

Create a rotation transformation

pub fn translate(vec: impl Into<Vector>) -> Transform[src]

Create a translation transformation

pub fn scale(vec: impl Into<Vector>) -> Transform[src]

Create a scale transformation

pub fn orthographic(rect: Rectangle) -> Transform[src]

Create an orthographic projection

pub fn then(self, next: Transform) -> Transform[src]

#[must_use]pub fn inverse(&self) -> Transform[src]

Find the inverse of a Transform

A transform's inverse will cancel it out when multplied with it, as seen below:

let transform = Transform::translate(Vector::new(4, 5));
let inverse = transform.inverse();
let vector = Vector::new(10, 10);
assert_eq!(vector, transform * inverse * vector);
assert_eq!(vector, inverse * transform * vector);

Trait Implementations

impl Add<Transform> for Transform[src]

Add the values of two transforms together

Note you probably want Mul to combine Transforms. Addition is only useful in less common use cases like interpolation

type Output = Transform

The resulting type after applying the + operator.

impl AddAssign<Transform> for Transform[src]

Uses the impl Add<Transform> for Transform internally

impl Clone for Transform[src]

impl Copy for Transform[src]

impl Debug for Transform[src]

impl Default for Transform[src]

impl Display for Transform[src]

impl Eq for Transform[src]

impl From<[[f32; 3]; 3]> for Transform[src]

impl From<RowMatrix3<f32>> for Transform[src]

impl Into<[[f32; 3]; 3]> for Transform[src]

impl Into<RowMatrix3<f32>> for Transform[src]

impl<T: Scalar> Mul<T> for Transform[src]

Scale all of the internal values of the Transform matrix

Note this will NOT scale vectors multiplied by this transform, and generally you shouldn't need to use this.

type Output = Transform

The resulting type after applying the * operator.

impl Mul<Transform> for Transform[src]

Concat two transforms A and B such that A * B * v = A * (B * v)

type Output = Transform

The resulting type after applying the * operator.

impl Mul<Vector> for Transform[src]

Transform a vector

type Output = Vector

The resulting type after applying the * operator.

impl<T: Scalar> MulAssign<T> for Transform[src]

Uses the impl<T: Scalar> Mul<T> for Transform internally.

impl MulAssign<Transform> for Transform[src]

Uses the impl Mul<Transform> for Transform internally.

impl PartialEq<Transform> for Transform[src]

impl Sub<Transform> for Transform[src]

Subtract the values of one transform from another

Note you probably want Mul to combine Transforms. Subtraction is only useful in less common use cases like interpolation

type Output = Transform

The resulting type after applying the - operator.

impl SubAssign<Transform> for Transform[src]

Uses the impl Sub<Transform> for Transform internally

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> ToString for T where
    T: Display + ?Sized
[src]

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.