DomRectReadOnly 类
构造函数
- DomRectReadOnly([num? x, num? y, num? width, num? height])
-
工厂
属性
- bottom → num
- 底边的 y 坐标。无设置器
-
bottomLeft → Point<
num> -
无设置器
-
bottomRight → Point<
num> -
无设置器
- hashCode → int
- 此对象的哈希码。无设置器
- height → num
- 矩形的长度。无设置器覆盖
- left → num
- 左边的 x 坐标。无设置器覆盖
- right → num
- 右边的 x 坐标。无设置器
- runtimeType → Type
- 对象运行时类型的表示。无设置器继承
- top → num
- 顶边的 y 坐标。无设置器覆盖
-
topLeft → Point<
num> -
无设置器
-
topRight → Point<
num> -
无设置器
- width → num
- 矩形的宽度。无设置器覆盖
- x → num?
-
无设置器
- y → num?
-
无设置器
方法
-
boundingBox(
Rectangle< num> other) → Rectangle<num> - 返回一个新矩形,该矩形完全包含
this
和other
。 -
containsPoint(
Point< num> another) → bool - 测试
another
是否在this
的内部或边缘上。 -
containsRectangle(
Rectangle< num> another) → bool - 测试
this
是否完全包含another
。 -
intersection(
Rectangle< num> other) → Rectangle<num> ? - 计算
this
和other
的交集。 -
intersects(
Rectangle< num> other) → bool - 如果
this
与other
相交,则返回 true。 -
noSuchMethod(
Invocation invocation) → dynamic - 当访问不存在的方法或属性时被调用。继承
-
toString(
) → String - 此对象的字符串表示形式。
运算符
-
operator ==(
Object other) → bool - 等于运算符。
静态方法
-
fromRect(
[Map? other]) → DomRectReadOnly