build-dxf 0.1.66 → 0.1.67
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/README.md +7 -1
- package/package.json +1 -1
- package/src/DomEventRegister.js +1479 -0
- package/src/build.d.ts +23 -1
- package/src/build.js +17786 -12259
- package/src/components/DragContainer.vue.d.ts +48 -0
- package/src/components/NumberEditor.vue.d.ts +33 -0
- package/src/index.css +447 -75
- package/src/index.js +12 -11
- package/src/index2.js +2 -157
- package/src/index3.js +12428 -4951
- package/src/pages/ModelView.vue.d.ts +11 -0
- package/src/utils/CommandManager/CommandFlow.d.ts +5 -2
- package/src/utils/CommandManager/CommandManager.d.ts +15 -2
- package/src/utils/ComponentManager/EventDispatcher.d.ts +6 -2
- package/src/utils/Debouncing.d.ts +3 -0
- package/src/utils/DxfSystem/DxfSystem.d.ts +0 -3
- package/src/utils/DxfSystem/components/CorrectionDxf.d.ts +27 -2
- package/src/utils/DxfSystem/components/Dxf.d.ts +11 -6
- package/src/utils/DxfSystem/components/ThreeVJia.d.ts +1 -1
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/CFComponent.d.ts +378 -0
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/ClippingLine.d.ts +16 -9
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/Default.d.ts +10 -2
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DeleteSelectLine.d.ts +2 -2
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawDoorLine.d.ts +16 -9
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawLine.d.ts +8 -16
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawWindow.d.ts +7 -8
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/ManualDistance.d.ts +23 -0
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/MergeLine.d.ts +2 -2
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PointDrag/index.d.ts +38 -0
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PointDrag/modifyDoor.d.ts +40 -0
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PointDrag/modifyLine.d.ts +34 -0
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PointDrag/modifyWindow.d.ts +25 -0
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PropertiesPanel.d.ts +33 -0
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/RayDistance.d.ts +23 -0
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/SelectAll.d.ts +2 -2
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/{IntersectionConnectionLine.d.ts → TwoLineConnectionLine.d.ts} +4 -4
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/{ConnectionLine.d.ts → TwoPointConnection.d.ts} +4 -4
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/{VerticalCorrection.d.ts → VerticalCorr.d.ts} +3 -13
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/VerticalCorrContinue.d.ts +35 -0
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/VerticalReferenceLine.d.ts +2 -2
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/ViewAngle.d.ts +2 -2
- package/src/utils/DxfSystem/plugin/Editor/components/RenderManager.d.ts +29 -12
- package/src/utils/DxfSystem/plugin/Editor/components/index.d.ts +2 -1
- package/src/utils/DxfSystem/plugin/Editor/pages/{EditorTool.vue.d.ts → EditorTool/EditorTool.vue.d.ts} +2 -5
- package/src/utils/DxfSystem/plugin/Editor/pages/EditorTool/EditorToolContent.vue.d.ts +7 -0
- package/src/utils/DxfSystem/plugin/Editor/pages/PropertiesPanel.vue.d.ts +18 -0
- package/src/utils/DxfSystem/plugin/Editor/pages/components/Input.vue.d.ts +13 -0
- package/src/utils/DxfSystem/plugin/Editor/type.d.ts +11 -0
- package/src/utils/DxfSystem/plugin/ModelDataPlugin/components/WhiteModel.d.ts +0 -1
- package/src/utils/DxfSystem/plugin/RenderPlugin/components/DomContainer.d.ts +4 -0
- package/src/utils/DxfSystem/plugin/RenderPlugin/components/DomEventRegister.d.ts +54 -2
- package/src/utils/DxfSystem/plugin/RenderPlugin/components/Renderer.d.ts +4 -2
- package/src/utils/DxfSystem/plugin/RenderPlugin/index.d.ts +1 -2
- package/src/utils/DxfSystem/type.d.ts +62 -55
- package/src/utils/DxfSystem/utils/BayWindowHelper.d.ts +49 -0
- package/src/utils/DxfSystem/utils/BoundExt.d.ts +3 -1
- package/src/utils/DxfSystem/utils/BoundExt02.d.ts +48 -0
- package/src/utils/DxfSystem/utils/CAD.d.ts +10 -8
- package/src/utils/DxfSystem/utils/DoorFind.d.ts +44 -0
- package/src/utils/DxfSystem/utils/DoubleWallHelper.d.ts +10 -1
- package/src/utils/DxfSystem/utils/LineGroupType.d.ts +7 -1
- package/src/utils/DxfSystem/utils/Lines.d.ts +25 -0
- package/src/utils/DxfSystem/utils/Lines2.d.ts +22 -0
- package/src/utils/DxfSystem/utils/RulerLine.d.ts +10 -0
- package/src/utils/{modelScenario → DxfSystem/utils}/SceneAutoGenerat.d.ts +6 -2
- package/src/utils/DxfSystem/utils/WallGroupManager.d.ts +25 -0
- package/src/utils/DxfSystem/utils/clippingDoubleWall.d.ts +1 -0
- package/src/utils/DxfSystem/utils/index.d.ts +2 -6
- package/src/utils/DxfSystem/utils/lineDataToThreeVJiaJson.d.ts +67 -12
- package/src/utils/DxfSystem/utils/lineDataToThreeVJiaJsonOld.d.ts +52 -0
- package/src/utils/DxfSystem/utils/lineSegmentClipping.d.ts +1 -1
- package/src/utils/DxfSystem/utils/tools.d.ts +16 -1
- package/src/utils/ExtrudeMesh.d.ts +11 -0
- package/src/utils/GCHandle.d.ts +12 -0
- package/src/utils/HandlerFlow.d.ts +10 -0
- package/src/utils/LineQueryer.d.ts +42 -0
- package/src/utils/LineSegment.d.ts +27 -2
- package/src/utils/Map.d.ts +15 -2
- package/src/utils/MaxiCircles.d.ts +13 -0
- package/src/utils/MiniCircles.d.ts +48 -0
- package/src/utils/OBB.d.ts +30 -0
- package/src/utils/PCSparseOctree.d.ts +56 -0
- package/src/utils/Point.d.ts +23 -7
- package/src/utils/PointCloudCode.d.ts +7 -0
- package/src/utils/{PointVirtualGrid/index.d.ts → PointVirtualGrid.d.ts} +11 -10
- package/src/utils/Polygon.d.ts +49 -1
- package/src/utils/Pool.d.ts +8 -0
- package/src/utils/Quadtree.d.ts +1 -1
- package/src/utils/StorageHelper.d.ts +6 -0
- package/src/utils/UndirectedGraph.d.ts +31 -1
- package/src/utils/createHtml.d.ts +9 -0
- package/src/utils/createPromise.d.ts +5 -0
- package/src/utils/download.d.ts +1 -0
- package/src/utils/index.d.ts +6 -2
- package/src/utils/isMobile.d.ts +2 -0
- package/src/utils/modelScenario/bayWindow.d.ts +32 -0
- package/src/utils/modelScenario/scenario.d.ts +12 -3
- package/src/bin/Main.js +0 -269
- package/src/bin/mini_cycles.js +0 -15
- package/src/bin/mini_cycles.wasm +0 -0
- package/src/bin/mini_cycles.wasm.map +0 -1
- package/src/bin/wasm_mini_cycles.js +0 -296
- package/src/index4.js +0 -4261
- package/src/utils/DxfSystem/components/DoorsAnalysis.d.ts +0 -115
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/CommandFlowComponent.d.ts +0 -57
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DeleteSelectWindow.d.ts +0 -33
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PointDrag.d.ts +0 -41
- package/src/utils/DxfSystem/plugin/RenderPlugin/pages/Dxf.vue.d.ts +0 -21
- package/src/utils/DxfSystem/utils/closedPathArea.d.ts +0 -2
- package/src/utils/DxfSystem/utils/findClosedPolygons.d.ts +0 -14
- package/src/utils/DxfSystem/utils/findLargestCircle.d.ts +0 -14
- package/src/utils/DxfSystem/utils/mergeSmallestCircle.d.ts +0 -14
- package/src/utils/DxfSystem/utils/smallestCircle.d.ts +0 -6
- package/src/utils/Lines.d.ts +0 -11
- package/src/utils/deepClone.d.ts +0 -6
- package/src/utils/drawLinePathToPng.d.ts +0 -7
- /package/src/utils/{LoadModel.d.ts → DxfSystem/utils/LoadModel.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -165,4 +165,10 @@ import dp8 from "../data/dp8.json"
|
|
|
165
165
|
13. SelectAll
|
|
166
166
|
14. VerticalCorrection
|
|
167
167
|
15. VerticalReferenceLine
|
|
168
|
-
16. ViewAngle
|
|
168
|
+
16. ViewAngle
|
|
169
|
+
|
|
170
|
+
# 更改内容
|
|
171
|
+
1. 2026.02.17 修复手动测距bug
|
|
172
|
+
1. 2026.02.17 修复飘窗线拟合传染bug
|
|
173
|
+
1. 2026.02.17 修复三维家json数据异常(旋转、离地高、窗高、门高)
|
|
174
|
+
1. 2026.02.17 属性面板设置最大宽度
|