@mlightcad/data-model 1.1.1 → 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 +8 -4
@@ -2,30 +2,109 @@ import { AcGeBox3d, AcGeMatrix3d, AcGePoint3d, AcGePointLike } from '@mlightcad/
2
2
  import { AcGiRenderer } from '@mlightcad/graphic-interface';
3
3
  import { AcDbEntity } from './AcDbEntity';
4
4
  /**
5
- * The class represents the point entity in AutoCAD.
5
+ * Represents a point entity in AutoCAD.
6
+ *
7
+ * A point is a 0-dimensional geometric object defined by its position in 3D space.
8
+ * Points are fundamental drawing entities that can be used to mark specific
9
+ * locations in drawings or as reference points for other entities.
10
+ *
11
+ * @example
12
+ * ```typescript
13
+ * // Create a point at the origin
14
+ * const point = new AcDbPoint();
15
+ * point.position = new AcGePoint3d(0, 0, 0);
16
+ *
17
+ * // Create a point at a specific location
18
+ * const point2 = new AcDbPoint();
19
+ * point2.position = new AcGePoint3d(10, 20, 5);
20
+ *
21
+ * // Access point properties
22
+ * console.log(`Point position: ${point.position}`);
23
+ * ```
6
24
  */
7
25
  export declare class AcDbPoint extends AcDbEntity {
26
+ /** The underlying geometric point object */
8
27
  private _geo;
9
28
  /**
10
- * This constructor initializes the line object to use start as the start point, and end
11
- * as the endpoint. Both points must be in WCS coordinates.
29
+ * Creates a new point entity.
30
+ *
31
+ * This constructor initializes a point object at the origin (0,0,0).
32
+ * The position can be set after creation using the position property.
33
+ *
34
+ * @example
35
+ * ```typescript
36
+ * const point = new AcDbPoint();
37
+ * point.position = new AcGePoint3d(5, 10, 0);
38
+ * ```
12
39
  */
13
40
  constructor();
14
41
  /**
15
- * The position of this point in WCS coordinates
42
+ * Gets the position of this point in WCS coordinates.
43
+ *
44
+ * @returns The position as a 3D point
45
+ *
46
+ * @example
47
+ * ```typescript
48
+ * const position = point.position;
49
+ * console.log(`Point at: ${position.x}, ${position.y}, ${position.z}`);
50
+ * ```
16
51
  */
17
52
  get position(): AcGePoint3d;
53
+ /**
54
+ * Sets the position of this point in WCS coordinates.
55
+ *
56
+ * @param value - The new position
57
+ *
58
+ * @example
59
+ * ```typescript
60
+ * point.position = new AcGePoint3d(15, 25, 0);
61
+ * ```
62
+ */
18
63
  set position(value: AcGePointLike);
19
64
  /**
20
- * @inheritdoc
65
+ * Gets the geometric extents (bounding box) of this point.
66
+ *
67
+ * For a point, the bounding box is a minimal box that contains just the point.
68
+ *
69
+ * @returns The bounding box that encompasses the point
70
+ *
71
+ * @example
72
+ * ```typescript
73
+ * const extents = point.geometricExtents;
74
+ * console.log(`Point bounds: ${extents.minPoint} to ${extents.maxPoint}`);
75
+ * ```
21
76
  */
22
77
  get geometricExtents(): AcGeBox3d;
23
78
  /**
24
- * @inheritdoc
79
+ * Transforms this point by the specified matrix.
80
+ *
81
+ * This method applies a geometric transformation to the point, updating
82
+ * its position according to the transformation matrix.
83
+ *
84
+ * @param matrix - The transformation matrix to apply
85
+ * @returns This point after transformation
86
+ *
87
+ * @example
88
+ * ```typescript
89
+ * const translationMatrix = AcGeMatrix3d.translation(10, 0, 0);
90
+ * point.transformBy(translationMatrix);
91
+ * // Point is now translated 10 units in the X direction
92
+ * ```
25
93
  */
26
94
  transformBy(matrix: AcGeMatrix3d): this;
27
95
  /**
28
- * @inheritdoc
96
+ * Draws this point using the specified renderer.
97
+ *
98
+ * This method renders the point using the point's current style properties,
99
+ * including the display mode and size from the database.
100
+ *
101
+ * @param renderer - The renderer to use for drawing
102
+ * @returns The rendered point entity, or undefined if drawing failed
103
+ *
104
+ * @example
105
+ * ```typescript
106
+ * const renderedPoint = point.draw(renderer);
107
+ * ```
29
108
  */
30
109
  draw(renderer: AcGiRenderer): import("@mlightcad/graphic-interface").AcGiEntity;
31
110
  }
