Interface Rectangle

A rectangle.

interface Rectangle {
    0: number;
    1: number;
    2: number;
    3: number;
}

Hierarchy (view full)

Properties

0 1 2 3

Properties

0: number

The X-coordinate of the rectangle.

1: number

The Y-coordinate of the rectangle.

2: number

The width of the rectangle.

3: number

The height of the rectangle.