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