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

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