UNPKG

@mlightcad/common

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://img.shields.io/npm/v/@mlightcad/common.svg)](https://www.npmjs.com/package/@mlightcad/common)

18 lines 786 B
/** * @enum AcCmColorMethod * Represents the method used to determine an entity's color in AutoCAD. */ export var AcCmColorMethod; (function (AcCmColorMethod) { /** Explicit RGB color */ AcCmColorMethod[AcCmColorMethod["ByColor"] = 1] = "ByColor"; /** AutoCAD Color Index (ACI) */ AcCmColorMethod[AcCmColorMethod["ByACI"] = 2] = "ByACI"; /** Color inherited from the entity's layer */ AcCmColorMethod[AcCmColorMethod["ByLayer"] = 3] = "ByLayer"; /** Color inherited from the entity's block */ AcCmColorMethod[AcCmColorMethod["ByBlock"] = 4] = "ByBlock"; /** Uninitialised or invalid color state */ AcCmColorMethod[AcCmColorMethod["None"] = 0] = "None"; })(AcCmColorMethod || (AcCmColorMethod = {})); //# sourceMappingURL=AcCmColorMethod.js.map