The Rectangle object is an area defined by its position, as indicated by its top-left corner point (x, y), and by its width and height. The x, y, width, and height properties of the Rectangle class are independent of each other; changing the value of one property has no effect on the others.

Rectangle 对象是按其位置(由它左上角的点 (x, y) 确定)以及宽度和高度定义的区域。 Rectangle 类的 x、y、width 和 height 属性相互独立;更改一个属性的值不会影响其他属性。

实现

  • IClone

构造函数

  • 参数

    • x: number = 0

      The x coordinate of the top-left corner of the rectangle.

    • y: number = 0

      The y coordinate of the top-left corner of the rectangle.

    • width: number = 0

      The width of the rectangle.

    • height: number = 0

      The height of the rectangle.

    返回 Rectangle

    Constructor method.

    构造方法

属性

height: number

The height of the rectangle.

矩形的高度。

width: number

The width of the rectangle.

矩形的宽度。

x: number

The x coordinate of the top-left corner of the rectangle.

矩形左上角的 X 轴坐标。

y: number

The y coordinate of the top-left corner of the rectangle.

矩形左上角的 Y 轴坐标。

TEMP: Rectangle = ...

Global temporary rectangle area. This object is used for global reuse to reduce object creation.

全局临时的矩形区域,此对象用于全局复用,以减少对象创建。

访问器

方法

  • 参数

    • x: number

      The x-coordinate of the point.

    • y: number

      The y-coordinate of the point.

    返回 this

    This Rectangle object.

    Adds a point to the current rectangle object, expanding it to the smallest rectangle that contains both the current rectangle and the given point. This method modifies the current object.

    为当前矩形对象加一个点,以使当前矩形扩展为包含当前矩形和此点的最小矩形。 此方法会修改本对象。

  • 参数

    • 可选out: Rectangle

      (Optional) The rectangle object used to store the result. If null, a new one is created. Recommendation: Reuse objects as much as possible to reduce object creation overhead. The Rectangle.TEMP object can be used for object reuse.

    返回 Rectangle

    A Rectangle object with the same values for x, y, width, and height properties as the current Rectangle object.

    Returns a new Rectangle object with the same values for the x, y, width, and height properties as the original Rectangle object.

    返回一个新的 Rectangle 对象,其 x、y、width 和 height 属性的值与当前 Rectangle 对象的对应值相同。

  • 参数

    • destObject: Rectangle

      The destination object to copy to.

    返回 void

    Copies the properties of this Rectangle to the destination object.

    将此 Rectangle 的属性复制到目标对象。

  • 参数

    • x: number

      The x-coordinate of the point (horizontal position).

    • y: number

      The y-coordinate of the point (vertical position).

    返回 boolean

    True if the Rectangle object contains the specified point; false otherwise.

    Determines whether the specified point is contained within the rectangular region defined by this Rectangle object.

    确定由此 Rectangle 对象定义的矩形区域内是否包含指定的点。

  • 参数

    • source: Rectangle

      The source Rectangle object.

    返回 this

    The rectangle object itself after the property values have been modified.

    Copies the property values from the source Rectangle object to this rectangle object.

    复制源 Rectangle 对象的属性值到此矩形对象中。

  • 参数

    • rect: Rectangle

      The Rectangle object to compare.

    返回 boolean

    True if all properties are equal, false otherwise.

    Checks if the properties of the input Rectangle object are equal to the properties of the current Rectangle object (x, y, width, height).

    检测传入的 Rectangle 对象的属性是否与当前 Rectangle 对象的属性 x、y、width、height 属性值都相等。

  • 参数

    • 可选out: number[]

    返回 number[]

    Vertex data.

    Returns vertex data representing the current rectangle.

    返回代表当前矩形的顶点数据。

  • 参数

    • rect: Rectangle

      The rectangle to compare against.

    • 可选out: Rectangle

      (Optional) The rectangle object for storing the output. If null, a new one will be created. Recommendation: Reuse objects as much as possible to reduce object creation overhead.

    返回 Rectangle

    The intersection area as a Rectangle object, or null if there's no intersection.

    If the Rectangle object specified in the rect parameter intersects with this Rectangle object, returns the area of intersection as a Rectangle object. If the rectangles do not intersect, this method returns null.

    如果在 rect 参数中指定的 Rectangle 对象与此 Rectangle 对象相交,则返回交集区域作为 Rectangle 对象。如果矩形不相交,则此方法返回null。

  • 参数

    • rect: Rectangle

      The Rectangle object to compare.

    返回 boolean

    True if the specified rectangle intersects with this one, false otherwise.

    Determines whether the object specified in the rect parameter intersects with this Rectangle object. This method checks the x, y, width, and height properties of the specified Rectangle object to see if it intersects with this Rectangle object.

    确定在 rect 参数中指定的对象是否与此 Rectangle 对象相交。此方法检查指定的 Rectangle 对象的 x、y、width 和 height 属性,以查看它是否与此 Rectangle 对象相交。

  • 返回 boolean

    True if the width or height of the Rectangle object is less than or equal to 0, false otherwise.

    Determines whether this Rectangle object is empty.

    确定此 Rectangle 对象是否为空。

  • 返回 this

    Resets the rectangle to default values (x=0, y=0, width=0, height=0).

    重置矩形为默认值(x=0, y=0, width=0, height=0)。

  • 参数

    • scaleX: number

      X缩放值

    • scaleY: number

      Y缩放值

    返回 this

    本对象

    缩放矩形

    Scales the rectangle.

  • 参数

    • x: number

      The x-coordinate of the top-left corner of the rectangle.

    • y: number

      The y-coordinate of the top-left corner of the rectangle.

    • width: number

      The width of the rectangle.

    • height: number

      The height of the rectangle.

    返回 this

    The rectangle object itself after the property values have been modified.

    Sets the properties of the Rectangle to the specified values.

    将 Rectangle 的属性设置为指定值。

  • 返回 string

    Returns a string representation of this Rectangle object, with the x, y, width, and height values joined by commas.

    返回当前 Rectangle 对象的字符串表示,其中水平位置 x、垂直位置 y、宽度 width 和高度 height 以逗号连接。

  • 参数

    • source: Rectangle

      The Rectangle object to add to this Rectangle object.

    • 可选out: Rectangle

      The Rectangle object to store the output. If null, a new one will be created. Recommendation: Reuse objects as much as possible to reduce object creation overhead. The Rectangle.TEMP object can be used for object reuse.

    返回 Rectangle

    A new Rectangle object that is the union of the two rectangles.

    Adds two rectangles together to create a new Rectangle object, by filling in the horizontal and vertical space between the two rectangles. Note: The union() method ignores rectangles with a height or width of 0, such as: var rect2:Rectangle = new Rectangle(300,300,50,0);

    矩形联合,通过填充两个矩形之间的水平和垂直空间,将这两个矩形组合在一起以创建一个新的 Rectangle 对象。 注意:union() 方法忽略高度或宽度值为 0 的矩形,如:var rect2:Rectangle = new Rectangle(300,300,50,0);

  • 参数

    • points: ArrayLike<number>

      List of points.

    • 可选out: Rectangle

      Optional Rectangle object to store the result.

    返回 Rectangle

    The smallest rectangle that contains all the points.

    Returns the smallest rectangle that contains all the points.

    返回包含所有点的最小矩形。