# Matrix2DCreationDict
Simple object passed to createMatrix2D to initialize a matrix.
NOTE
This is an abstract type. Any object of this structure can be used where this type is used.
# Overview
The matrix is initialized with the specified transforms.
On iOS, rotation is always performed first, regardless of the order the properties are specified in.
On Android, specifying both scale
and rotate
the same dictionary results
in an incorrect transformation.
# Properties
# anchorPoint
Point to rotate around, specified as a dictionary object with x
and y
properties, where { x: 0.5, y: 0.5 } represents the center of whatever is being
rotated.
Default: (0.5, 0.5)
# rotate
Rotation angle, in degrees. See the rotate method for a discussion of rotation.
Default: No rotation.
# scale
Scale the matrix by the specified scaling factor. The same scaling factor is used for both horizontal and vertical scaling.
Default: 1