@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.
- package/dist/data-model.js +5490 -1022
- package/dist/data-model.umd.cjs +2 -2
- package/lib/base/AcDbHostApplicationServices.d.ts +72 -6
- package/lib/base/AcDbHostApplicationServices.d.ts.map +1 -1
- package/lib/base/AcDbHostApplicationServices.js +71 -7
- package/lib/base/AcDbHostApplicationServices.js.map +1 -1
- package/lib/base/AcDbObject.d.ts +160 -25
- package/lib/base/AcDbObject.d.ts.map +1 -1
- package/lib/base/AcDbObject.js +149 -25
- package/lib/base/AcDbObject.js.map +1 -1
- package/lib/converter/AcDbBatchProcessing.d.ts +112 -10
- package/lib/converter/AcDbBatchProcessing.d.ts.map +1 -1
- package/lib/converter/AcDbBatchProcessing.js +110 -11
- package/lib/converter/AcDbBatchProcessing.js.map +1 -1
- package/lib/converter/AcDbDxfConverter.d.ts +224 -6
- package/lib/converter/AcDbDxfConverter.d.ts.map +1 -1
- package/lib/converter/AcDbDxfConverter.js +224 -6
- package/lib/converter/AcDbDxfConverter.js.map +1 -1
- package/lib/converter/AcDbDxfParseWorker.d.ts +16 -0
- package/lib/converter/AcDbDxfParseWorker.d.ts.map +1 -1
- package/lib/converter/AcDbDxfParseWorker.js +16 -0
- package/lib/converter/AcDbDxfParseWorker.js.map +1 -1
- package/lib/converter/AcDbEntitiyConverter.d.ts +118 -3
- package/lib/converter/AcDbEntitiyConverter.d.ts.map +1 -1
- package/lib/converter/AcDbEntitiyConverter.js +118 -3
- package/lib/converter/AcDbEntitiyConverter.js.map +1 -1
- package/lib/converter/AcDbObjectConverter.d.ts +52 -0
- package/lib/converter/AcDbObjectConverter.d.ts.map +1 -1
- package/lib/converter/AcDbObjectConverter.js +52 -0
- package/lib/converter/AcDbObjectConverter.js.map +1 -1
- package/lib/database/AcDbBlockTable.d.ts +35 -3
- package/lib/database/AcDbBlockTable.d.ts.map +1 -1
- package/lib/database/AcDbBlockTable.js +35 -3
- package/lib/database/AcDbBlockTable.js.map +1 -1
- package/lib/database/AcDbBlockTableRecord.d.ts +98 -15
- package/lib/database/AcDbBlockTableRecord.d.ts.map +1 -1
- package/lib/database/AcDbBlockTableRecord.js +96 -15
- package/lib/database/AcDbBlockTableRecord.js.map +1 -1
- package/lib/database/AcDbDatabase.d.ts +303 -33
- package/lib/database/AcDbDatabase.d.ts.map +1 -1
- package/lib/database/AcDbDatabase.js +223 -39
- package/lib/database/AcDbDatabase.js.map +1 -1
- package/lib/database/AcDbDatabaseConverter.d.ts +77 -12
- package/lib/database/AcDbDatabaseConverter.d.ts.map +1 -1
- package/lib/database/AcDbDatabaseConverter.js +46 -13
- package/lib/database/AcDbDatabaseConverter.js.map +1 -1
- package/lib/database/AcDbDatabaseConverterManager.d.ts +97 -15
- package/lib/database/AcDbDatabaseConverterManager.d.ts.map +1 -1
- package/lib/database/AcDbDatabaseConverterManager.js +90 -15
- package/lib/database/AcDbDatabaseConverterManager.js.map +1 -1
- package/lib/database/AcDbDimStyleTable.d.ts +22 -2
- package/lib/database/AcDbDimStyleTable.d.ts.map +1 -1
- package/lib/database/AcDbDimStyleTable.js +22 -2
- package/lib/database/AcDbDimStyleTable.js.map +1 -1
- package/lib/database/AcDbDimStyleTableRecord.d.ts +115 -0
- package/lib/database/AcDbDimStyleTableRecord.d.ts.map +1 -1
- package/lib/database/AcDbDimStyleTableRecord.js +44 -0
- package/lib/database/AcDbDimStyleTableRecord.js.map +1 -1
- package/lib/database/AcDbLayerTable.d.ts +39 -2
- package/lib/database/AcDbLayerTable.d.ts.map +1 -1
- package/lib/database/AcDbLayerTable.js +39 -2
- package/lib/database/AcDbLayerTable.js.map +1 -1
- package/lib/database/AcDbLayerTableRecord.d.ts +198 -18
- package/lib/database/AcDbLayerTableRecord.d.ts.map +1 -1
- package/lib/database/AcDbLayerTableRecord.js +182 -19
- package/lib/database/AcDbLayerTableRecord.js.map +1 -1
- package/lib/database/AcDbLinetypeTable.d.ts +21 -2
- package/lib/database/AcDbLinetypeTable.d.ts.map +1 -1
- package/lib/database/AcDbLinetypeTable.js +21 -2
- package/lib/database/AcDbLinetypeTable.js.map +1 -1
- package/lib/database/AcDbLinetypeTableRecord.d.ts +46 -14
- package/lib/database/AcDbLinetypeTableRecord.d.ts.map +1 -1
- package/lib/database/AcDbLinetypeTableRecord.js +46 -14
- package/lib/database/AcDbLinetypeTableRecord.js.map +1 -1
- package/lib/database/AcDbSymbolTable.d.ts +134 -29
- package/lib/database/AcDbSymbolTable.d.ts.map +1 -1
- package/lib/database/AcDbSymbolTable.js +133 -37
- package/lib/database/AcDbSymbolTable.js.map +1 -1
- package/lib/database/AcDbSymbolTableRecord.d.ts +47 -2
- package/lib/database/AcDbSymbolTableRecord.d.ts.map +1 -1
- package/lib/database/AcDbSymbolTableRecord.js +40 -2
- package/lib/database/AcDbSymbolTableRecord.js.map +1 -1
- package/lib/database/AcDbTextStyleTable.d.ts +36 -2
- package/lib/database/AcDbTextStyleTable.d.ts.map +1 -1
- package/lib/database/AcDbTextStyleTable.js +36 -2
- package/lib/database/AcDbTextStyleTable.js.map +1 -1
- package/lib/database/AcDbTextStyleTableRecord.d.ts +129 -17
- package/lib/database/AcDbTextStyleTableRecord.d.ts.map +1 -1
- package/lib/database/AcDbTextStyleTableRecord.js +127 -17
- package/lib/database/AcDbTextStyleTableRecord.js.map +1 -1
- package/lib/database/AcDbViewportTable.d.ts +22 -2
- package/lib/database/AcDbViewportTable.d.ts.map +1 -1
- package/lib/database/AcDbViewportTable.js +22 -2
- package/lib/database/AcDbViewportTable.js.map +1 -1
- package/lib/database/AcDbViewportTableRecord.d.ts +74 -9
- package/lib/database/AcDbViewportTableRecord.d.ts.map +1 -1
- package/lib/database/AcDbViewportTableRecord.js +65 -9
- package/lib/database/AcDbViewportTableRecord.js.map +1 -1
- package/lib/entity/AcDbArc.d.ts +202 -17
- package/lib/entity/AcDbArc.d.ts.map +1 -1
- package/lib/entity/AcDbArc.js +201 -17
- package/lib/entity/AcDbArc.js.map +1 -1
- package/lib/entity/AcDbBlockReference.d.ts +147 -13
- package/lib/entity/AcDbBlockReference.d.ts.map +1 -1
- package/lib/entity/AcDbBlockReference.js +142 -13
- package/lib/entity/AcDbBlockReference.js.map +1 -1
- package/lib/entity/AcDbCircle.d.ts +145 -12
- package/lib/entity/AcDbCircle.d.ts.map +1 -1
- package/lib/entity/AcDbCircle.js +144 -12
- package/lib/entity/AcDbCircle.js.map +1 -1
- package/lib/entity/AcDbCurve.d.ts +33 -2
- package/lib/entity/AcDbCurve.d.ts.map +1 -1
- package/lib/entity/AcDbCurve.js +17 -0
- package/lib/entity/AcDbCurve.js.map +1 -1
- package/lib/entity/AcDbEllipse.d.ts +168 -16
- package/lib/entity/AcDbEllipse.d.ts.map +1 -1
- package/lib/entity/AcDbEllipse.js +167 -16
- package/lib/entity/AcDbEllipse.js.map +1 -1
- package/lib/entity/AcDbEntity.d.ts +299 -35
- package/lib/entity/AcDbEntity.d.ts.map +1 -1
- package/lib/entity/AcDbEntity.js +275 -27
- package/lib/entity/AcDbEntity.js.map +1 -1
- package/lib/entity/AcDbHatch.d.ts +60 -4
- package/lib/entity/AcDbHatch.d.ts.map +1 -1
- package/lib/entity/AcDbHatch.js +52 -4
- package/lib/entity/AcDbHatch.js.map +1 -1
- package/lib/entity/AcDbLeader.d.ts +157 -10
- package/lib/entity/AcDbLeader.d.ts.map +1 -1
- package/lib/entity/AcDbLeader.js +149 -10
- package/lib/entity/AcDbLeader.js.map +1 -1
- package/lib/entity/AcDbLine.d.ts +154 -13
- package/lib/entity/AcDbLine.d.ts.map +1 -1
- package/lib/entity/AcDbLine.js +153 -13
- package/lib/entity/AcDbLine.js.map +1 -1
- package/lib/entity/AcDbMText.d.ts +127 -11
- package/lib/entity/AcDbMText.d.ts.map +1 -1
- package/lib/entity/AcDbMText.js +112 -11
- package/lib/entity/AcDbMText.js.map +1 -1
- package/lib/entity/AcDbPoint.d.ts +86 -7
- package/lib/entity/AcDbPoint.d.ts.map +1 -1
- package/lib/entity/AcDbPoint.js +85 -7
- package/lib/entity/AcDbPoint.js.map +1 -1
- package/lib/entity/AcDbPolyline.d.ts +172 -25
- package/lib/entity/AcDbPolyline.d.ts.map +1 -1
- package/lib/entity/AcDbPolyline.js +170 -25
- package/lib/entity/AcDbPolyline.js.map +1 -1
- package/lib/entity/AcDbRasterImage.d.ts +75 -31
- package/lib/entity/AcDbRasterImage.d.ts.map +1 -1
- package/lib/entity/AcDbRasterImage.js +60 -31
- package/lib/entity/AcDbRasterImage.js.map +1 -1
- package/lib/entity/AcDbRay.d.ts +115 -9
- package/lib/entity/AcDbRay.d.ts.map +1 -1
- package/lib/entity/AcDbRay.js +113 -9
- package/lib/entity/AcDbRay.js.map +1 -1
- package/lib/entity/AcDbSpline.d.ts +106 -14
- package/lib/entity/AcDbSpline.d.ts.map +1 -1
- package/lib/entity/AcDbSpline.js +67 -4
- package/lib/entity/AcDbSpline.js.map +1 -1
- package/lib/entity/AcDbTable.d.ts +161 -44
- package/lib/entity/AcDbTable.d.ts.map +1 -1
- package/lib/entity/AcDbTable.js +135 -44
- package/lib/entity/AcDbTable.js.map +1 -1
- package/lib/entity/AcDbText.d.ts +298 -25
- package/lib/entity/AcDbText.d.ts.map +1 -1
- package/lib/entity/AcDbText.js +288 -25
- package/lib/entity/AcDbText.js.map +1 -1
- package/lib/entity/AcDbTrace.d.ts +150 -23
- package/lib/entity/AcDbTrace.d.ts.map +1 -1
- package/lib/entity/AcDbTrace.js +147 -23
- package/lib/entity/AcDbTrace.js.map +1 -1
- package/lib/entity/AcDbViewport.d.ts +122 -9
- package/lib/entity/AcDbViewport.d.ts.map +1 -1
- package/lib/entity/AcDbViewport.js +122 -9
- package/lib/entity/AcDbViewport.js.map +1 -1
- package/lib/entity/AcDbWipeout.d.ts +29 -1
- package/lib/entity/AcDbWipeout.d.ts.map +1 -1
- package/lib/entity/AcDbWipeout.js +29 -1
- package/lib/entity/AcDbWipeout.js.map +1 -1
- package/lib/entity/AcDbXline.d.ts +116 -9
- package/lib/entity/AcDbXline.d.ts.map +1 -1
- package/lib/entity/AcDbXline.js +114 -9
- package/lib/entity/AcDbXline.js.map +1 -1
- package/lib/entity/dimension/AcDb3PointAngularDimension.d.ts +56 -12
- package/lib/entity/dimension/AcDb3PointAngularDimension.d.ts.map +1 -1
- package/lib/entity/dimension/AcDb3PointAngularDimension.js +56 -12
- package/lib/entity/dimension/AcDb3PointAngularDimension.js.map +1 -1
- package/lib/entity/dimension/AcDbAlignedDimension.d.ts +158 -17
- package/lib/entity/dimension/AcDbAlignedDimension.d.ts.map +1 -1
- package/lib/entity/dimension/AcDbAlignedDimension.js +153 -17
- package/lib/entity/dimension/AcDbAlignedDimension.js.map +1 -1
- package/lib/entity/dimension/AcDbArcDimension.d.ts +58 -12
- package/lib/entity/dimension/AcDbArcDimension.d.ts.map +1 -1
- package/lib/entity/dimension/AcDbArcDimension.js +58 -12
- package/lib/entity/dimension/AcDbArcDimension.js.map +1 -1
- package/lib/entity/dimension/AcDbDiametricDimension.d.ts +99 -25
- package/lib/entity/dimension/AcDbDiametricDimension.d.ts.map +1 -1
- package/lib/entity/dimension/AcDbDiametricDimension.js +99 -25
- package/lib/entity/dimension/AcDbDiametricDimension.js.map +1 -1
- package/lib/entity/dimension/AcDbDimension.d.ts +108 -14
- package/lib/entity/dimension/AcDbDimension.d.ts.map +1 -1
- package/lib/entity/dimension/AcDbDimension.js +99 -14
- package/lib/entity/dimension/AcDbDimension.js.map +1 -1
- package/lib/entity/dimension/AcDbOrdinateDimension.d.ts +48 -16
- package/lib/entity/dimension/AcDbOrdinateDimension.d.ts.map +1 -1
- package/lib/entity/dimension/AcDbOrdinateDimension.js +48 -16
- package/lib/entity/dimension/AcDbOrdinateDimension.js.map +1 -1
- package/lib/entity/dimension/AcDbRadialDimension.d.ts +167 -24
- package/lib/entity/dimension/AcDbRadialDimension.d.ts.map +1 -1
- package/lib/entity/dimension/AcDbRadialDimension.js +162 -24
- package/lib/entity/dimension/AcDbRadialDimension.js.map +1 -1
- package/lib/misc/AcDbAngleUnits.d.ts +12 -0
- package/lib/misc/AcDbAngleUnits.d.ts.map +1 -1
- package/lib/misc/AcDbAngleUnits.js +12 -0
- package/lib/misc/AcDbAngleUnits.js.map +1 -1
- package/lib/misc/AcDbConstants.d.ts +20 -0
- package/lib/misc/AcDbConstants.d.ts.map +1 -1
- package/lib/misc/AcDbConstants.js +20 -0
- package/lib/misc/AcDbConstants.js.map +1 -1
- package/lib/misc/AcDbDimArrowType.d.ts +24 -21
- package/lib/misc/AcDbDimArrowType.d.ts.map +1 -1
- package/lib/misc/AcDbDimArrowType.js +24 -21
- package/lib/misc/AcDbDimArrowType.js.map +1 -1
- package/lib/misc/AcDbObjectIterator.d.ts +42 -3
- package/lib/misc/AcDbObjectIterator.d.ts.map +1 -1
- package/lib/misc/AcDbObjectIterator.js +42 -3
- package/lib/misc/AcDbObjectIterator.js.map +1 -1
- package/lib/misc/AcDbOsnapMode.d.ts +18 -10
- package/lib/misc/AcDbOsnapMode.d.ts.map +1 -1
- package/lib/misc/AcDbOsnapMode.js +18 -10
- package/lib/misc/AcDbOsnapMode.js.map +1 -1
- package/lib/misc/AcDbRenderingCache.d.ts +107 -29
- package/lib/misc/AcDbRenderingCache.d.ts.map +1 -1
- package/lib/misc/AcDbRenderingCache.js +105 -29
- package/lib/misc/AcDbRenderingCache.js.map +1 -1
- package/lib/misc/AcDbUnitsValue.d.ts +58 -8
- package/lib/misc/AcDbUnitsValue.d.ts.map +1 -1
- package/lib/misc/AcDbUnitsValue.js +58 -8
- package/lib/misc/AcDbUnitsValue.js.map +1 -1
- package/lib/object/AcDbDictionary.d.ts +128 -30
- package/lib/object/AcDbDictionary.d.ts.map +1 -1
- package/lib/object/AcDbDictionary.js +126 -30
- package/lib/object/AcDbDictionary.js.map +1 -1
- package/lib/object/AcDbRasterImageDef.d.ts +38 -9
- package/lib/object/AcDbRasterImageDef.d.ts.map +1 -1
- package/lib/object/AcDbRasterImageDef.js +37 -9
- package/lib/object/AcDbRasterImageDef.js.map +1 -1
- package/lib/object/layout/AcDbLayout.d.ts +152 -13
- package/lib/object/layout/AcDbLayout.d.ts.map +1 -1
- package/lib/object/layout/AcDbLayout.js +146 -13
- package/lib/object/layout/AcDbLayout.js.map +1 -1
- package/lib/object/layout/AcDbLayoutDictionary.d.ts +35 -7
- package/lib/object/layout/AcDbLayoutDictionary.d.ts.map +1 -1
- package/lib/object/layout/AcDbLayoutDictionary.js +35 -7
- package/lib/object/layout/AcDbLayoutDictionary.js.map +1 -1
- package/lib/object/layout/AcDbLayoutManager.d.ts +103 -31
- package/lib/object/layout/AcDbLayoutManager.d.ts.map +1 -1
- package/lib/object/layout/AcDbLayoutManager.js +98 -31
- package/lib/object/layout/AcDbLayoutManager.js.map +1 -1
- package/package.json +4 -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
|
-
*
|
|
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
|
-
*
|
|
11
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
|
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"}
|
package/lib/entity/AcDbPoint.js
CHANGED
|
@@ -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
|
-
*
|
|
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
|
-
*
|
|
25
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
29
|
-
*
|
|
30
|
-
* the last
|
|
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
|
-
*
|
|
36
|
-
*
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
*
|
|
40
|
-
*
|
|
41
|
-
*
|
|
42
|
-
* @param
|
|
43
|
-
* @param
|
|
44
|
-
* @param
|
|
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
|
-
*
|
|
146
|
+
* Gets the 2D location of a vertex at the specified index.
|
|
49
147
|
*
|
|
50
|
-
*
|
|
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
|
-
*
|
|
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
|
-
* @
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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;
|
|
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"}
|