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

86 lines 1.36 kB
/** * Type to define the arrowhead displayed at the ends of one line. */ export declare enum AcGiArrowType { /** * Closed filled */ ClosedFilled = "", /** * Dot */ Dot = "_DOT", /** * Dot small */ DotSmall = "_DOTSMALL", /** * Dot blank */ DotBlank = "_DOTBLANK", /** * Origin indicator */ Origin = "_ORIGIN", /** * Origin indicator 2 */ Origin2 = "_ORIGIN2", /** * Open */ Open = "_OPEN", /** * Right angle */ Open90 = "_OPEN90", /** * Open 30 */ Open30 = "_OPEN30", /** * Closed */ Closed = "_CLOSED", /** * Dot small blank */ Small = "_SMALL", /** * None */ None = "_NONE", /** * Oblique */ Oblique = "_OBLIQUE", /** * Box filled */ BoxFilled = "_BOXFILLED", /** * Box blank */ Box = "_BOXBLANK", /** * Closed blank */ ClosedBlank = "_CLOSEDBLANK", /** * Datum triangle */ DatumBlank = "_DATUMBLANK", /** * Datum triangle filled */ DatumFilled = "_DATUMFILLED", /** * Integral */ Integral = "_INTEGRAL", /** * Architectural tick */ ArchTick = "_ARCHTICK" } //# sourceMappingURL=AcGiArrowType.d.ts.map