@@ -1 +1 @@
1
- {"version":3,"file":"AcDbPoint.d.ts","sourceRoot":"","sources":["../../src/entity/AcDbPoint.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,SAAS,EACT,YAAY,EACZ,WAAW,EACX,aAAa,EACd,MAAM,4BAA4B,CAAA;AACnC,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAA;AAE3D,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAEzC;;GAEG;AACH,qBAAa,SAAU,SAAQ,UAAU;IACvC,OAAO,CAAC,IAAI,CAAa;IACzB;;;OAGG;;IAMH;;OAEG;IACH,IAAI,QAAQ,IAAI,WAAW,CAE1B;IACD,IAAI,QAAQ,CAAC,KAAK,EAAE,aAAa,EAEhC;IAED;;OAEG;IACH,IAAI,gBAAgB,IAAI,SAAS,CAEhC;IAED;;OAEG;IACH,WAAW,CAAC,MAAM,EAAE,YAAY;IAKhC;;OAEG;IACH,IAAI,CAAC,QAAQ,EAAE,YAAY;CAO5B"}
1
+ {"version":3,"file":"AcDbPoint.d.ts","sourceRoot":"","sources":["../../src/entity/AcDbPoint.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,SAAS,EACT,YAAY,EACZ,WAAW,EACX,aAAa,EACd,MAAM,4BAA4B,CAAA;AACnC,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAA;AAE3D,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAEzC;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,qBAAa,SAAU,SAAQ,UAAU;IACvC,4CAA4C;IAC5C,OAAO,CAAC,IAAI,CAAa;IAEzB;;;;;;;;;;;OAWG;;IAMH;;;;;;;;;;OAUG;IACH,IAAI,QAAQ,IAAI,WAAW,CAE1B;IAED;;;;;;;;;OASG;IACH,IAAI,QAAQ,CAAC,KAAK,EAAE,aAAa,EAEhC;IAED;;;;;;;;;;;;OAYG;IACH,IAAI,gBAAgB,IAAI,SAAS,CAEhC;IAED;;;;;;;;;;;;;;;OAeG;IACH,WAAW,CAAC,MAAM,EAAE,YAAY;IAKhC;;;;;;;;;;;;;OAaG;IACH,IAAI,CAAC,QAAQ,EAAE,YAAY;CAO5B"}
@@ -16,13 +16,39 @@ var __extends = (this && this.__extends) || (function () {
16
16
  import { AcGeBox3d, AcGePoint3d } from '@mlightcad/geometry-engine';
17
17
  import { AcDbEntity } from './AcDbEntity';
18
18
  /**
19
- * The class represents the point entity in AutoCAD.
19
+ * Represents a point entity in AutoCAD.
20
+ *
21
+ * A point is a 0-dimensional geometric object defined by its position in 3D space.
22
+ * Points are fundamental drawing entities that can be used to mark specific
23
+ * locations in drawings or as reference points for other entities.
24
+ *
25
+ * @example
26
+ * ```typescript
27
+ * // Create a point at the origin
28
+ * const point = new AcDbPoint();
29
+ * point.position = new AcGePoint3d(0, 0, 0);
30
+ *
31
+ * // Create a point at a specific location
32
+ * const point2 = new AcDbPoint();
33
+ * point2.position = new AcGePoint3d(10, 20, 5);
34
+ *
35
+ * // Access point properties
36
+ * console.log(`Point position: ${point.position}`);
37
+ * ```
20
38
  */
21
39
  var AcDbPoint = /** @class */ (function (_super) {
22
40
  __extends(AcDbPoint, _super);
23
41
  /**
24
- * This constructor initializes the line object to use start as the start point, and end
25
- * as the endpoint. Both points must be in WCS coordinates.
42
+ * Creates a new point entity.
43
+ *
44
+ * This constructor initializes a point object at the origin (0,0,0).
45
+ * The position can be set after creation using the position property.
46
+ *
47
+ * @example
48
+ * ```typescript
49
+ * const point = new AcDbPoint();
50
+ * point.position = new AcGePoint3d(5, 10, 0);
51
+ * ```
26
52
  */
27
53
  function AcDbPoint() {
28
54
  var _this = _super.call(this) || this;
@@ -31,11 +57,29 @@ var AcDbPoint = /** @class */ (function (_super) {
31
57
  }
32
58
  Object.defineProperty(AcDbPoint.prototype, "position", {
33
59
  /**
34
- * The position of this point in WCS coordinates
60
+ * Gets the position of this point in WCS coordinates.
61
+ *
62
+ * @returns The position as a 3D point
63
+ *
64
+ * @example
65
+ * ```typescript
66
+ * const position = point.position;
67
+ * console.log(`Point at: ${position.x}, ${position.y}, ${position.z}`);
68
+ * ```
35
69
  */
36
70
  get: function () {
37
71
  return this._geo;
38
72
  },
73
+ /**
74
+ * Sets the position of this point in WCS coordinates.
75
+ *
76
+ * @param value - The new position
77
+ *
78
+ * @example
79
+ * ```typescript
80
+ * point.position = new AcGePoint3d(15, 25, 0);
81
+ * ```
82
+ */
39
83
  set: function (value) {
40
84
  this._geo.set(value.x, value.y, value.z || 0);
41
85
  },
@@ -44,7 +88,17 @@ var AcDbPoint = /** @class */ (function (_super) {
44
88
  });
45
89
  Object.defineProperty(AcDbPoint.prototype, "geometricExtents", {
46
90
  /**
47
- * @inheritdoc
91
+ * Gets the geometric extents (bounding box) of this point.
92
+ *
93
+ * For a point, the bounding box is a minimal box that contains just the point.
94
+ *
95
+ * @returns The bounding box that encompasses the point
96
+ *
97
+ * @example
98
+ * ```typescript
99
+ * const extents = point.geometricExtents;
100
+ * console.log(`Point bounds: ${extents.minPoint} to ${extents.maxPoint}`);
101
+ * ```
48
102
  */
49
103
  get: function () {
50
104
  return new AcGeBox3d().expandByPoint(this._geo);
@@ -53,14 +107,38 @@ var AcDbPoint = /** @class */ (function (_super) {
53
107
  configurable: true
54
108
  });
55
109
  /**
56
- * @inheritdoc
110
+ * Transforms this point by the specified matrix.
111
+ *
112
+ * This method applies a geometric transformation to the point, updating
113
+ * its position according to the transformation matrix.
114
+ *
115
+ * @param matrix - The transformation matrix to apply
116
+ * @returns This point after transformation
117
+ *
118
+ * @example
119
+ * ```typescript
120
+ * const translationMatrix = AcGeMatrix3d.translation(10, 0, 0);
121
+ * point.transformBy(translationMatrix);
122
+ * // Point is now translated 10 units in the X direction
123
+ * ```
57
124
  */
58
125
  AcDbPoint.prototype.transformBy = function (matrix) {
59
126
  this._geo.applyMatrix3d(matrix);
60
127
  return this;
61
128
  };
62
129
  /**
63
- * @inheritdoc
130
+ * Draws this point using the specified renderer.
131
+ *
132
+ * This method renders the point using the point's current style properties,
133
+ * including the display mode and size from the database.
134
+ *
135
+ * @param renderer - The renderer to use for drawing
136
+ * @returns The rendered point entity, or undefined if drawing failed
137
+ *
138
+ * @example
139
+ * ```typescript
140
+ * const renderedPoint = point.draw(renderer);
141
+ * ```
64
142
  */
65
143
  AcDbPoint.prototype.draw = function (renderer) {
66
144
  return renderer.point(this._geo, {
@@ -1 +1 @@
1
- {"version":3,"file":"AcDbPoint.js","sourceRoot":"","sources":["../../src/entity/AcDbPoint.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,OAAO,EACL,SAAS,EAET,WAAW,EAEZ,MAAM,4BAA4B,CAAA;AAGnC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAEzC;;GAEG;AACH;IAA+B,6BAAU;IAEvC;;;OAGG;IACH;QACE,YAAA,MAAK,WAAE,SAAA;QACP,KAAI,CAAC,IAAI,GAAG,IAAI,WAAW,EAAE,CAAA;;IAC/B,CAAC;IAKD,sBAAI,+BAAQ;QAHZ;;WAEG;aACH;YACE,OAAO,IAAI,CAAC,IAAI,CAAA;QAClB,CAAC;aACD,UAAa,KAAoB;YAC/B,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,CAAA;QAC/C,CAAC;;;OAHA;IAQD,sBAAI,uCAAgB;QAHpB;;WAEG;aACH;YACE,OAAO,IAAI,SAAS,EAAE,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;QACjD,CAAC;;;OAAA;IAED;;OAEG;IACH,+BAAW,GAAX,UAAY,MAAoB;QAC9B,IAAI,CAAC,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAA;QAC/B,OAAO,IAAI,CAAA;IACb,CAAC;IAED;;OAEG;IACH,wBAAI,GAAJ,UAAK,QAAsB;QACzB,OAAO,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,EAAE;YAC/B,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,MAAM;YACjC,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,MAAM;YACjC,KAAK,EAAE,IAAI,CAAC,QAAQ;SACrB,CAAC,CAAA;IACJ,CAAC;IACH,gBAAC;AAAD,CAAC,AA9CD,CAA+B,UAAU,GA8CxC"}
1
+ {"version":3,"file":"AcDbPoint.js","sourceRoot":"","sources":["../../src/entity/AcDbPoint.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,OAAO,EACL,SAAS,EAET,WAAW,EAEZ,MAAM,4BAA4B,CAAA;AAGnC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAEzC;;;;;;;;;;;;;;;;;;;;GAoBG;AACH;IAA+B,6BAAU;IAIvC;;;;;;;;;;;OAWG;IACH;QACE,YAAA,MAAK,WAAE,SAAA;QACP,KAAI,CAAC,IAAI,GAAG,IAAI,WAAW,EAAE,CAAA;;IAC/B,CAAC;IAaD,sBAAI,+BAAQ;QAXZ;;;;;;;;;;WAUG;aACH;YACE,OAAO,IAAI,CAAC,IAAI,CAAA;QAClB,CAAC;QAED;;;;;;;;;WASG;aACH,UAAa,KAAoB;YAC/B,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,CAAA;QAC/C,CAAC;;;OAdA;IA6BD,sBAAI,uCAAgB;QAbpB;;;;;;;;;;;;WAYG;aACH;YACE,OAAO,IAAI,SAAS,EAAE,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;QACjD,CAAC;;;OAAA;IAED;;;;;;;;;;;;;;;OAeG;IACH,+BAAW,GAAX,UAAY,MAAoB;QAC9B,IAAI,CAAC,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAA;QAC/B,OAAO,IAAI,CAAA;IACb,CAAC;IAED;;;;;;;;;;;;;OAaG;IACH,wBAAI,GAAJ,UAAK,QAAsB;QACzB,OAAO,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,EAAE;YAC/B,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,MAAM;YACjC,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,MAAM;YACjC,KAAK,EAAE,IAAI,CAAC,QAAQ;SACrB,CAAC,CAAA;IACJ,CAAC;IACH,gBAAC;AAAD,CAAC,AA7GD,CAA+B,UAAU,GA6GxC"}
@@ -2,70 +2,217 @@ import { AcGeBox3d, AcGePoint2d, AcGePoint3d } from '@mlightcad/geometry-engine'
2
2
  import { AcGiRenderer } from '@mlightcad/graphic-interface';
3
3
  import { AcDbCurve } from './AcDbCurve';
4
4
  /**
5
- * The class represents the polyline entity in AutoCAD. A lightweight polyline has:
5
+ * Represents a polyline entity in AutoCAD.
6
+ *
7
+ * A polyline is a complex geometric object composed of connected line segments
8
+ * and/or arc segments. Polylines can have:
6
9
  * - Straight line segments
7
- * - Bulge (arc segments)
10
+ * - Bulge (arc segments) between vertices
8
11
  * - Constant and variable width
9
12
  * - Thickness
13
+ * - Multiple vertices
14
+ *
15
+ * Polylines are commonly used for creating complex shapes, paths, and boundaries
16
+ * in drawings.
17
+ *
18
+ * @example
19
+ * ```typescript
20
+ * // Create a polyline
21
+ * const polyline = new AcDbPolyline();
22
+ *
23
+ * // Add vertices to create a rectangle
24
+ * polyline.addVertexAt(0, new AcGePoint2d(0, 0));
25
+ * polyline.addVertexAt(1, new AcGePoint2d(10, 0));
26
+ * polyline.addVertexAt(2, new AcGePoint2d(10, 5));
27
+ * polyline.addVertexAt(3, new AcGePoint2d(0, 5));
28
+ * polyline.closed = true; // Close the polyline
29
+ *
30
+ * // Access polyline properties
31
+ * console.log(`Number of vertices: ${polyline.numberOfVertices}`);
32
+ * console.log(`Is closed: ${polyline.closed}`);
33
+ * ```
10
34
  */
11
35
  export declare class AcDbPolyline extends AcDbCurve {
36
+ /** The elevation (Z-coordinate) of the polyline plane */
12
37
  private _elevation;
38
+ /** The underlying geometric polyline object */
13
39
  private _geo;
14
40
  /**
15
- * Create one empty polyline
41
+ * Creates a new empty polyline entity.
42
+ *
43
+ * This constructor initializes an empty polyline with no vertices.
44
+ * Vertices can be added using the addVertexAt method.
45
+ *
46
+ * @example
47
+ * ```typescript
48
+ * const polyline = new AcDbPolyline();
49
+ * // Add vertices as needed
50
+ * polyline.addVertexAt(0, new AcGePoint2d(0, 0));
51
+ * ```
16
52
  */
17
53
  constructor();
18
54
  /**
19
- * The number of vertices in the polyline
55
+ * Gets the number of vertices in this polyline.
56
+ *
57
+ * @returns The number of vertices
58
+ *
59
+ * @example
60
+ * ```typescript
61
+ * const vertexCount = polyline.numberOfVertices;
62
+ * console.log(`Polyline has ${vertexCount} vertices`);
63
+ * ```
20
64
  */
21
65
  get numberOfVertices(): number;
22
66
  /**
23
- * The distance of the polyline's plane from the WCS origin.
67
+ * Gets the elevation of this polyline.
68
+ *
69
+ * The elevation is the distance of the polyline's plane from the WCS origin
70
+ * along the Z-axis.
71
+ *
72
+ * @returns The elevation value
73
+ *
74
+ * @example
75
+ * ```typescript
76
+ * const elevation = polyline.elevation;
77
+ * console.log(`Polyline elevation: ${elevation}`);
78
+ * ```
24
79
  */
25
80
  get elevation(): number;
81
+ /**
82
+ * Sets the elevation of this polyline.
83
+ *
84
+ * @param value - The new elevation value
85
+ *
86
+ * @example
87
+ * ```typescript
88
+ * polyline.elevation = 10;
89
+ * ```
90
+ */
26
91
  set elevation(value: number);
27
92
  /**
28
- * The flag to indicate whether the polyline is closed (that is, there is a segment drawn from the
29
- * last vertex to the first) if 'value' is true. Set the polyline to be open (no segment between
30
- * the last and first vertices) if 'value' is false.
93
+ * Gets whether this polyline is closed.
94
+ *
95
+ * A closed polyline has a segment drawn from the last vertex to the first vertex,
96
+ * forming a complete loop.
97
+ *
98
+ * @returns True if the polyline is closed, false otherwise
99
+ *
100
+ * @example
101
+ * ```typescript
102
+ * const isClosed = polyline.closed;
103
+ * console.log(`Polyline is closed: ${isClosed}`);
104
+ * ```
31
105
  */
32
106
  get closed(): boolean;
107
+ /**
108
+ * Sets whether this polyline is closed.
109
+ *
110
+ * @param value - True to close the polyline, false to open it
111
+ *
112
+ * @example
113
+ * ```typescript
114
+ * polyline.closed = true; // Close the polyline
115
+ * ```
116
+ */
33
117
  set closed(value: boolean);
34
118
  /**
35
- * This function adds a vertex to the polyline. If index is 0, the vertex will become the first
36
- * vertex of the polyline. If index is the value returned by AcDbPolyline.numberOfVertices,
37
- * then the vertex will become the last vertex of the polyline. Otherwise the vertex will be
38
- * added just before the index vertex.
39
- *
40
- * @param index Input index (0 based) before which to insert the vertex
41
- * @param pt Input vertex location point
42
- * @param bulge Input bulge value for vertex
43
- * @param startWidth Input start width for vertex
44
- * @param endWidth Input end width for vertex
119
+ * Adds a vertex to this polyline at the specified index.
120
+ *
121
+ * This method inserts a vertex at the specified position. If the index is 0,
122
+ * the vertex becomes the first vertex. If the index equals the number of vertices,
123
+ * the vertex becomes the last vertex. Otherwise, the vertex is inserted before
124
+ * the specified index.
125
+ *
126
+ * @param index - The index (0-based) before which to insert the vertex
127
+ * @param pt - The vertex location point
128
+ * @param bulge - The bulge value for the vertex (0 for straight line, >0 for arc)
129
+ * @param startWidth - The starting width for the vertex (-1 for default)
130
+ * @param endWidth - The ending width for the vertex (-1 for default)
131
+ *
132
+ * @example
133
+ * ```typescript
134
+ * // Add a straight line vertex
135
+ * polyline.addVertexAt(0, new AcGePoint2d(0, 0));
136
+ *
137
+ * // Add a vertex with arc bulge
138
+ * polyline.addVertexAt(1, new AcGePoint2d(5, 0), 0.5);
139
+ *
140
+ * // Add a vertex with custom width
141
+ * polyline.addVertexAt(2, new AcGePoint2d(10, 0), 0, 2, 1);
142
+ * ```
45
143
  */
46
144
  addVertexAt(index: number, pt: AcGePoint2d, bulge?: number, startWidth?: number, endWidth?: number): void;
47
145
  /**
48
- * Get the 2D location of the vertex index in the polyline's own object coordinate system (OCS).
146
+ * Gets the 2D location of a vertex at the specified index.
49
147
  *
50
- * @param index Input index (0 based) of the vertex
148
+ * The point is returned in the polyline's own object coordinate system (OCS).
149
+ *
150
+ * @param index - The index (0-based) of the vertex
151
+ * @returns The 2D point location of the vertex
152
+ *
153
+ * @example
154
+ * ```typescript
155
+ * const point2d = polyline.getPoint2dAt(0);
156
+ * console.log(`Vertex 0: ${point2d.x}, ${point2d.y}`);
157
+ * ```
51
158
  */
52
159
  getPoint2dAt(index: number): AcGePoint2d;
53
160
  /**
54
- * Get the 3D location of the vertex index in World Coordinates.
161
+ * Gets the 3D location of a vertex at the specified index.
162
+ *
163
+ * The point is returned in World Coordinates, with the Z-coordinate
164
+ * set to the polyline's elevation.
165
+ *
166
+ * @param index - The index (0-based) of the vertex
167
+ * @returns The 3D point location of the vertex
55
168
  *
56
- * @param index Input index (0 based) of the vertex
169
+ * @example
170
+ * ```typescript
171
+ * const point3d = polyline.getPoint3dAt(0);
172
+ * console.log(`Vertex 0: ${point3d.x}, ${point3d.y}, ${point3d.z}`);
173
+ * ```
57
174
  */
58
175
  getPoint3dAt(index: number): AcGePoint3d;
59
176
  /**
60
- * @inheritdoc
177
+ * Gets the geometric extents (bounding box) of this polyline.
178
+ *
179
+ * @returns The bounding box that encompasses the entire polyline
180
+ *
181
+ * @example
182
+ * ```typescript
183
+ * const extents = polyline.geometricExtents;
184
+ * console.log(`Polyline bounds: ${extents.minPoint} to ${extents.maxPoint}`);
185
+ * ```
61
186
  */
62
187
  get geometricExtents(): AcGeBox3d;
63
188
  /**
64
- * @inheritdoc
189
+ * Gets the grip points for this polyline.
190
+ *
191
+ * Grip points are control points that can be used to modify the polyline.
192
+ * For a polyline, the grip points are all the vertices.
193
+ *
194
+ * @returns Array of grip points (all vertices)
195
+ *
196
+ * @example
197
+ * ```typescript
198
+ * const gripPoints = polyline.subGetGripPoints();
199
+ * // gripPoints contains all vertices of the polyline
200
+ * ```
65
201
  */
66
202
  subGetGripPoints(): AcGePoint3d[];
67
203
  /**
68
- * @inheritdoc
204
+ * Draws this polyline using the specified renderer.
205
+ *
206
+ * This method renders the polyline as a series of connected line segments
207
+ * using the polyline's current style properties.
208
+ *
209
+ * @param renderer - The renderer to use for drawing
210
+ * @returns The rendered polyline entity, or undefined if drawing failed
211
+ *
212
+ * @example
213
+ * ```typescript
214
+ * const renderedPolyline = polyline.draw(renderer);
215
+ * ```
69
216
  */
70
217
  draw(renderer: AcGiRenderer): import("@mlightcad/graphic-interface").AcGiEntity;
71
218
  }
@@ -1 +1 @@
1
- {"version":3,"file":"AcDbPolyline.d.ts","sourceRoot":"","sources":["../../src/entity/AcDbPolyline.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,SAAS,EACT,WAAW,EACX,WAAW,EAGZ,MAAM,4BAA4B,CAAA;AACnC,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAA;AAE3D,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AAUvC;;;;;;GAMG;AACH,qBAAa,YAAa,SAAQ,SAAS;IACzC,OAAO,CAAC,UAAU,CAAQ;IAC1B,OAAO,CAAC,IAAI,CAAoC;IAEhD;;OAEG;;IAOH;;OAEG;IACH,IAAI,gBAAgB,IAAI,MAAM,CAE7B;IAED;;OAEG;IACH,IAAI,SAAS,IAAI,MAAM,CAEtB;IACD,IAAI,SAAS,CAAC,KAAK,EAAE,MAAM,EAE1B;IAED;;;;OAIG;IACH,IAAI,MAAM,IAAI,OAAO,CAEpB;IACD,IAAI,MAAM,CAAC,KAAK,EAAE,OAAO,EAExB;IAED;;;;;;;;;;;OAWG;IACH,WAAW,CACT,KAAK,EAAE,MAAM,EACb,EAAE,EAAE,WAAW,EACf,KAAK,GAAE,MAAU,EACjB,UAAU,GAAE,MAAW,EACvB,QAAQ,GAAE,MAAW;IAcvB;;;;OAIG;IACH,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,WAAW;IAIxC;;;;OAIG;IACH,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,WAAW;IAKxC;;OAEG;IACH,IAAI,gBAAgB,IAAI,SAAS,CAMhC;IAED;;OAEG;IACH,gBAAgB;IAQhB;;OAEG;IACH,IAAI,CAAC,QAAQ,EAAE,YAAY;CAQ5B"}
1
+ {"version":3,"file":"AcDbPolyline.d.ts","sourceRoot":"","sources":["../../src/entity/AcDbPolyline.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,SAAS,EACT,WAAW,EACX,WAAW,EAGZ,MAAM,4BAA4B,CAAA;AACnC,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAA;AAE3D,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AAevC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,qBAAa,YAAa,SAAQ,SAAS;IACzC,yDAAyD;IACzD,OAAO,CAAC,UAAU,CAAQ;IAC1B,+CAA+C;IAC/C,OAAO,CAAC,IAAI,CAAoC;IAEhD;;;;;;;;;;;;OAYG;;IAOH;;;;;;;;;;OAUG;IACH,IAAI,gBAAgB,IAAI,MAAM,CAE7B;IAED;;;;;;;;;;;;;OAaG;IACH,IAAI,SAAS,IAAI,MAAM,CAEtB;IAED;;;;;;;;;OASG;IACH,IAAI,SAAS,CAAC,KAAK,EAAE,MAAM,EAE1B;IAED;;;;;;;;;;;;;OAaG;IACH,IAAI,MAAM,IAAI,OAAO,CAEpB;IAED;;;;;;;;;OASG;IACH,IAAI,MAAM,CAAC,KAAK,EAAE,OAAO,EAExB;IAED;;;;;;;;;;;;;;;;;;;;;;;;;OAyBG;IACH,WAAW,CACT,KAAK,EAAE,MAAM,EACb,EAAE,EAAE,WAAW,EACf,KAAK,GAAE,MAAU,EACjB,UAAU,GAAE,MAAW,EACvB,QAAQ,GAAE,MAAW;IAcvB;;;;;;;;;;;;;OAaG;IACH,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,WAAW;IAIxC;;;;;;;;;;;;;;OAcG;IACH,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,WAAW;IAKxC;;;;;;;;;;OAUG;IACH,IAAI,gBAAgB,IAAI,SAAS,CAMhC;IAED;;;;;;;;;;;;;OAaG;IACH,gBAAgB;IAQhB;;;;;;;;;;;;;OAaG;IACH,IAAI,CAAC,QAAQ,EAAE,YAAY;CAQ5B"}