Struct euclid::TypedTransform2D[][src]

#[repr(C)]
pub struct TypedTransform2D<T, Src, Dst> { pub m11: T, pub m12: T, pub m21: T, pub m22: T, pub m31: T, pub m32: T, // some fields omitted }

A 2d transform stored as a 3 by 2 matrix in row-major order in memory.

Transforms can be parametrized over the source and destination units, to describe a transformation from a space to another. For example, TypedTransform2D<f32, WorldSpace, ScreenSpace>::transform_point4d takes a TypedPoint2D<f32, WorldSpace> and returns a TypedPoint2D<f32, ScreenSpace>.

Transforms expose a set of convenience methods for pre- and post-transformations. A pre-transformation corresponds to adding an operation that is applied before the rest of the transformation, while a post-transformation adds an operation that is applied after.

Fields

Methods

impl<T: Copy, Src, Dst> TypedTransform2D<T, Src, Dst>
[src]

Create a transform specifying its matrix elements in row-major order.

Create a transform specifying its matrix elements in column-major order.

Returns an array containing this transform's terms in row-major order (the order in which the transform is actually laid out in memory).

Returns an array containing this transform's terms in column-major order.

Returns an array containing this transform's 3 rows in (in row-major order) as arrays.

This is a convenience method to interface with other libraries like glium.

Creates a transform from an array of 6 elements in row-major order.

Creates a transform from 3 rows of 2 elements (row-major order).

Drop the units, preserving only the numeric value.

Tag a unitless value with units.

impl<T0: NumCast + Copy, Src, Dst> TypedTransform2D<T0, Src, Dst>
[src]

Cast from one numeric representation to another, preserving the units.

Fallible cast from one numeric representation to another, preserving the units.

impl<T, Src, Dst> TypedTransform2D<T, Src, Dst> where
    T: Copy + PartialEq + One + Zero
[src]

impl<T, Src, Dst> TypedTransform2D<T, Src, Dst> where
    T: Copy + Clone + Add<T, Output = T> + Mul<T, Output = T> + Div<T, Output = T> + Sub<T, Output = T> + Trig + PartialOrd + One + Zero
[src]

Returns the multiplication of the two matrices such that mat's transformation applies after self's transformation.

Returns the multiplication of the two matrices such that mat's transformation applies before self's transformation.

Returns a translation transform.

Applies a translation after self's transformation and returns the resulting transform.

Applies a translation before self's transformation and returns the resulting transform.

Returns a scale transform.

Applies a scale after self's transformation and returns the resulting transform.

Applies a scale before self's transformation and returns the resulting transform.

Returns a rotation transform.

Applies a rotation after self's transformation and returns the resulting transform.

Applies a rotation after self's transformation and returns the resulting transform.

Returns the given point transformed by this transform.

Returns the given vector transformed by this matrix.

Returns a rectangle that encompasses the result of transforming the given rectangle by this transform.

Computes and returns the determinant of this transform.

Returns the inverse transform if possible.

Returns the same transform with a different destination unit.

Returns the same transform with a different source unit.

impl<T, Src, Dst> TypedTransform2D<T, Src, Dst> where
    T: Copy + Clone + Add<T, Output = T> + Sub<T, Output = T> + Mul<T, Output = T> + Div<T, Output = T> + Neg<Output = T> + PartialOrd + Trig + One + Zero
[src]

Create a 3D transform from the current transform

impl<T: ApproxEq<T>, Src, Dst> TypedTransform2D<T, Src, Dst>
[src]

Trait Implementations

impl<T: Clone, Src, Dst> Clone for TypedTransform2D<T, Src, Dst>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Copy, Src, Dst> Copy for TypedTransform2D<T, Src, Dst>
[src]

impl<T, Src, Dst> Eq for TypedTransform2D<T, Src, Dst> where
    T: Eq
[src]

impl<T, Src, Dst> PartialEq for TypedTransform2D<T, Src, Dst> where
    T: PartialEq
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T, Src, Dst> Hash for TypedTransform2D<T, Src, Dst> where
    T: Hash
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl<T, Src, Dst> Default for TypedTransform2D<T, Src, Dst> where
    T: Copy + PartialEq + One + Zero
[src]

Returns the "default value" for a type. Read more

impl<T: Copy + Debug, Src, Dst> Debug for TypedTransform2D<T, Src, Dst> where
    T: Copy + Debug + PartialEq + One + Zero
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T, Src, Dst> Send for TypedTransform2D<T, Src, Dst> where
    Dst: Send,
    Src: Send,
    T: Send

impl<T, Src, Dst> Sync for TypedTransform2D<T, Src, Dst> where
    Dst: Sync,
    Src: Sync,
    T: Sync