An axis-aligned rectangle in two-dimensional space.

interface Rect {
    origin: Point;
    size: Size;
}

Properties

Properties

origin: Point

The origin of the rectangle.

size: Size

The size of the rectangle.

Generated using TypeDoc