UNPKG

@mlightcad/data-model

Version:

The data-model package provides the core classes for interacting with AutoCAD's database and entities. This package mimics AutoCAD ObjectARX's AcDb (Database) classes and implements the drawing database structure that AutoCAD developers are familiar with.

90 lines 2.57 kB
/** * Enumeration of arrowhead types used in dimension lines. * * This enum defines the various arrowhead styles that can be displayed * at the ends of dimension lines in AutoCAD drawings. */ export var AcDbDimArrowType; (function (AcDbDimArrowType) { /** * Closed filled arrowhead - solid triangular arrow */ AcDbDimArrowType["ClosedFilled"] = ""; /** * Dot arrowhead - small filled circle */ AcDbDimArrowType["Dot"] = "_DOT"; /** * Small dot arrowhead - smaller filled circle */ AcDbDimArrowType["DotSmall"] = "_DOTSMALL"; /** * Blank dot arrowhead - unfilled circle */ AcDbDimArrowType["DotBlank"] = "_DOTBLANK"; /** * Origin indicator arrowhead - cross mark */ AcDbDimArrowType["Origin"] = "_ORIGIN"; /** * Origin indicator 2 arrowhead - alternative cross mark */ AcDbDimArrowType["Origin2"] = "_ORIGIN2"; /** * Open arrowhead - unfilled triangular arrow */ AcDbDimArrowType["Open"] = "_OPEN"; /** * Right angle arrowhead - 90-degree open arrow */ AcDbDimArrowType["Open90"] = "_OPEN90"; /** * Open 30 arrowhead - 30-degree open arrow */ AcDbDimArrowType["Open30"] = "_OPEN30"; /** * Closed arrowhead - filled triangular arrow */ AcDbDimArrowType["Closed"] = "_CLOSED"; /** * Small arrowhead - smaller triangular arrow */ AcDbDimArrowType["Small"] = "_SMALL"; /** * None - no arrowhead displayed */ AcDbDimArrowType["None"] = "_NONE"; /** * Oblique arrowhead - slanted arrow */ AcDbDimArrowType["Oblique"] = "_OBLIQUE"; /** * Box filled arrowhead - filled square */ AcDbDimArrowType["BoxFilled"] = "_BOXFILLED"; /** * Box blank arrowhead - unfilled square */ AcDbDimArrowType["Box"] = "_BOXBLANK"; /** * Closed blank arrowhead - unfilled triangular arrow */ AcDbDimArrowType["ClosedBlank"] = "_CLOSEDBLANK"; /** * Datum triangle blank - unfilled datum triangle */ AcDbDimArrowType["DatumBlank"] = "_DATUMBLANK"; /** * Datum triangle filled - filled datum triangle */ AcDbDimArrowType["DatumFilled"] = "_DATUMFILLED"; /** * Integral arrowhead - integral symbol */ AcDbDimArrowType["Integral"] = "_INTEGRAL"; /** * Architectural tick - architectural tick mark */ AcDbDimArrowType["ArchTick"] = "_ARCHTICK"; })(AcDbDimArrowType || (AcDbDimArrowType = {})); //# sourceMappingURL=AcDbDimArrowType.js.map