Every public coordinate DTO declares both its reference space and unit.

interface AsukaPricingSize {
    height: number;
    physical?: AsukaPhysicalLayerMeasurement;
    referenceHeight?: number;
    referenceWidth?: number;
    space: AsukaCoordinateSpace;
    unit: AsukaCoordinateUnit;
    width: number;
}

Hierarchy (view full)

Properties

height: number

Real-world dimensions when a view or print area has been calibrated.

referenceHeight?: number
referenceWidth?: number

Available drawing-area extent expressed in the same space/unit as width and height.

width: number