@mlightcad/data-model 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (259) hide show
  1. package/dist/data-model.js +5490 -1022
  2. package/dist/data-model.umd.cjs +2 -2
  3. package/lib/base/AcDbHostApplicationServices.d.ts +72 -6
  4. package/lib/base/AcDbHostApplicationServices.d.ts.map +1 -1
  5. package/lib/base/AcDbHostApplicationServices.js +71 -7
  6. package/lib/base/AcDbHostApplicationServices.js.map +1 -1
  7. package/lib/base/AcDbObject.d.ts +160 -25
  8. package/lib/base/AcDbObject.d.ts.map +1 -1
  9. package/lib/base/AcDbObject.js +149 -25
  10. package/lib/base/AcDbObject.js.map +1 -1
  11. package/lib/converter/AcDbBatchProcessing.d.ts +112 -10
  12. package/lib/converter/AcDbBatchProcessing.d.ts.map +1 -1
  13. package/lib/converter/AcDbBatchProcessing.js +110 -11
  14. package/lib/converter/AcDbBatchProcessing.js.map +1 -1
  15. package/lib/converter/AcDbDxfConverter.d.ts +224 -6
  16. package/lib/converter/AcDbDxfConverter.d.ts.map +1 -1
  17. package/lib/converter/AcDbDxfConverter.js +224 -6
  18. package/lib/converter/AcDbDxfConverter.js.map +1 -1
  19. package/lib/converter/AcDbDxfParseWorker.d.ts +16 -0
  20. package/lib/converter/AcDbDxfParseWorker.d.ts.map +1 -1
  21. package/lib/converter/AcDbDxfParseWorker.js +16 -0
  22. package/lib/converter/AcDbDxfParseWorker.js.map +1 -1
  23. package/lib/converter/AcDbEntitiyConverter.d.ts +118 -3
  24. package/lib/converter/AcDbEntitiyConverter.d.ts.map +1 -1
  25. package/lib/converter/AcDbEntitiyConverter.js +118 -3
  26. package/lib/converter/AcDbEntitiyConverter.js.map +1 -1
  27. package/lib/converter/AcDbObjectConverter.d.ts +52 -0
  28. package/lib/converter/AcDbObjectConverter.d.ts.map +1 -1
  29. package/lib/converter/AcDbObjectConverter.js +52 -0
  30. package/lib/converter/AcDbObjectConverter.js.map +1 -1
  31. package/lib/database/AcDbBlockTable.d.ts +35 -3
  32. package/lib/database/AcDbBlockTable.d.ts.map +1 -1
  33. package/lib/database/AcDbBlockTable.js +35 -3
  34. package/lib/database/AcDbBlockTable.js.map +1 -1
  35. package/lib/database/AcDbBlockTableRecord.d.ts +98 -15
  36. package/lib/database/AcDbBlockTableRecord.d.ts.map +1 -1
  37. package/lib/database/AcDbBlockTableRecord.js +96 -15
  38. package/lib/database/AcDbBlockTableRecord.js.map +1 -1
  39. package/lib/database/AcDbDatabase.d.ts +303 -33
  40. package/lib/database/AcDbDatabase.d.ts.map +1 -1
  41. package/lib/database/AcDbDatabase.js +223 -39
  42. package/lib/database/AcDbDatabase.js.map +1 -1
  43. package/lib/database/AcDbDatabaseConverter.d.ts +77 -12
  44. package/lib/database/AcDbDatabaseConverter.d.ts.map +1 -1
  45. package/lib/database/AcDbDatabaseConverter.js +46 -13
  46. package/lib/database/AcDbDatabaseConverter.js.map +1 -1
  47. package/lib/database/AcDbDatabaseConverterManager.d.ts +97 -15
  48. package/lib/database/AcDbDatabaseConverterManager.d.ts.map +1 -1
  49. package/lib/database/AcDbDatabaseConverterManager.js +90 -15
  50. package/lib/database/AcDbDatabaseConverterManager.js.map +1 -1
  51. package/lib/database/AcDbDimStyleTable.d.ts +22 -2
  52. package/lib/database/AcDbDimStyleTable.d.ts.map +1 -1
  53. package/lib/database/AcDbDimStyleTable.js +22 -2
  54. package/lib/database/AcDbDimStyleTable.js.map +1 -1
  55. package/lib/database/AcDbDimStyleTableRecord.d.ts +115 -0
  56. package/lib/database/AcDbDimStyleTableRecord.d.ts.map +1 -1
  57. package/lib/database/AcDbDimStyleTableRecord.js +44 -0
  58. package/lib/database/AcDbDimStyleTableRecord.js.map +1 -1
  59. package/lib/database/AcDbLayerTable.d.ts +39 -2
  60. package/lib/database/AcDbLayerTable.d.ts.map +1 -1
  61. package/lib/database/AcDbLayerTable.js +39 -2
  62. package/lib/database/AcDbLayerTable.js.map +1 -1
  63. package/lib/database/AcDbLayerTableRecord.d.ts +198 -18
  64. package/lib/database/AcDbLayerTableRecord.d.ts.map +1 -1
  65. package/lib/database/AcDbLayerTableRecord.js +182 -19
  66. package/lib/database/AcDbLayerTableRecord.js.map +1 -1
  67. package/lib/database/AcDbLinetypeTable.d.ts +21 -2
  68. package/lib/database/AcDbLinetypeTable.d.ts.map +1 -1
  69. package/lib/database/AcDbLinetypeTable.js +21 -2
  70. package/lib/database/AcDbLinetypeTable.js.map +1 -1
  71. package/lib/database/AcDbLinetypeTableRecord.d.ts +46 -14
  72. package/lib/database/AcDbLinetypeTableRecord.d.ts.map +1 -1
  73. package/lib/database/AcDbLinetypeTableRecord.js +46 -14
  74. package/lib/database/AcDbLinetypeTableRecord.js.map +1 -1
  75. package/lib/database/AcDbSymbolTable.d.ts +134 -29
  76. package/lib/database/AcDbSymbolTable.d.ts.map +1 -1
  77. package/lib/database/AcDbSymbolTable.js +133 -37
  78. package/lib/database/AcDbSymbolTable.js.map +1 -1
  79. package/lib/database/AcDbSymbolTableRecord.d.ts +47 -2
  80. package/lib/database/AcDbSymbolTableRecord.d.ts.map +1 -1
  81. package/lib/database/AcDbSymbolTableRecord.js +40 -2
  82. package/lib/database/AcDbSymbolTableRecord.js.map +1 -1
  83. package/lib/database/AcDbTextStyleTable.d.ts +36 -2
  84. package/lib/database/AcDbTextStyleTable.d.ts.map +1 -1
  85. package/lib/database/AcDbTextStyleTable.js +36 -2
  86. package/lib/database/AcDbTextStyleTable.js.map +1 -1
  87. package/lib/database/AcDbTextStyleTableRecord.d.ts +129 -17
  88. package/lib/database/AcDbTextStyleTableRecord.d.ts.map +1 -1
  89. package/lib/database/AcDbTextStyleTableRecord.js +127 -17
  90. package/lib/database/AcDbTextStyleTableRecord.js.map +1 -1
  91. package/lib/database/AcDbViewportTable.d.ts +22 -2
  92. package/lib/database/AcDbViewportTable.d.ts.map +1 -1
  93. package/lib/database/AcDbViewportTable.js +22 -2
  94. package/lib/database/AcDbViewportTable.js.map +1 -1
  95. package/lib/database/AcDbViewportTableRecord.d.ts +74 -9
  96. package/lib/database/AcDbViewportTableRecord.d.ts.map +1 -1
  97. package/lib/database/AcDbViewportTableRecord.js +65 -9
  98. package/lib/database/AcDbViewportTableRecord.js.map +1 -1
  99. package/lib/entity/AcDbArc.d.ts +202 -17
  100. package/lib/entity/AcDbArc.d.ts.map +1 -1
  101. package/lib/entity/AcDbArc.js +201 -17
  102. package/lib/entity/AcDbArc.js.map +1 -1
  103. package/lib/entity/AcDbBlockReference.d.ts +147 -13
  104. package/lib/entity/AcDbBlockReference.d.ts.map +1 -1
  105. package/lib/entity/AcDbBlockReference.js +142 -13
  106. package/lib/entity/AcDbBlockReference.js.map +1 -1
  107. package/lib/entity/AcDbCircle.d.ts +145 -12
  108. package/lib/entity/AcDbCircle.d.ts.map +1 -1
  109. package/lib/entity/AcDbCircle.js +144 -12
  110. package/lib/entity/AcDbCircle.js.map +1 -1
  111. package/lib/entity/AcDbCurve.d.ts +33 -2
  112. package/lib/entity/AcDbCurve.d.ts.map +1 -1
  113. package/lib/entity/AcDbCurve.js +17 -0
  114. package/lib/entity/AcDbCurve.js.map +1 -1
  115. package/lib/entity/AcDbEllipse.d.ts +168 -16
  116. package/lib/entity/AcDbEllipse.d.ts.map +1 -1
  117. package/lib/entity/AcDbEllipse.js +167 -16
  118. package/lib/entity/AcDbEllipse.js.map +1 -1
  119. package/lib/entity/AcDbEntity.d.ts +299 -35
  120. package/lib/entity/AcDbEntity.d.ts.map +1 -1
  121. package/lib/entity/AcDbEntity.js +275 -27
  122. package/lib/entity/AcDbEntity.js.map +1 -1
  123. package/lib/entity/AcDbHatch.d.ts +60 -4
  124. package/lib/entity/AcDbHatch.d.ts.map +1 -1
  125. package/lib/entity/AcDbHatch.js +52 -4
  126. package/lib/entity/AcDbHatch.js.map +1 -1
  127. package/lib/entity/AcDbLeader.d.ts +157 -10
  128. package/lib/entity/AcDbLeader.d.ts.map +1 -1
  129. package/lib/entity/AcDbLeader.js +149 -10
  130. package/lib/entity/AcDbLeader.js.map +1 -1
  131. package/lib/entity/AcDbLine.d.ts +154 -13
  132. package/lib/entity/AcDbLine.d.ts.map +1 -1
  133. package/lib/entity/AcDbLine.js +153 -13
  134. package/lib/entity/AcDbLine.js.map +1 -1
  135. package/lib/entity/AcDbMText.d.ts +127 -11
  136. package/lib/entity/AcDbMText.d.ts.map +1 -1
  137. package/lib/entity/AcDbMText.js +112 -11
  138. package/lib/entity/AcDbMText.js.map +1 -1
  139. package/lib/entity/AcDbPoint.d.ts +86 -7
  140. package/lib/entity/AcDbPoint.d.ts.map +1 -1
  141. package/lib/entity/AcDbPoint.js +85 -7
  142. package/lib/entity/AcDbPoint.js.map +1 -1
  143. package/lib/entity/AcDbPolyline.d.ts +172 -25
  144. package/lib/entity/AcDbPolyline.d.ts.map +1 -1
  145. package/lib/entity/AcDbPolyline.js +170 -25
  146. package/lib/entity/AcDbPolyline.js.map +1 -1
  147. package/lib/entity/AcDbRasterImage.d.ts +75 -31
  148. package/lib/entity/AcDbRasterImage.d.ts.map +1 -1
  149. package/lib/entity/AcDbRasterImage.js +60 -31
  150. package/lib/entity/AcDbRasterImage.js.map +1 -1
  151. package/lib/entity/AcDbRay.d.ts +115 -9
  152. package/lib/entity/AcDbRay.d.ts.map +1 -1
  153. package/lib/entity/AcDbRay.js +113 -9
  154. package/lib/entity/AcDbRay.js.map +1 -1
  155. package/lib/entity/AcDbSpline.d.ts +106 -14
  156. package/lib/entity/AcDbSpline.d.ts.map +1 -1
  157. package/lib/entity/AcDbSpline.js +67 -4
  158. package/lib/entity/AcDbSpline.js.map +1 -1
  159. package/lib/entity/AcDbTable.d.ts +161 -44
  160. package/lib/entity/AcDbTable.d.ts.map +1 -1
  161. package/lib/entity/AcDbTable.js +135 -44
  162. package/lib/entity/AcDbTable.js.map +1 -1
  163. package/lib/entity/AcDbText.d.ts +298 -25
  164. package/lib/entity/AcDbText.d.ts.map +1 -1
  165. package/lib/entity/AcDbText.js +288 -25
  166. package/lib/entity/AcDbText.js.map +1 -1
  167. package/lib/entity/AcDbTrace.d.ts +150 -23
  168. package/lib/entity/AcDbTrace.d.ts.map +1 -1
  169. package/lib/entity/AcDbTrace.js +147 -23
  170. package/lib/entity/AcDbTrace.js.map +1 -1
  171. package/lib/entity/AcDbViewport.d.ts +122 -9
  172. package/lib/entity/AcDbViewport.d.ts.map +1 -1
  173. package/lib/entity/AcDbViewport.js +122 -9
  174. package/lib/entity/AcDbViewport.js.map +1 -1
  175. package/lib/entity/AcDbWipeout.d.ts +29 -1
  176. package/lib/entity/AcDbWipeout.d.ts.map +1 -1
  177. package/lib/entity/AcDbWipeout.js +29 -1
  178. package/lib/entity/AcDbWipeout.js.map +1 -1
  179. package/lib/entity/AcDbXline.d.ts +116 -9
  180. package/lib/entity/AcDbXline.d.ts.map +1 -1
  181. package/lib/entity/AcDbXline.js +114 -9
  182. package/lib/entity/AcDbXline.js.map +1 -1
  183. package/lib/entity/dimension/AcDb3PointAngularDimension.d.ts +56 -12
  184. package/lib/entity/dimension/AcDb3PointAngularDimension.d.ts.map +1 -1
  185. package/lib/entity/dimension/AcDb3PointAngularDimension.js +56 -12
  186. package/lib/entity/dimension/AcDb3PointAngularDimension.js.map +1 -1
  187. package/lib/entity/dimension/AcDbAlignedDimension.d.ts +158 -17
  188. package/lib/entity/dimension/AcDbAlignedDimension.d.ts.map +1 -1
  189. package/lib/entity/dimension/AcDbAlignedDimension.js +153 -17
  190. package/lib/entity/dimension/AcDbAlignedDimension.js.map +1 -1
  191. package/lib/entity/dimension/AcDbArcDimension.d.ts +58 -12
  192. package/lib/entity/dimension/AcDbArcDimension.d.ts.map +1 -1
  193. package/lib/entity/dimension/AcDbArcDimension.js +58 -12
  194. package/lib/entity/dimension/AcDbArcDimension.js.map +1 -1
  195. package/lib/entity/dimension/AcDbDiametricDimension.d.ts +99 -25
  196. package/lib/entity/dimension/AcDbDiametricDimension.d.ts.map +1 -1
  197. package/lib/entity/dimension/AcDbDiametricDimension.js +99 -25
  198. package/lib/entity/dimension/AcDbDiametricDimension.js.map +1 -1
  199. package/lib/entity/dimension/AcDbDimension.d.ts +108 -14
  200. package/lib/entity/dimension/AcDbDimension.d.ts.map +1 -1
  201. package/lib/entity/dimension/AcDbDimension.js +99 -14
  202. package/lib/entity/dimension/AcDbDimension.js.map +1 -1
  203. package/lib/entity/dimension/AcDbOrdinateDimension.d.ts +48 -16
  204. package/lib/entity/dimension/AcDbOrdinateDimension.d.ts.map +1 -1
  205. package/lib/entity/dimension/AcDbOrdinateDimension.js +48 -16
  206. package/lib/entity/dimension/AcDbOrdinateDimension.js.map +1 -1
  207. package/lib/entity/dimension/AcDbRadialDimension.d.ts +167 -24
  208. package/lib/entity/dimension/AcDbRadialDimension.d.ts.map +1 -1
  209. package/lib/entity/dimension/AcDbRadialDimension.js +162 -24
  210. package/lib/entity/dimension/AcDbRadialDimension.js.map +1 -1
  211. package/lib/misc/AcDbAngleUnits.d.ts +12 -0
  212. package/lib/misc/AcDbAngleUnits.d.ts.map +1 -1
  213. package/lib/misc/AcDbAngleUnits.js +12 -0
  214. package/lib/misc/AcDbAngleUnits.js.map +1 -1
  215. package/lib/misc/AcDbConstants.d.ts +20 -0
  216. package/lib/misc/AcDbConstants.d.ts.map +1 -1
  217. package/lib/misc/AcDbConstants.js +20 -0
  218. package/lib/misc/AcDbConstants.js.map +1 -1
  219. package/lib/misc/AcDbDimArrowType.d.ts +24 -21
  220. package/lib/misc/AcDbDimArrowType.d.ts.map +1 -1
  221. package/lib/misc/AcDbDimArrowType.js +24 -21
  222. package/lib/misc/AcDbDimArrowType.js.map +1 -1
  223. package/lib/misc/AcDbObjectIterator.d.ts +42 -3
  224. package/lib/misc/AcDbObjectIterator.d.ts.map +1 -1
  225. package/lib/misc/AcDbObjectIterator.js +42 -3
  226. package/lib/misc/AcDbObjectIterator.js.map +1 -1
  227. package/lib/misc/AcDbOsnapMode.d.ts +18 -10
  228. package/lib/misc/AcDbOsnapMode.d.ts.map +1 -1
  229. package/lib/misc/AcDbOsnapMode.js +18 -10
  230. package/lib/misc/AcDbOsnapMode.js.map +1 -1
  231. package/lib/misc/AcDbRenderingCache.d.ts +107 -29
  232. package/lib/misc/AcDbRenderingCache.d.ts.map +1 -1
  233. package/lib/misc/AcDbRenderingCache.js +105 -29
  234. package/lib/misc/AcDbRenderingCache.js.map +1 -1
  235. package/lib/misc/AcDbUnitsValue.d.ts +58 -8
  236. package/lib/misc/AcDbUnitsValue.d.ts.map +1 -1
  237. package/lib/misc/AcDbUnitsValue.js +58 -8
  238. package/lib/misc/AcDbUnitsValue.js.map +1 -1
  239. package/lib/object/AcDbDictionary.d.ts +128 -30
  240. package/lib/object/AcDbDictionary.d.ts.map +1 -1
  241. package/lib/object/AcDbDictionary.js +126 -30
  242. package/lib/object/AcDbDictionary.js.map +1 -1
  243. package/lib/object/AcDbRasterImageDef.d.ts +38 -9
  244. package/lib/object/AcDbRasterImageDef.d.ts.map +1 -1
  245. package/lib/object/AcDbRasterImageDef.js +37 -9
  246. package/lib/object/AcDbRasterImageDef.js.map +1 -1
  247. package/lib/object/layout/AcDbLayout.d.ts +152 -13
  248. package/lib/object/layout/AcDbLayout.d.ts.map +1 -1
  249. package/lib/object/layout/AcDbLayout.js +146 -13
  250. package/lib/object/layout/AcDbLayout.js.map +1 -1
  251. package/lib/object/layout/AcDbLayoutDictionary.d.ts +35 -7
  252. package/lib/object/layout/AcDbLayoutDictionary.d.ts.map +1 -1
  253. package/lib/object/layout/AcDbLayoutDictionary.js +35 -7
  254. package/lib/object/layout/AcDbLayoutDictionary.js.map +1 -1
  255. package/lib/object/layout/AcDbLayoutManager.d.ts +103 -31
  256. package/lib/object/layout/AcDbLayoutManager.d.ts.map +1 -1
  257. package/lib/object/layout/AcDbLayoutManager.js +98 -31
  258. package/lib/object/layout/AcDbLayoutManager.js.map +1 -1
  259. package/package.json +4 -4
