MatrixCreationDict

Simple object passed to Titanium.UI.create2DMatrix to initialize a matrix.

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.

  • 0.8
  • 0.8
  • 0.8

NOTE This is an abstract type. Any object meeting this description can be used where this type is used.

Defined By

Properties

MatrixCreationDict
: Dictionary
Point to rotate around, specified as a dictionary object with x and y properties, where { x: 0.5, y: 0.5 } represents...

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)

  • 0.8
MatrixCreationDict
: Number
Rotation angle, in degrees. ...

Rotation angle, in degrees. See the rotate method for a discussion of rotation.

Default: No rotation.

MatrixCreationDict
: Number
Scale the matrix by the specified scaling factor. ...

Scale the matrix by the specified scaling factor. The same scaling factor is used for both horizontal and vertical scaling.

Default: 1