Struct style::properties::animated_properties::MatrixDecomposed2D [] [src]

pub struct MatrixDecomposed2D {
    pub translate: Translate2D,
    pub scale: Scale2D,
    pub angle: f32,
    pub matrix: InnerMatrix2D,
}

A decomposed 2d matrix.

Fields

The translation function.

The scale function.

The rotation angle.

The inner matrix.

Trait Implementations

impl Clone for MatrixDecomposed2D
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for MatrixDecomposed2D
[src]

impl Debug for MatrixDecomposed2D
[src]

[src]

Formats the value using the given formatter. Read more

impl MallocSizeOf for MatrixDecomposed2D
[src]

[src]

Measure the heap usage of all descendant heap-allocated structures, but not the space taken up by the value itself. Read more

impl Animate for MatrixDecomposed2D
[src]

[src]

impl ComputeSquaredDistance for MatrixDecomposed2D
[src]

[src]

Computes the squared distance between two animatable values.

impl From<Matrix3D> for MatrixDecomposed2D
[src]

[src]

impl From<MatrixDecomposed2D> for Matrix3D
[src]

[src]