@@ -15,11 +15,30 @@ var __extends = (this && this.__extends) || (function () {
15
15
  })();
16
16
  import { AcDbSymbolTable } from './AcDbSymbolTable';
17
17
  /**
18
- * This class is the symbol table for line type table records. It represents the line types within a
19
- * drawing database.
18
+ * Symbol table for linetype table records.
19
+ *
20
+ * This class manages linetype table records which represent line types within a
21
+ * drawing database. Line types define the pattern of dashes, dots, and spaces
22
+ * used to display lines and curves in the drawing.
23
+ *
24
+ * @example
25
+ * ```typescript
26
+ * const linetypeTable = new AcDbLinetypeTable(database);
27
+ * const linetype = linetypeTable.getAt('Continuous');
28
+ * ```
20
29
  */
21
30
  var AcDbLinetypeTable = /** @class */ (function (_super) {
22
31
  __extends(AcDbLinetypeTable, _super);
32
+ /**
33
+ * Creates a new AcDbLinetypeTable instance.
34
+ *
35
+ * @param db - The database this linetype table belongs to
36
+ *
37
+ * @example
38
+ * ```typescript
39
+ * const linetypeTable = new AcDbLinetypeTable(database);
40
+ * ```
41
+ */
23
42
  function AcDbLinetypeTable(db) {
24
43
  return _super.call(this, db) || this;
25
44
  }
@@ -1 +1 @@
1
- {"version":3,"file":"AcDbLinetypeTable.js","sourceRoot":"","sources":["../../src/database/AcDbLinetypeTable.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAEA,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAEnD;;;GAGG;AACH;IAAuC,qCAAwC;IAC7E,2BAAY,EAAgB;QAC1B,OAAA,MAAK,YAAC,EAAE,CAAC,SAAA;IACX,CAAC;IACH,wBAAC;AAAD,CAAC,AAJD,CAAuC,eAAe,GAIrD"}
1
+ {"version":3,"file":"AcDbLinetypeTable.js","sourceRoot":"","sources":["../../src/database/AcDbLinetypeTable.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAEA,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAEnD;;;;;;;;;;;;GAYG;AACH;IAAuC,qCAAwC;IAC7E;;;;;;;;;OASG;IACH,2BAAY,EAAgB;QAC1B,OAAA,MAAK,YAAC,EAAE,CAAC,SAAA;IACX,CAAC;IACH,wBAAC;AAAD,CAAC,AAdD,CAAuC,eAAe,GAcrD"}
@@ -1,8 +1,11 @@
1
1
  import { AcGiBaseLineStyle } from '@mlightcad/graphic-interface';
2
2
  import { AcDbSymbolTableRecord } from './AcDbSymbolTableRecord';
3
3
  /**
4
- * The class representing records in the line type table. Each of these records contains the information
5
- * about a line type in the drawing database.
4
+ * Represents a record in the line type table within the AutoCAD drawing database.
5
+ *
6
+ * Each line type table record contains the information necessary to define a specific line type,
7
+ * including its pattern, description, and rendering characteristics. Line types define how lines
8
+ * are drawn, including patterns of dashes, dots, and spaces.
6
9
  *
7
10
  * Within the line type table record, the dashes (line segments that make up characteristics of the
8
11
  * linetype) are stored in a list with an index that is zero based. If the linetype is complex, then
@@ -14,33 +17,62 @@ import { AcDbSymbolTableRecord } from './AcDbSymbolTableRecord';
14
17
  export declare class AcDbLinetypeTableRecord extends AcDbSymbolTableRecord {
15
18
  private _linetype;
16
19
  /**
17
- * Default constructor.
20
+ * Creates a new line type table record.
21
+ *
22
+ * @param linetype - The line type style object that defines the visual characteristics
23
+ * and pattern of this line type
18
24
  */
19
25
  constructor(linetype: AcGiBaseLineStyle);
20
26
  /**
21
- * The number of dashes in the line type table record. This value is used for DXF group code 73.
27
+ * Gets the number of dash elements in the line type pattern.
28
+ *
29
+ * This value represents the total count of dashes, spaces, dots, and other pattern elements
30
+ * that make up the line type. It corresponds to DXF group code 73 in the AutoCAD file format.
31
+ *
32
+ * @returns The number of pattern elements in the line type
22
33
  */
23
34
  get numDashes(): number;
24
35
  /**
25
- * The length (in AutoCAD drawing units--the pattern will appear this length when the line type scale is
26
- * 1.0) of the pattern in the line type table record. The pattern length is the total length of all
27
- * dashes (including pen up spaces). Embedded shapes or text strings do not add to the pattern length
28
- * because they are overlaid and do not interrupt the actual dash pattern.
36
+ * Gets the total pattern length in AutoCAD drawing units.
37
+ *
38
+ * The pattern length represents the total length of all dashes and spaces when the line type
39
+ * scale is 1.0. This value is used to calculate how the pattern repeats along a line.
40
+ *
41
+ * Note: Embedded shapes or text strings do not add to the pattern length because they are
42
+ * overlaid and do not interrupt the actual dash pattern.
43
+ *
44
+ * @returns The total length of the line type pattern in drawing units
29
45
  */
30
46
  get patternLength(): number;
31
47
  /**
32
- * Line type description
48
+ * Gets the description or comments associated with this line type.
49
+ *
50
+ * This property provides additional information about the line type, such as its intended
51
+ * use or any special characteristics.
52
+ *
53
+ * @returns The description text for the line type
33
54
  */
34
55
  get comments(): string;
35
56
  /**
36
- * Line type information used by renderer.
57
+ * Gets the line type style object used by the renderer.
58
+ *
59
+ * This property provides access to the underlying line type definition that contains
60
+ * all the visual characteristics and rendering information.
61
+ *
62
+ * @returns The line type style object
37
63
  */
38
64
  get linetype(): AcGiBaseLineStyle;
39
65
  /**
40
- * Get the length (in AutoCAD drawing units--the dash will appear this length when the linetype scale
41
- * is 1.0) of the index'th dash in the line type table record.
42
- * @param index Input zero-based index. It must be greater than or equal to zero, but less than the
43
- * value of property 'numDashes'.
66
+ * Gets the length of a specific dash element in the line type pattern.
67
+ *
68
+ * Each dash element in the pattern has a specific length that determines how it appears
69
+ * when the line type is rendered. Positive values represent visible dashes, while negative
70
+ * values represent spaces (pen up).
71
+ *
72
+ * @param index - Zero-based index of the dash element. Must be greater than or equal to zero,
73
+ * but less than the value of property 'numDashes'
74
+ * @returns The length of the specified dash element in drawing units
75
+ * @throws {Error} When the index is out of range
44
76
  */
45
77
  dashLengthAt(index: number): number;
46
78
  }
@@ -1 +1 @@
1
- {"version":3,"file":"AcDbLinetypeTableRecord.d.ts","sourceRoot":"","sources":["../../src/database/AcDbLinetypeTableRecord.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAA;AAEhE,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAE/D;;;;;;;;;;GAUG;AACH,qBAAa,uBAAwB,SAAQ,qBAAqB;IAChE,OAAO,CAAC,SAAS,CAAmB;IAEpC;;OAEG;gBACS,QAAQ,EAAE,iBAAiB;IAMvC;;OAEG;IACH,IAAI,SAAS,WAEZ;IAED;;;;;OAKG;IACH,IAAI,aAAa,WAEhB;IAED;;OAEG;IACH,IAAI,QAAQ,WAEX;IAED;;OAEG;IACH,IAAI,QAAQ,sBAEX;IAED;;;;;OAKG;IACH,YAAY,CAAC,KAAK,EAAE,MAAM;CAQ3B"}
1
+ {"version":3,"file":"AcDbLinetypeTableRecord.d.ts","sourceRoot":"","sources":["../../src/database/AcDbLinetypeTableRecord.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAA;AAEhE,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAE/D;;;;;;;;;;;;;GAaG;AACH,qBAAa,uBAAwB,SAAQ,qBAAqB;IAChE,OAAO,CAAC,SAAS,CAAmB;IAEpC;;;;;OAKG;gBACS,QAAQ,EAAE,iBAAiB;IAMvC;;;;;;;OAOG;IACH,IAAI,SAAS,WAEZ;IAED;;;;;;;;;;OAUG;IACH,IAAI,aAAa,WAEhB;IAED;;;;;;;OAOG;IACH,IAAI,QAAQ,WAEX;IAED;;;;;;;OAOG;IACH,IAAI,QAAQ,sBAEX;IAED;;;;;;;;;;;OAWG;IACH,YAAY,CAAC,KAAK,EAAE,MAAM;CAQ3B"}
@@ -15,8 +15,11 @@ var __extends = (this && this.__extends) || (function () {
15
15
  })();
16
16
  import { AcDbSymbolTableRecord } from './AcDbSymbolTableRecord';
17
17
  /**
18
- * The class representing records in the line type table. Each of these records contains the information
19
- * about a line type in the drawing database.
18
+ * Represents a record in the line type table within the AutoCAD drawing database.
19
+ *
20
+ * Each line type table record contains the information necessary to define a specific line type,
21
+ * including its pattern, description, and rendering characteristics. Line types define how lines
22
+ * are drawn, including patterns of dashes, dots, and spaces.
20
23
  *
21
24
  * Within the line type table record, the dashes (line segments that make up characteristics of the
22
25
  * linetype) are stored in a list with an index that is zero based. If the linetype is complex, then
@@ -28,7 +31,10 @@ import { AcDbSymbolTableRecord } from './AcDbSymbolTableRecord';
28
31
  var AcDbLinetypeTableRecord = /** @class */ (function (_super) {
29
32
  __extends(AcDbLinetypeTableRecord, _super);
30
33
  /**
31
- * Default constructor.
34
+ * Creates a new line type table record.
35
+ *
36
+ * @param linetype - The line type style object that defines the visual characteristics
37
+ * and pattern of this line type
32
38
  */
33
39
  function AcDbLinetypeTableRecord(linetype) {
34
40
  var _this = _super.call(this) || this;
@@ -38,7 +44,12 @@ var AcDbLinetypeTableRecord = /** @class */ (function (_super) {
38
44
  }
39
45
  Object.defineProperty(AcDbLinetypeTableRecord.prototype, "numDashes", {
40
46
  /**
41
- * The number of dashes in the line type table record. This value is used for DXF group code 73.
47
+ * Gets the number of dash elements in the line type pattern.
48
+ *
49
+ * This value represents the total count of dashes, spaces, dots, and other pattern elements
50
+ * that make up the line type. It corresponds to DXF group code 73 in the AutoCAD file format.
51
+ *
52
+ * @returns The number of pattern elements in the line type
42
53
  */
43
54
  get: function () {
44
55
  return this._linetype.pattern ? this._linetype.pattern.length : 0;
@@ -48,10 +59,15 @@ var AcDbLinetypeTableRecord = /** @class */ (function (_super) {
48
59
  });
49
60
  Object.defineProperty(AcDbLinetypeTableRecord.prototype, "patternLength", {
50
61
  /**
51
- * The length (in AutoCAD drawing units--the pattern will appear this length when the line type scale is
52
- * 1.0) of the pattern in the line type table record. The pattern length is the total length of all
53
- * dashes (including pen up spaces). Embedded shapes or text strings do not add to the pattern length
54
- * because they are overlaid and do not interrupt the actual dash pattern.
62
+ * Gets the total pattern length in AutoCAD drawing units.
63
+ *
64
+ * The pattern length represents the total length of all dashes and spaces when the line type
65
+ * scale is 1.0. This value is used to calculate how the pattern repeats along a line.
66
+ *
67
+ * Note: Embedded shapes or text strings do not add to the pattern length because they are
68
+ * overlaid and do not interrupt the actual dash pattern.
69
+ *
70
+ * @returns The total length of the line type pattern in drawing units
55
71
  */
56
72
  get: function () {
57
73
  return this._linetype.totalPatternLength;
@@ -61,7 +77,12 @@ var AcDbLinetypeTableRecord = /** @class */ (function (_super) {
61
77
  });
62
78
  Object.defineProperty(AcDbLinetypeTableRecord.prototype, "comments", {
63
79
  /**
64
- * Line type description
80
+ * Gets the description or comments associated with this line type.
81
+ *
82
+ * This property provides additional information about the line type, such as its intended
83
+ * use or any special characteristics.
84
+ *
85
+ * @returns The description text for the line type
65
86
  */
66
87
  get: function () {
67
88
  return this._linetype.description;
@@ -71,7 +92,12 @@ var AcDbLinetypeTableRecord = /** @class */ (function (_super) {
71
92
  });
72
93
  Object.defineProperty(AcDbLinetypeTableRecord.prototype, "linetype", {
73
94
  /**
74
- * Line type information used by renderer.
95
+ * Gets the line type style object used by the renderer.
96
+ *
97
+ * This property provides access to the underlying line type definition that contains
98
+ * all the visual characteristics and rendering information.
99
+ *
100
+ * @returns The line type style object
75
101
  */
76
102
  get: function () {
77
103
  return this._linetype;
@@ -80,10 +106,16 @@ var AcDbLinetypeTableRecord = /** @class */ (function (_super) {
80
106
  configurable: true
81
107
  });
82
108
  /**
83
- * Get the length (in AutoCAD drawing units--the dash will appear this length when the linetype scale
84
- * is 1.0) of the index'th dash in the line type table record.
85
- * @param index Input zero-based index. It must be greater than or equal to zero, but less than the
86
- * value of property 'numDashes'.
109
+ * Gets the length of a specific dash element in the line type pattern.
110
+ *
111
+ * Each dash element in the pattern has a specific length that determines how it appears
112
+ * when the line type is rendered. Positive values represent visible dashes, while negative
113
+ * values represent spaces (pen up).
114
+ *
115
+ * @param index - Zero-based index of the dash element. Must be greater than or equal to zero,
116
+ * but less than the value of property 'numDashes'
117
+ * @returns The length of the specified dash element in drawing units
118
+ * @throws {Error} When the index is out of range
87
119
  */
88
120
  AcDbLinetypeTableRecord.prototype.dashLengthAt = function (index) {
89
121
  if (index < 0 || index >= this.numDashes) {
@@ -1 +1 @@
1
- {"version":3,"file":"AcDbLinetypeTableRecord.js","sourceRoot":"","sources":["../../src/database/AcDbLinetypeTableRecord.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAEA,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAE/D;;;;;;;;;;GAUG;AACH;IAA6C,2CAAqB;IAGhE;;OAEG;IACH,iCAAY,QAA2B;QACrC,YAAA,MAAK,WAAE,SAAA;QACP,KAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAA;QACzB,KAAI,CAAC,SAAS,GAAG,QAAQ,CAAA;;IAC3B,CAAC;IAKD,sBAAI,8CAAS;QAHb;;WAEG;aACH;YACE,OAAO,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAA;QACnE,CAAC;;;OAAA;IAQD,sBAAI,kDAAa;QANjB;;;;;WAKG;aACH;YACE,OAAO,IAAI,CAAC,SAAS,CAAC,kBAAkB,CAAA;QAC1C,CAAC;;;OAAA;IAKD,sBAAI,6CAAQ;QAHZ;;WAEG;aACH;YACE,OAAO,IAAI,CAAC,SAAS,CAAC,WAAW,CAAA;QACnC,CAAC;;;OAAA;IAKD,sBAAI,6CAAQ;QAHZ;;WAEG;aACH;YACE,OAAO,IAAI,CAAC,SAAS,CAAA;QACvB,CAAC;;;OAAA;IAED;;;;;OAKG;IACH,8CAAY,GAAZ,UAAa,KAAa;QACxB,IAAI,KAAK,GAAG,CAAC,IAAI,KAAK,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;YACzC,MAAM,IAAI,KAAK,CACb,+FAA+F,CAChG,CAAA;QACH,CAAC;QACD,OAAO,IAAI,CAAC,SAAS,CAAC,OAAQ,CAAC,KAAK,CAAC,CAAC,aAAa,CAAA;IACrD,CAAC;IACH,8BAAC;AAAD,CAAC,AAzDD,CAA6C,qBAAqB,GAyDjE"}
1
+ {"version":3,"file":"AcDbLinetypeTableRecord.js","sourceRoot":"","sources":["../../src/database/AcDbLinetypeTableRecord.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAEA,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAE/D;;;;;;;;;;;;;GAaG;AACH;IAA6C,2CAAqB;IAGhE;;;;;OAKG;IACH,iCAAY,QAA2B;QACrC,YAAA,MAAK,WAAE,SAAA;QACP,KAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAA;QACzB,KAAI,CAAC,SAAS,GAAG,QAAQ,CAAA;;IAC3B,CAAC;IAUD,sBAAI,8CAAS;QARb;;;;;;;WAOG;aACH;YACE,OAAO,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAA;QACnE,CAAC;;;OAAA;IAaD,sBAAI,kDAAa;QAXjB;;;;;;;;;;WAUG;aACH;YACE,OAAO,IAAI,CAAC,SAAS,CAAC,kBAAkB,CAAA;QAC1C,CAAC;;;OAAA;IAUD,sBAAI,6CAAQ;QARZ;;;;;;;WAOG;aACH;YACE,OAAO,IAAI,CAAC,SAAS,CAAC,WAAW,CAAA;QACnC,CAAC;;;OAAA;IAUD,sBAAI,6CAAQ;QARZ;;;;;;;WAOG;aACH;YACE,OAAO,IAAI,CAAC,SAAS,CAAA;QACvB,CAAC;;;OAAA;IAED;;;;;;;;;;;OAWG;IACH,8CAAY,GAAZ,UAAa,KAAa;QACxB,IAAI,KAAK,GAAG,CAAC,IAAI,KAAK,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;YACzC,MAAM,IAAI,KAAK,CACb,+FAA+F,CAChG,CAAA;QACH,CAAC;QACD,OAAO,IAAI,CAAC,SAAS,CAAC,OAAQ,CAAC,KAAK,CAAC,CAAC,aAAa,CAAA;IACrD,CAAC;IACH,8BAAC;AAAD,CAAC,AAtFD,CAA6C,qBAAqB,GAsFjE"}
@@ -3,71 +3,176 @@ import { AcDbObjectIterator } from '../misc/AcDbObjectIterator';
3
3
  import { AcDbDatabase } from './AcDbDatabase';
4
4
  import { AcDbSymbolTableRecord } from './AcDbSymbolTableRecord';
5
5
  /**
6
- * AcDbSymbolTable is the base class for all of the classes used to export AutoCAD's
7
- * built-in symbol tables.
6
+ * Base class for all symbol tables in AutoCAD.
7
+ *
8
+ * AcDbSymbolTable is the base class for all classes used to manage AutoCAD's
9
+ * built-in symbol tables. Symbol tables organize and store various types of
10
+ * records such as layers, linetypes, text styles, dimension styles, etc.
11
+ *
12
+ * @template RecordType - The type of records this symbol table manages
13
+ *
14
+ * @example
15
+ * ```typescript
16
+ * class MySymbolTable extends AcDbSymbolTable<MySymbolTableRecord> {
17
+ * constructor(db: AcDbDatabase) {
18
+ * super(db);
19
+ * }
20
+ * }
21
+ * ```
8
22
  */
9
23
  export declare class AcDbSymbolTable<RecordType extends AcDbSymbolTableRecord = AcDbSymbolTableRecord> extends AcDbObject {
24
+ /** Map of records indexed by name */
10
25
  protected _recordsByName: Map<string, RecordType>;
26
+ /** Map of records indexed by object ID */
11
27
  protected _recordsById: Map<string, RecordType>;
28
+ /**
29
+ * Creates a new AcDbSymbolTable instance.
30
+ *
31
+ * @param db - The database this symbol table belongs to
32
+ *
33
+ * @example
34
+ * ```typescript
35
+ * const symbolTable = new AcDbSymbolTable(database);
36
+ * ```
37
+ */
12
38
  constructor(db: AcDbDatabase);
13
39
  /**
14
- * Add the record to both the database containing the table and the table itself
15
- * @param record Input record to add to the table
40
+ * Adds a record to both the database containing the table and the table itself.
41
+ *
42
+ * @param record - The record to add to the table
43
+ *
44
+ * @example
45
+ * ```typescript
46
+ * const record = new AcDbSymbolTableRecord({ name: 'MyRecord' });
47
+ * symbolTable.add(record);
48
+ * ```
16
49
  */
17
50
  add(record: RecordType): void;
18
51
  /**
19
- * Remove the record with the specified name
20
- * @param name Input the name of the record to remove
21
- * @returns Return true if removing the record correctly. Otherwise, return false.
52
+ * Removes the record with the specified name.
53
+ *
54
+ * @param name - The name of the record to remove
55
+ * @returns True if the record was found and removed, false otherwise
56
+ *
57
+ * @example
58
+ * ```typescript
59
+ * const removed = symbolTable.remove('MyRecord');
60
+ * if (removed) {
61
+ * console.log('Record removed successfully');
62
+ * }
63
+ * ```
22
64
  */
23
65
  remove(name: string): boolean;
24
66
  /**
25
- * Remove the record with the specified id
26
- * @param id Input object id of the record to remove
27
- * @returns Return true if removing the record correctly. Otherwise, return false.
67
+ * Removes the record with the specified ID.
68
+ *
69
+ * @param id - The object ID of the record to remove
70
+ * @returns True if the record was found and removed, false otherwise
71
+ *
72
+ * @example
73
+ * ```typescript
74
+ * const removed = symbolTable.removeId('some-object-id');
75
+ * if (removed) {
76
+ * console.log('Record removed successfully');
77
+ * }
78
+ * ```
28
79
  */
29
80
  removeId(id: AcDbObjectId): boolean;
30
81
  /**
31
- * Remove all of records in the table.
82
+ * Removes all records from the table.
83
+ *
84
+ * @example
85
+ * ```typescript
86
+ * symbolTable.removeAll();
87
+ * console.log('All records removed');
88
+ * ```
32
89
  */
33
90
  removeAll(): void;
34
91
  /**
35
- * Return true if the table contains a record with the sepcified name. Otherwise it returns false.
92
+ * Checks if the table contains a record with the specified name.
93
+ *
94
+ * @param name - The name to search for
95
+ * @returns True if a record with the specified name exists, false otherwise
36
96
  *
37
- * @param name Input name to search for
97
+ * @example
98
+ * ```typescript
99
+ * if (symbolTable.has('MyRecord')) {
100
+ * console.log('Record exists');
101
+ * }
102
+ * ```
38
103
  */
39
104
  has(name: string): boolean;
40
105
  /**
41
- * Return true if the table contains a record with the sepcified id. Otherwise it returns false.
106
+ * Checks if the table contains a record with the specified ID.
107
+ *
108
+ * @param id - The ID to search for
109
+ * @returns True if a record with the specified ID exists, false otherwise
42
110
  *
43
- * @param id Input id to search for
111
+ * @example
112
+ * ```typescript
113
+ * if (symbolTable.hasId('some-object-id')) {
114
+ * console.log('Record exists');
115
+ * }
116
+ * ```
44
117
  */
45
118
  hasId(id: string): boolean;
46
119
  /**
47
- * Search the table for the record with the specified name. If found, it return the record.
48
- * Otherwise, return undefined.
49
- * @param name Input the name to search
50
- * @returns If found the record with the specified name, return it. Otherwise, return undefined.
120
+ * Searches the table for a record with the specified name.
121
+ *
122
+ * @param name - The name to search for
123
+ * @returns The record with the specified name, or undefined if not found
124
+ *
125
+ * @example
126
+ * ```typescript
127
+ * const record = symbolTable.getAt('MyRecord');
128
+ * if (record) {
129
+ * console.log('Found record:', record.name);
130
+ * }
131
+ * ```
51
132
  */
52
133
  getAt(name: string): RecordType | undefined;
53
134
  /**
54
- * Search the table for the record with the specified id. If found, it return the record.
55
- * Otherwise, return undefined.
56
- * @param id Input the id to search
57
- * @returns If found the record with the specified id, return it. Otherwise, return undefined.
135
+ * Searches the table for a record with the specified ID.
136
+ *
137
+ * @param id - The ID to search for
138
+ * @returns The record with the specified ID, or undefined if not found
139
+ *
140
+ * @example
141
+ * ```typescript
142
+ * const record = symbolTable.getIdAt('some-object-id');
143
+ * if (record) {
144
+ * console.log('Found record:', record.name);
145
+ * }
146
+ * ```
58
147
  */
59
148
  getIdAt(id: AcDbObjectId): RecordType | undefined;
60
149
  /**
61
- * Search the table for the record with the specified owner id. If found, it return the record.
62
- * Otherwise, return undefined.
63
- * @param id Input the owner id to search
64
- * @returns If found the record with the specified owner id, return it. Otherwise, return undefined.
150
+ * Gets the owner ID of a record with the specified ID.
151
+ *
152
+ * @param id - The ID to search for
153
+ * @returns The record with the specified ID, or undefined if not found
154
+ *
155
+ * @example
156
+ * ```typescript
157
+ * const record = symbolTable.getOwnerIdAt('some-object-id');
158
+ * if (record) {
159
+ * console.log('Owner ID:', record.ownerId);
160
+ * }
161
+ * ```
65
162
  */
66
163
  getOwnerIdAt(id: AcDbObjectId): RecordType | undefined;
67
164
  /**
68
- * Create an iterator object that can be used to iterate through the contents of the symbol table.
165
+ * Creates an iterator object that can be used to iterate over the records in the table.
166
+ *
167
+ * @returns An iterator object that can be used to iterate over the records
69
168
  *
70
- * @returns Return an iterator object that can be used to iterate through the contents of the symbol table.
169
+ * @example
170
+ * ```typescript
171
+ * const iterator = symbolTable.newIterator();
172
+ * for (const record of iterator) {
173
+ * console.log('Record:', record.name);
174
+ * }
175
+ * ```
71
176
  */
72
177
  newIterator(): AcDbObjectIterator<RecordType>;
73
178
  }
@@ -1 +1 @@
1
- {"version":3,"file":"AcDbSymbolTable.d.ts","sourceRoot":"","sources":["../../src/database/AcDbSymbolTable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AAC7D,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAA;AAC/D,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAE/D;;;GAGG;AACH,qBAAa,eAAe,CAC1B,UAAU,SAAS,qBAAqB,GAAG,qBAAqB,CAChE,SAAQ,UAAU;IAClB,SAAS,CAAC,cAAc,EAAE,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,CAAA;IACjD,SAAS,CAAC,YAAY,EAAE,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,CAAA;gBAEnC,EAAE,EAAE,YAAY;IAO5B;;;OAGG;IACH,GAAG,CAAC,MAAM,EAAE,UAAU;IAMtB;;;;OAIG;IACH,MAAM,CAAC,IAAI,EAAE,MAAM;IAUnB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,EAAE,YAAY;IAUzB;;OAEG;IACH,SAAS;IAKT;;;;OAIG;IACH,GAAG,CAAC,IAAI,EAAE,MAAM;IAIhB;;;;OAIG;IACH,KAAK,CAAC,EAAE,EAAE,MAAM;IAIhB;;;;;OAKG;IACH,KAAK,CAAC,IAAI,EAAE,MAAM;IAIlB;;;;;OAKG;IACH,OAAO,CAAC,EAAE,EAAE,YAAY;IAIxB;;;;;OAKG;IACH,YAAY,CAAC,EAAE,EAAE,YAAY,GAAG,UAAU,GAAG,SAAS;IAUtD;;;;OAIG;IACH,WAAW,IAAI,kBAAkB,CAAC,UAAU,CAAC;CAG9C"}
1
+ {"version":3,"file":"AcDbSymbolTable.d.ts","sourceRoot":"","sources":["../../src/database/AcDbSymbolTable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AAC7D,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAA;AAC/D,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAE/D;;;;;;;;;;;;;;;;;GAiBG;AACH,qBAAa,eAAe,CAC1B,UAAU,SAAS,qBAAqB,GAAG,qBAAqB,CAChE,SAAQ,UAAU;IAClB,qCAAqC;IACrC,SAAS,CAAC,cAAc,EAAE,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,CAAA;IACjD,0CAA0C;IAC1C,SAAS,CAAC,YAAY,EAAE,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,CAAA;IAE/C;;;;;;;;;OASG;gBACS,EAAE,EAAE,YAAY;IAO5B;;;;;;;;;;OAUG;IACH,GAAG,CAAC,MAAM,EAAE,UAAU;IAMtB;;;;;;;;;;;;;OAaG;IACH,MAAM,CAAC,IAAI,EAAE,MAAM;IAUnB;;;;;;;;;;;;;OAaG;IACH,QAAQ,CAAC,EAAE,EAAE,YAAY;IAUzB;;;;;;;;OAQG;IACH,SAAS;IAKT;;;;;;;;;;;;OAYG;IACH,GAAG,CAAC,IAAI,EAAE,MAAM;IAIhB;;;;;;;;;;;;OAYG;IACH,KAAK,CAAC,EAAE,EAAE,MAAM;IAIhB;;;;;;;;;;;;;OAaG;IACH,KAAK,CAAC,IAAI,EAAE,MAAM;IAIlB;;;;;;;;;;;;;OAaG;IACH,OAAO,CAAC,EAAE,EAAE,YAAY;IAIxB;;;;;;;;;;;;;OAaG;IACH,YAAY,CAAC,EAAE,EAAE,YAAY,GAAG,UAAU,GAAG,SAAS;IAItD;;;;;;;;;;;;OAYG;IACH,WAAW,IAAI,kBAAkB,CAAC,UAAU,CAAC;CAG9C"}