Specified Rect.
The minimum X coordinate of the rectangle.
The minimum Y coordinate of the rectangle.
The width of the rectangle, measured from the X position.
The height of the rectangle, measured from the Y position.
返回当前矩形的字符串表示。
矩形的高度。
矩形的宽度。
矩形最小点的 x 坐标。
矩形最小点的 y 坐标。
获取或设置矩形在 x 轴上的最大值。
获取或设置矩形在 x 轴上的最大值。
获取或设置矩形在 x 轴上的最小值。
获取或设置矩形在 x 轴上的最小值。
获取或设置矩形在 y 轴上的最大值。
获取或设置矩形在 y 轴上的最大值。
获取或设置矩形在 y 轴上的最小值。
获取或设置矩形在 y 轴上的最小值。
克隆当前矩形。
判断当前矩形是否包含指定的点。
Specified point.
The specified point is included in the rectangle and returns true', otherwise it returns
false'.
判断当前矩形是否包含指定矩形。
Specified rectangles.
Returns true' if all the points of the specified rectangle are included in the current rectangle,
false' otherwise.
判断当前矩形是否与指定矩形相等。
Specified rectangles.
Returns true' when the minimum and maximum values of both rectangles are equal, respectively; otherwise, returns
false'.
判断当前矩形是否与指定矩形相交。
Specified rectangles.
If intersected, return true', otherwise return
false'.
根据指定的插值比率,从当前矩形到目标矩形之间做插值。
Target Rect.
The interpolation coefficient.The range is [0,1].
设置当前矩形使其与指定矩形相等。
Specified Rect.
this
设置当前矩形使其与指定参数的矩形相等。
The x parameter of the specified rectangle
The y parameter of the specified rectangle
The width parameter of the specified rectangle
The height parameter of the specified rectangle
this
应用矩阵变换到当前矩形: 应用矩阵变换到当前矩形的最小点得到新的最小点, 将当前矩形的尺寸视为二维向量应用矩阵变换得到新的尺寸; 并将如此构成的新矩形。
计算当前矩形与指定矩形重叠部分的矩形,将其赋值给出口矩形。
Output Rect.
One of the specify Rect.
Another of the specify Rect.
根据指定的插值比率,从当前矩形到目标矩形之间做插值。
Output rect.
Original rect.
Target rect.
The interpolation coefficient.The range is [0,1].
创建同时包含当前矩形和指定矩形的最小矩形,将其赋值给出口矩形。
Output Rect.
One of the specify Rect.
Another of the specify Rect.
Generated using TypeDoc
轴对齐矩形。 矩形内的所有点都大于等于矩形的最小点 (xMin, yMin) 并且小于等于矩形的最大点 (xMax, yMax)。 矩形的宽度定义为 xMax - xMin;高度定义为 yMax - yMin。