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.
Files changed (118) hide show
  1. package/README.md +7 -1
  2. package/package.json +1 -1
  3. package/src/DomEventRegister.js +1479 -0
  4. package/src/build.d.ts +23 -1
  5. package/src/build.js +17786 -12259
  6. package/src/components/DragContainer.vue.d.ts +48 -0
  7. package/src/components/NumberEditor.vue.d.ts +33 -0
  8. package/src/index.css +447 -75
  9. package/src/index.js +12 -11
  10. package/src/index2.js +2 -157
  11. package/src/index3.js +12428 -4951
  12. package/src/pages/ModelView.vue.d.ts +11 -0
  13. package/src/utils/CommandManager/CommandFlow.d.ts +5 -2
  14. package/src/utils/CommandManager/CommandManager.d.ts +15 -2
  15. package/src/utils/ComponentManager/EventDispatcher.d.ts +6 -2
  16. package/src/utils/Debouncing.d.ts +3 -0
  17. package/src/utils/DxfSystem/DxfSystem.d.ts +0 -3
  18. package/src/utils/DxfSystem/components/CorrectionDxf.d.ts +27 -2
  19. package/src/utils/DxfSystem/components/Dxf.d.ts +11 -6
  20. package/src/utils/DxfSystem/components/ThreeVJia.d.ts +1 -1
  21. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/CFComponent.d.ts +378 -0
  22. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/ClippingLine.d.ts +16 -9
  23. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/Default.d.ts +10 -2
  24. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DeleteSelectLine.d.ts +2 -2
  25. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawDoorLine.d.ts +16 -9
  26. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawLine.d.ts +8 -16
  27. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawWindow.d.ts +7 -8
  28. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/ManualDistance.d.ts +23 -0
  29. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/MergeLine.d.ts +2 -2
  30. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PointDrag/index.d.ts +38 -0
  31. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PointDrag/modifyDoor.d.ts +40 -0
  32. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PointDrag/modifyLine.d.ts +34 -0
  33. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PointDrag/modifyWindow.d.ts +25 -0
  34. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PropertiesPanel.d.ts +33 -0
  35. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/RayDistance.d.ts +23 -0
  36. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/SelectAll.d.ts +2 -2
  37. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/{IntersectionConnectionLine.d.ts → TwoLineConnectionLine.d.ts} +4 -4
  38. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/{ConnectionLine.d.ts → TwoPointConnection.d.ts} +4 -4
  39. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/{VerticalCorrection.d.ts → VerticalCorr.d.ts} +3 -13
  40. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/VerticalCorrContinue.d.ts +35 -0
  41. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/VerticalReferenceLine.d.ts +2 -2
  42. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/ViewAngle.d.ts +2 -2
  43. package/src/utils/DxfSystem/plugin/Editor/components/RenderManager.d.ts +29 -12
  44. package/src/utils/DxfSystem/plugin/Editor/components/index.d.ts +2 -1
  45. package/src/utils/DxfSystem/plugin/Editor/pages/{EditorTool.vue.d.ts → EditorTool/EditorTool.vue.d.ts} +2 -5
  46. package/src/utils/DxfSystem/plugin/Editor/pages/EditorTool/EditorToolContent.vue.d.ts +7 -0
  47. package/src/utils/DxfSystem/plugin/Editor/pages/PropertiesPanel.vue.d.ts +18 -0
  48. package/src/utils/DxfSystem/plugin/Editor/pages/components/Input.vue.d.ts +13 -0
  49. package/src/utils/DxfSystem/plugin/Editor/type.d.ts +11 -0
  50. package/src/utils/DxfSystem/plugin/ModelDataPlugin/components/WhiteModel.d.ts +0 -1
  51. package/src/utils/DxfSystem/plugin/RenderPlugin/components/DomContainer.d.ts +4 -0
  52. package/src/utils/DxfSystem/plugin/RenderPlugin/components/DomEventRegister.d.ts +54 -2
  53. package/src/utils/DxfSystem/plugin/RenderPlugin/components/Renderer.d.ts +4 -2
  54. package/src/utils/DxfSystem/plugin/RenderPlugin/index.d.ts +1 -2
  55. package/src/utils/DxfSystem/type.d.ts +62 -55
  56. package/src/utils/DxfSystem/utils/BayWindowHelper.d.ts +49 -0
  57. package/src/utils/DxfSystem/utils/BoundExt.d.ts +3 -1
  58. package/src/utils/DxfSystem/utils/BoundExt02.d.ts +48 -0
  59. package/src/utils/DxfSystem/utils/CAD.d.ts +10 -8
  60. package/src/utils/DxfSystem/utils/DoorFind.d.ts +44 -0
  61. package/src/utils/DxfSystem/utils/DoubleWallHelper.d.ts +10 -1
  62. package/src/utils/DxfSystem/utils/LineGroupType.d.ts +7 -1
  63. package/src/utils/DxfSystem/utils/Lines.d.ts +25 -0
  64. package/src/utils/DxfSystem/utils/Lines2.d.ts +22 -0
  65. package/src/utils/DxfSystem/utils/RulerLine.d.ts +10 -0
  66. package/src/utils/{modelScenario → DxfSystem/utils}/SceneAutoGenerat.d.ts +6 -2
  67. package/src/utils/DxfSystem/utils/WallGroupManager.d.ts +25 -0
  68. package/src/utils/DxfSystem/utils/clippingDoubleWall.d.ts +1 -0
  69. package/src/utils/DxfSystem/utils/index.d.ts +2 -6
  70. package/src/utils/DxfSystem/utils/lineDataToThreeVJiaJson.d.ts +67 -12
  71. package/src/utils/DxfSystem/utils/lineDataToThreeVJiaJsonOld.d.ts +52 -0
  72. package/src/utils/DxfSystem/utils/lineSegmentClipping.d.ts +1 -1
  73. package/src/utils/DxfSystem/utils/tools.d.ts +16 -1
  74. package/src/utils/ExtrudeMesh.d.ts +11 -0
  75. package/src/utils/GCHandle.d.ts +12 -0
  76. package/src/utils/HandlerFlow.d.ts +10 -0
  77. package/src/utils/LineQueryer.d.ts +42 -0
  78. package/src/utils/LineSegment.d.ts +27 -2
  79. package/src/utils/Map.d.ts +15 -2
  80. package/src/utils/MaxiCircles.d.ts +13 -0
  81. package/src/utils/MiniCircles.d.ts +48 -0
  82. package/src/utils/OBB.d.ts +30 -0
  83. package/src/utils/PCSparseOctree.d.ts +56 -0
  84. package/src/utils/Point.d.ts +23 -7
  85. package/src/utils/PointCloudCode.d.ts +7 -0
  86. package/src/utils/{PointVirtualGrid/index.d.ts → PointVirtualGrid.d.ts} +11 -10
  87. package/src/utils/Polygon.d.ts +49 -1
  88. package/src/utils/Pool.d.ts +8 -0
  89. package/src/utils/Quadtree.d.ts +1 -1
  90. package/src/utils/StorageHelper.d.ts +6 -0
  91. package/src/utils/UndirectedGraph.d.ts +31 -1
  92. package/src/utils/createHtml.d.ts +9 -0
  93. package/src/utils/createPromise.d.ts +5 -0
  94. package/src/utils/download.d.ts +1 -0
  95. package/src/utils/index.d.ts +6 -2
  96. package/src/utils/isMobile.d.ts +2 -0
  97. package/src/utils/modelScenario/bayWindow.d.ts +32 -0
  98. package/src/utils/modelScenario/scenario.d.ts +12 -3
  99. package/src/bin/Main.js +0 -269
  100. package/src/bin/mini_cycles.js +0 -15
  101. package/src/bin/mini_cycles.wasm +0 -0
  102. package/src/bin/mini_cycles.wasm.map +0 -1
  103. package/src/bin/wasm_mini_cycles.js +0 -296
  104. package/src/index4.js +0 -4261
  105. package/src/utils/DxfSystem/components/DoorsAnalysis.d.ts +0 -115
  106. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/CommandFlowComponent.d.ts +0 -57
  107. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DeleteSelectWindow.d.ts +0 -33
  108. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PointDrag.d.ts +0 -41
  109. package/src/utils/DxfSystem/plugin/RenderPlugin/pages/Dxf.vue.d.ts +0 -21
  110. package/src/utils/DxfSystem/utils/closedPathArea.d.ts +0 -2
  111. package/src/utils/DxfSystem/utils/findClosedPolygons.d.ts +0 -14
  112. package/src/utils/DxfSystem/utils/findLargestCircle.d.ts +0 -14
  113. package/src/utils/DxfSystem/utils/mergeSmallestCircle.d.ts +0 -14
  114. package/src/utils/DxfSystem/utils/smallestCircle.d.ts +0 -6
  115. package/src/utils/Lines.d.ts +0 -11
  116. package/src/utils/deepClone.d.ts +0 -6
  117. package/src/utils/drawLinePathToPng.d.ts +0 -7
  118. /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 属性面板设置最大宽度
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "build-dxf",
3
- "version": "0.1.66",
3
+ "version": "0.1.67",
4
4
  "description": "线段构建双线墙壁的dxf版本",
5
5
  "main": "./src/index.js",
6
6
  "types": "./src/index.d.ts",