TransformMakeWithMatrixAsList

Typeoperator
DictionaryLCB
LibraryLiveCode Builder
Syntax
transform with matrix <mMatrix>
Associationscom.livecode.canvas
Summary

Creates a new transform. mTranslation:An expression which evaluates to a list of 6 numbers, the a, b, c, d, tx and ty values of the transform matrix.

Example
// Create combined rotate, scale, and translate transform
variable tTransform
put transform with matrix [0, 2, -2, 0, 50, 100] into tTransform
Values
NameTypeDescription
return

A new translation transform.

Description

Creates a new transform. mTranslation:An expression which evaluates to a list of 6 numbers, the a, b, c, d, tx and ty values of the transform matrix.

Tagscanvas