The x coordinate of the top-left corner of the rectangle.
The y coordinate of the top-left corner of the rectangle.
The width of the rectangle.
The height of the rectangle.
The x-coordinate of the point.
The y-coordinate of the point.
This Rectangle 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.
A Rectangle object with the same values for x, y, width, and height properties as the current Rectangle object.
The destination object to copy to.
The x-coordinate of the point (horizontal position).
The y-coordinate of the point (vertical position).
True if the Rectangle object contains the specified point; false otherwise.
The source Rectangle object.
The rectangle object itself after the property values have been modified.
The Rectangle object to compare.
True if all properties are equal, false otherwise.
The intersection area as a Rectangle object, or null if there's no intersection.
The Rectangle object to compare.
True if the specified rectangle intersects with this one, false otherwise.
The x-coordinate of the top-left corner of the rectangle.
The y-coordinate of the top-left corner of the rectangle.
The width of the rectangle.
The height of the rectangle.
The rectangle object itself after the property values have been modified.
The Rectangle object to add to this Rectangle object.
可选
out: RectangleThe 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.
A new Rectangle object that is the union of the two rectangles.
静态
_get静态
create
En
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.Zh
Rectangle
对象是按其位置(由它左上角的点 (x, y) 确定)以及宽度和高度定义的区域。 Rectangle 类的 x、y、width 和 height 属性相互独立;更改一个属性的值不会影响其他属性。