Plot scale represented as a ratio of paper units to drawing units.

The numerator represents paperspace units, and the denominator represents the physical media units (paper units).

interface AcDbPlotScale {
    denominator: number;
    numerator: number;
}

Properties

denominator: number

Media units (denominator).

numerator: number

Paperspace units (numerator).