Represents scale factors for the X, Y, and Z axes in a DXF file. Typically used to define scaling transformations applied to block inserts or entities.

interface DxfScale {
    x: number;
    y: number;
    z: number;
}

Properties

x y z

Properties

x: number

Scale factor along the X-axis.

y: number

Scale factor along the Y-axis.

z: number

Scale factor along the Z-axis.