The size of a bounding box, represented by its width and height.

interface Size {
    height: number;
    width: number;
}

Properties

Properties

height: number

The height in pixels.

width: number

The width in pixels.

Generated using TypeDoc