TransformOperationSkew

Typestatement
DictionaryLCB
LibraryLiveCode Builder
Syntax
skew <mTransform> by <mSkew>
Associationscom.livecode.canvas
Summary

Apply a skew to a transform.

Parameters
NameTypeDescription
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
// Create a new transform
put the identity transform into tTransform
// Apply a skew to the transform
skew tTransform by [1, 0]
Description

Apply the given skew to mTransform

Tagscanvas