build-dxf 0.1.81 → 0.1.83
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/package.json +1 -1
- package/src/build.d.ts +1 -1
- package/src/build.js +446 -604
- package/src/index.css +23 -23
- package/src/index.js +0 -1
- package/src/index3.js +23 -23
- package/src/utils/DxfSystem/components/Dxf.d.ts +1 -1
- package/src/utils/DxfSystem/utils/drawHandle/SceneAutoGenerat.d.ts +1 -1
- package/src/utils/DxfSystem/utils/index.d.ts +1 -1
- package/src/utils/DxfSystem/utils/lineHandle/{axisAlignCorr.d.ts → AxisAlignCorr.d.ts} +3 -0
- package/src/utils/DxfSystem/utils/tools/WallInsertObject.d.ts +11 -2
- package/src/utils/algorithmsStructures/LineSegment.d.ts +112 -121
- package/src/utils/algorithmsStructures/MiniCircles.d.ts +0 -2
- package/src/utils/algorithmsStructures/Polygon.d.ts +1 -1
package/package.json
CHANGED
package/src/build.d.ts
CHANGED
|
@@ -84,7 +84,7 @@ export declare function getGlobalDxfSystem(): DxfSystem | null;
|
|
|
84
84
|
* @param direction
|
|
85
85
|
* @returns
|
|
86
86
|
*/
|
|
87
|
-
export declare function hasCircle(lineData: OriginalDataItem[], startIndex: number, direction
|
|
87
|
+
export declare function hasCircle(lineData: OriginalDataItem[], startIndex: number, direction?: any): {
|
|
88
88
|
readonly originalIndices: number[];
|
|
89
89
|
readonly indices: number[];
|
|
90
90
|
circle: LineSegment<Record<string, any>>[];
|