DomRectReadOnly

实现类型
注解
  • @Native("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重写
右侧边缘的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>
返回一个包含 thisother 的新矩形。
containsPoint(Point<num> another) bool
测试 another 是否在 this 的内部或边缘上。
containsRectangle(Rectangle<num> another) bool
测试 this 是否完全包含 another
intersection(Rectangle<num> other) Rectangle<num>?
计算 thisother 的交集。
intersects(Rectangle<num> other) bool
thisother 交叉时返回 true。
noSuchMethod(Invocation invocation) → dynamic
在访问不存在的方法或属性时调用。
继承的
toString() String
此对象的字符串表示形式。

运算符

operator ==(Object other) bool
等于运算符。

静态方法

fromRect(Map? other) DomRectReadOnly