Represents a transformation matrix that determines how to map points from one coordinate space to another. You can perform various graphical transformations on a display object by setting the properties of a Matrix object, applying it to the matrix property of a Transform object, and then applying that Transform object as the transform property of the display object. These transformation functions include translation (x and y repositioning), rotation, scaling, and skewing.

表示一个转换矩阵,它确定如何将点从一个坐标空间映射到另一个坐标空间。 您可以对一个显示对象执行不同的图形转换,方法是设置 Matrix 对象的属性,将该 Matrix 对象应用于 Transform 对象的 matrix 属性, 然后应用该 Transform 对象作为显示对象的 transform 属性。这些转换函数包括平移(x 和 y 重新定位)、旋转、缩放和倾斜。

构造函数

  • 参数

    • a: number = 1

      (Optional) The value that affects the positioning of pixels along the x axis when scaling or rotating an image.

    • b: number = 0

      (Optional) The value that affects the positioning of pixels along the y axis when rotating or skewing an image.

    • c: number = 0

      (Optional) The value that affects the positioning of pixels along the x axis when rotating or skewing an image.

    • d: number = 1

      (Optional) The value that affects the positioning of pixels along the y axis when scaling or rotating an image.

    • tx: number = 0

      (Optional) The distance by which to translate each point along the x axis.

    • ty: number = 0

      (Optional) The distance by which to translate each point along the y axis.

    • nums: number = 0

      (Optional) Additional parameter.

    返回 Matrix

    Constructs method, initialize matrix.

    构造方法,初始化矩阵。

属性

a: number

The value that affects the positioning of pixels along the x axis when scaling or rotating an image.

缩放或旋转图像时影响像素沿 x 轴定位的值。

b: number

The value that affects the positioning of pixels along the y axis when rotating or skewing an image.

旋转或倾斜图像时影响像素沿 y 轴定位的值。

c: number

The value that affects the positioning of pixels along the x axis when rotating or skewing an image.

旋转或倾斜图像时影响像素沿 x 轴定位的值。

d: number

The value that affects the positioning of pixels along the y axis when scaling or rotating an image.

缩放或旋转图像时影响像素沿 y 轴定位的值。

tx: number

The distance by which to translate each point along the x axis.

沿 x 轴平移每个点的距离。

ty: number

The distance by which to translate each point along the y axis.

沿 y 轴平移每个点的距离。

TEMP: Matrix = ...

A Matrix object used for temporary operations.

用于中转使用的 Matrix 对象。

方法

  • 参数

    • matrix: Matrix

      The matrix to be concatenated to the source matrix.

    返回 Matrix

    The current matrix.

    Concatenates the specified matrix with the current matrix, effectively combining the geometric effects of the two.

    将指定矩阵与当前矩阵连接,从而将这两个矩阵的几何效果有效地结合在一起。

  • 参数

    • dec: Matrix

      The Matrix object to copy the current matrix data to.

    返回 Matrix

    The Matrix object with the copied matrix data.

    Copy all matrix data from the current Matrix object to the specified Matrix object.

    将当前 Matrix 对象中的所有矩阵数据复制到指定的 Matrix 对象中。

  • 参数

    • out: Point

      The Point object to be transformed.

    返回 Point

    The transformed out Point object.

    Applies the inverse transformation of the current matrix to the specified point and returns this point.

    对指定的点应用当前矩阵的逆转化并返回此点。

  • 参数

    • angle: number

      The rotation angle in radians.

    返回 Matrix

    The current matrix objec.

    Applies a rotation transformation to the Matrix object.

    对 Matrix 对象应用旋转转换。

  • 参数

    • x: number

      The multiplier used to scale the object along the x axis.

    • y: number

      The multiplier used to scale the object along the y axis.

    返回 Matrix

    The current matrix object.

    Applies a scaling transformation to the matrix.

    对矩阵应用缩放转换。

  • 设置矩阵 输出矩阵 = 平移矩阵旋转矩阵斜切矩阵缩放矩阵描点矩阵 [a,b,tx] = [1,0,x] * [cos(r),-sin(r),0] * [cos(sy),sin(sx),0] * [sx,0,0] * [1,0,-pivotx] [c,d,ty] [0,1,y] [sin(r), cos(r),0] [sin(sy),cos(sx),0] [0,sy,0] [0,1,-pivoty]

    参数

    • x: number

      x坐标

    • y: number

      y坐标

    • sx: number

      x轴缩放

    • sy: number

      y轴缩放

    • rotation: number

      旋转,以角度为单位。

    • skewX: number

      x轴倾斜,以角度为单位。

    • skewY: number

      y轴倾斜,以角度为单位。

    • pivotx: number

      x 描点

    • pivoty: number

      y 描点

    返回 Matrix

  • 参数

    • a: number

      The value that affects the positioning of pixels along the x axis when scaling or rotating an image.

    • b: number

      The value that affects the positioning of pixels along the y axis when rotating or skewing an image.

    • c: number

      The value that affects the positioning of pixels along the x axis when rotating or skewing an image.

    • d: number

      The value that affects the positioning of pixels along the y axis when scaling or rotating an image.

    • tx: number

      The distance by which to translate each point along the x axis.

    • ty: number

      The distance by which to translate each point along the y axis.

    返回 Matrix

    The current matrix object.

    Sets the members of Matrix to the specified values.

    将 Matrix 的成员设置为指定值。

  • 参数

    • x: number

      The distance to translate along the x axis.

    • y: number

      The distance to translate along the y axis.

    返回 Matrix

    The current matrix object.

    Sets the translation along the x and y axes.

    设置沿 x 、y 轴平移每个点的距离。

  • 参数

    • x: number

      The 2D skew angle along the X axis in radians.

    • y: number

      The 2D skew angle along the Y axis in radians.

    返回 Matrix

    The current Matrix object.

    Applies a skew transformation to the Matrix object.

    对 Matrix 对象应用倾斜转换。

  • 返回列出该 Matrix 对象属性的文本值。

    返回 string

    一个字符串,它包含 Matrix 对象的属性值:a、b、c、d、tx 和 ty。

  • 参数

    • out: Point

      The point used to set the output result.

    返回 Point

    The transformed out Point object.

    Applies the geometric transformation represented by the Matrix object to the specified point.

    将 Matrix 对象表示的几何转换应用于指定点。

  • 参数

    • out: Point

      The point used to set the output result.

    返回 Point

    The transformed out Point object.

    Applies the geometric transformation represented by the Matrix object to the specified point, ignoring tx and ty.

    将 Matrix 对象表示的几何转换应用于指定点,忽略tx、ty。

  • 参数

    • x: number

      The amount to move along the x axis (in pixels).

    • y: number

      The amount to move along the y axis (in pixels).

    返回 Matrix

    The current matrix object.

    Translates the matrix along the x and y axes, as specified by the x and y parameters.

    沿 x 和 y 轴平移矩阵,平移的变化量由 x 和 y 参数指定。

  • 参数

    • m1: Matrix

      The first matrix.

    • m2: Matrix

      The second matrix.

    • out: any[]

      The output Array object.

    返回 any[]

    The result output object out.

    Multiplies the specified two matrices and assigns the result to the specified output array of length 16.

    将指定的两个矩阵相乘,结果赋值给指定的输出数组,长度为16。