#[repr(C)]
pub struct DAffine2 { pub matrix2: DMat2, pub translation: DVec2, }
Expand description

A 2D affine transform, which can represent translation, rotation, scaling and shear.

Fields

matrix2: DMat2translation: DVec2

Implementations

The degenerate zero transform.

This transforms any finite vector and point to zero. The zero transform is non-invertible.

The identity transform.

Multiplying a vector with this returns the same vector.

All NAN:s.

Creates an affine transform from three column vectors.

Creates an affine transform from a [f64; 6] array stored in column major order.

Creates a [f64; 6] array storing data in column major order.

Creates an affine transform from a [[f64; 2]; 3] 2D array stored in column major order. If your data is in row major order you will need to transpose the returned matrix.

Creates a [[f64; 2]; 3] 2D array storing data in column major order. If you require data in row major order transpose the matrix first.

Creates an affine transform from the first 6 values in slice.

Panics

Panics if slice is less than 6 elements long.

Writes the columns of self to the first 6 elements in slice.

Panics

Panics if slice is less than 6 elements long.

Creates an affine transform that changes scale. Note that if any scale is zero the transform will be non-invertible.

Creates an affine transform from the given rotation angle.

Creates an affine transformation from the given 2D translation.

Creates an affine transform from a 2x2 matrix (expressing scale, shear and rotation)

Creates an affine transform from a 2x2 matrix (expressing scale, shear and rotation) and a translation vector.

Equivalent to DAffine2::from_translation(translation) * DAffine2::from_mat2(mat2)

Creates an affine transform from the given 2D scale, rotation angle (in radians) and translation.

Equivalent to DAffine2::from_translation(translation) * DAffine2::from_angle(angle) * DAffine2::from_scale(scale)

Creates an affine transform from the given 2D rotation angle (in radians) and translation.

Equivalent to DAffine2::from_translation(translation) * DAffine2::from_angle(angle)

The given DMat3 must be an affine transform,

Transforms the given 2D point, applying shear, scale, rotation and translation.

Transforms the given 2D vector, applying shear, scale and rotation (but NOT translation).

To also apply translation, use Self::transform_point2 instead.

Returns true if, and only if, all elements are finite.

If any element is either NaN, positive or negative infinity, this will return false.

Returns true if any elements are NaN.

Returns true if the absolute difference of all elements between self and rhs is less than or equal to max_abs_diff.

This can be used to compare if two 3x4 matrices contain similar elements. It works best when comparing with a known value. The max_abs_diff that should be used used depends on the values being compared against.

For more see comparing floating point numbers.

Return the inverse of this transform.

Note that if the transform is not invertible the result will be invalid.

Trait Implementations

The resulting type after applying the + operator.

Performs the + operation. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

The resulting type after dereferencing.

Dereferences the value.

Mutably dereferences the value.

Formats the value using the given formatter. Read more

Converts to this type from the input type.

The resulting type after applying the * operator.

Performs the * operation. Read more

The resulting type after applying the * operator.

Performs the * operation. Read more

The resulting type after applying the * operator.

Performs the * operation. Read more

The resulting type after applying the * operator.

Performs the * operation. Read more

The resulting type after applying the * operator.

Performs the * operation. Read more

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

This method tests for !=.

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

The resulting type after applying the - operator.

Performs the - operation. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.