The Transform class represents a 2D transformation matrix, used to apply rotations, scaling, skewing, and translation to objects.

Transform 类表示一个2D变换矩阵,用于对对象应用旋转、缩放、倾斜和位移。

构造函数

属性

scX: number = 1

The scaling factor along the X-axis.

沿X轴的缩放系数。

scY: number = 1

The scaling factor along the Y-axis.

沿Y轴的缩放系数。

skewX: number = 0

The skew angle along the X-axis (in degrees).

沿X轴的倾斜角度(以度为单位)。

skewY: number = 0

The skew angle along the Y-axis (in degrees).

沿Y轴的倾斜角度(以度为单位)。

skX: number = 0

The rotation angle around the X-axis (in degrees).

绕X轴旋转的角度(以度为单位)。

skY: number = 0

The rotation angle around the Y-axis (in degrees).

绕Y轴旋转的角度(以度为单位)。

x: number = 0

The translation along the X-axis.

沿X轴的平移。

y: number = 0

The translation along the Y-axis.

沿Y轴的平移。

方法

  • 参数

    • data: any

      The data object containing transformation properties.

    返回 void

    Initializes the transform data with the provided values.

    使用提供的数据初始化变换。

  • 参数

    • m: Matrix

      The matrix to apply the skew transformation to.

    • x: number

      The horizontal skew angle, in radians.

    • y: number

      The vertical skew angle, in radians.

    返回 Matrix

    The modified matrix with skew applied.

    Applies skew to the matrix based on the given angles.

    根据给定的角度对矩阵应用倾斜。