Defines a rectangular bounding box object

interface RectBBox {
    width: number;
    height: number;
    top: number;
    left: number;
}

Hierarchy (view full)

Properties

Properties

width: number

width of the rectangle

height: number

height of the rectangle

top: number

top position of the bounding box

left: number

left position of the bounding box