{
  "name": "RectF",
  "header": "nativeui/gfx/geometry/rect_f.h",
  "type": "Object",
  "namespace": "nu",
  "description": "Rectangle type.",
  "detail": "This type defines a simple integer rectangle class. The containment semantics\nare array-like; that is, the coordinate (x, y) is considered to be\ncontained by the rectangle, but the coordinate (x + width, y) is not.\n\nThis type is represented by an `Object` with `x`, `y`, `width`, `height`\nproperties.\n\n```js\nwindow.setBounds({x: 11, y: 24, width: 100, height: 100})\n```\n",
  "properties": [
    {
      "description": "X coordinate.",
      "id": "x",
      "type": {
        "name": "Number"
      },
      "name": "x"
    },
    {
      "description": "Y coordinate.",
      "id": "y",
      "type": {
        "name": "Number"
      },
      "name": "y"
    },
    {
      "description": "Rectangle width.",
      "id": "width",
      "type": {
        "name": "Number"
      },
      "name": "width"
    },
    {
      "description": "Rectangle height.",
      "id": "height",
      "type": {
        "name": "Number"
      },
      "name": "height"
    }
  ],
  "id": "rectf"
}