@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.
24 lines • 765 B
JavaScript
/**
* Default line type used when no specific line type is specified.
*
* This constant represents the "Continuous" line type, which is the
* standard solid line type used in AutoCAD drawings.
*/
export var DEFAULT_LINE_TYPE = 'Continuous';
/**
* Special line type value that indicates the entity should use
* the line type of its layer.
*
* When an entity has this line type, it will inherit the line type
* from the layer it belongs to.
*/
export var ByLayer = 'ByLayer';
/**
* Special line type value that indicates the entity should use
* the line type of its block.
*
* When an entity has this line type, it will inherit the line type
* from the block it belongs to.
*/
export var ByBlock = 'ByBlock';
//# sourceMappingURL=AcDbConstants.js.map