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]

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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.

[src]

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

[src]

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

[src]

Drop the units, preserving only the numeric value.

[src]

Tag a unitless value with units.

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

[src]

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]

[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]

[src]

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

[src]

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

[src]

Returns a translation transform.

[src]

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

[src]

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

[src]

Returns a scale transform.

[src]

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

[src]

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

[src]

Returns a rotation transform.

[src]

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

[src]

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

[src]

Returns the given point transformed by this transform.

[src]

Returns the given vector transformed by this matrix.

[src]

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

[src]

Computes and returns the determinant of this transform.

[src]

Returns the inverse transform if possible.

[src]

Returns the same transform with a different destination unit.

[src]

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]

[src]

Create a 3D transform from the current transform

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

[src]

Trait Implementations

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

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]

[src]

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

1.0.0
[src]

This method tests for !=.

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

[src]

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

1.3.0
[src]

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

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

[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