[]
type Bounds = object;
Represents rectangular boundaries in various ways. The origin is at the top left corner.
optional bottom?: number;
Coordinate of the bottom side of the rectangle.
optional height?: number;
The height of the rectangle.
optional left?: number;
Coordinate of the left side of the rectangle.
optional location?: Point;
Coordinates of the top left corner of the rectangle.
optional right?: number;
Coordinate of the right side of the rectangle.
optional size?: Size;
The size of the rectangle.
optional top?: number;
Coordinate of the top side of the rectangle.
optional width?: number;
The width of the rectangle.
optional x?: number;
The X coordinate of the rectangle.
optional y?: number;
The Y coordinate of the rectangle.