Rect

矩形区域信息。

interface Rect {
  x: number
  y: number
  width: number
  height: number
}
  • x: 横坐标。
  • y: 纵坐标。
  • width: 宽度。
  • height: 高度。