TransformOperationSkew |
Type | statement |
Dictionary | LCB |
Library | LiveCode Builder |
Syntax | skew <mTransform> by <mSkew>
|
Associations | com.livecode.canvas |
Summary | Apply a skew to a transform.
|
Parameters | Name | Type | Description |
---|
mTransform | | An expression which evaluates to a transform.
|
mSkew | | An expression which evaluates to a list of 2 numbers, the x-axis skew and y-axis skew.
|
|
Example | variable tTransform
put the identity transform into tTransform
skew tTransform by [1, 0]
|
Description | Apply the given skew to mTransform
|
Tags | canvas |