UNPKG

@mlightcad/graphic-interface

Version:

The graphic-interface package provides the graphics interface for controlling how AutoCAD entities are displayed on screen. This package offers a simplified API compared to AutoCAD ObjectARX's AcGi classes, making it more developer-friendly while maintain

37 lines 1.04 kB
/** * This enumerated type provides the line weight (thickness) values used to specify how * lines will be displayed and plotted. The lineweights are in 100ths of a millimeter, * except for the negative values. The negative values denote the default indicated by * their constant's name. */ export declare enum AcGiLineWeight { ByBlock = -2, ByDIPs = -4, ByLayer = -1, ByLineWeightDefault = -3, LineWeight000 = 0, LineWeight005 = 5, LineWeight009 = 9, LineWeight013 = 13, LineWeight015 = 15, LineWeight018 = 18, LineWeight020 = 20, LineWeight025 = 25, LineWeight030 = 30, LineWeight035 = 35, LineWeight040 = 40, LineWeight050 = 50, LineWeight053 = 53, LineWeight060 = 60, LineWeight070 = 70, LineWeight080 = 80, LineWeight090 = 90, LineWeight100 = 100, LineWeight106 = 106, LineWeight120 = 120, LineWeight140 = 140, LineWeight158 = 158, LineWeight200 = 200, LineWeight211 = 211 } //# sourceMappingURL=AcGiLineWeight.d.ts.map