build-dxf 0.1.75 → 0.1.76

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 (121) hide show
  1. package/package.json +1 -1
  2. package/src/build.js +4232 -3842
  3. package/src/index.css +13 -13
  4. package/src/index.js +8 -8
  5. package/src/index3.js +34 -22
  6. package/src/utils/DxfSystem/components/CorrectionDxf.d.ts +12 -2
  7. package/src/utils/DxfSystem/components/Dxf.d.ts +15 -10
  8. package/src/utils/DxfSystem/components/ThreeVJia.d.ts +2 -2
  9. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/CFComponent.d.ts +8 -8
  10. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/ClippingLine.d.ts +2 -2
  11. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/Default.d.ts +1 -1
  12. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawDoorLine.d.ts +1 -1
  13. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawLine.d.ts +1 -1
  14. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawWindow.d.ts +1 -1
  15. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/ManualDistance.d.ts +1 -1
  16. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PointDrag/modifyDoor.d.ts +1 -1
  17. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PointDrag/modifyLine.d.ts +1 -1
  18. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PointDrag/modifyWindow.d.ts +1 -1
  19. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PropertiesPanel.d.ts +1 -1
  20. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/RayDistance.d.ts +1 -1
  21. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/SelectAll.d.ts +1 -1
  22. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/VerticalCorr.d.ts +2 -2
  23. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/VerticalCorrContinue.d.ts +1 -1
  24. package/src/utils/DxfSystem/plugin/Editor/components/RenderManager.d.ts +3 -3
  25. package/src/utils/DxfSystem/plugin/Editor/pages/PropertiesPanel.vue.d.ts +1 -1
  26. package/src/utils/DxfSystem/plugin/RenderPlugin/components/ModelDataRender.d.ts +1 -1
  27. package/src/utils/DxfSystem/plugin/RenderPlugin/components/Renderer.d.ts +2 -2
  28. package/src/utils/DxfSystem/type.d.ts +22 -30
  29. package/src/utils/DxfSystem/utils/{BayWindowHelper.d.ts → drawHandle/BayWindowHelper.d.ts} +11 -3
  30. package/src/utils/DxfSystem/utils/{CAD.d.ts → drawHandle/CAD.d.ts} +19 -4
  31. package/src/utils/DxfSystem/utils/{SceneAutoGenerat.d.ts → drawHandle/SceneAutoGenerat.d.ts} +3 -2
  32. package/src/utils/DxfSystem/utils/{getWinDrawData.d.ts → drawHandle/getWinDrawData.d.ts} +3 -3
  33. package/src/utils/DxfSystem/utils/drawHelper.d.ts +2 -2
  34. package/src/utils/DxfSystem/utils/index.d.ts +12 -16
  35. package/src/utils/DxfSystem/utils/{BoundExt.d.ts → lineHandle/BoundExt.d.ts} +5 -5
  36. package/src/utils/DxfSystem/utils/lineHandle/CadPreProcessor/axisAlignCorr.d.ts +9 -0
  37. package/src/utils/DxfSystem/utils/lineHandle/CadPreProcessor/boundExt.d.ts +8 -0
  38. package/src/utils/DxfSystem/utils/lineHandle/CadPreProcessor/doorSpaceHandle.d.ts +5 -0
  39. package/src/utils/DxfSystem/utils/lineHandle/CadPreProcessor/doubleWallAlignment.d.ts +7 -0
  40. package/src/utils/DxfSystem/utils/lineHandle/CadPreProcessor/index.d.ts +37 -0
  41. package/src/utils/DxfSystem/utils/lineHandle/CadPreProcessor/init.d.ts +8 -0
  42. package/src/utils/DxfSystem/utils/lineHandle/CadPreProcessor/removeShortDoubleWall.d.ts +6 -0
  43. package/src/utils/DxfSystem/utils/lineHandle/CadPreProcessor/stepElimination.d.ts +3 -0
  44. package/src/utils/DxfSystem/utils/lineHandle/CadPreProcessor/wallHeightHandle.d.ts +8 -0
  45. package/src/utils/DxfSystem/utils/{DoorFind.d.ts → lineHandle/DoorFind.d.ts} +5 -5
  46. package/src/utils/DxfSystem/utils/{DoubleWallHelper.d.ts → lineHandle/DoubleWallHelper.d.ts} +4 -3
  47. package/src/utils/DxfSystem/utils/{HeightQuery.d.ts → lineHandle/HeightQuery.d.ts} +5 -2
  48. package/src/utils/DxfSystem/utils/{LineGroupType.d.ts → lineHandle/LineGroupType.d.ts} +13 -4
  49. package/src/utils/DxfSystem/utils/lineHandle/axisAlignCorr.d.ts +9 -0
  50. package/src/utils/DxfSystem/utils/lineHandle/buildGroup.d.ts +17 -0
  51. package/src/utils/DxfSystem/utils/lineHandle/clippingLineUserData.d.ts +7 -0
  52. package/src/utils/DxfSystem/utils/{findDiscretePointLine.d.ts → lineHandle/findDiscretePointLine.d.ts} +4 -4
  53. package/src/utils/DxfSystem/utils/{findVerticalReference.d.ts → lineHandle/findVerticalReference.d.ts} +1 -1
  54. package/src/utils/DxfSystem/utils/{lineSegmentClipping.d.ts → lineHandle/lineSegmentClipping.d.ts} +3 -3
  55. package/src/utils/DxfSystem/utils/lineHandle/mergeLineUserData.d.ts +7 -0
  56. package/src/utils/DxfSystem/utils/tools/WallDrawManager.d.ts +3 -0
  57. package/src/utils/DxfSystem/utils/{WallGroupManager.d.ts → tools/WallGroupManager.d.ts} +2 -2
  58. package/src/utils/DxfSystem/utils/tools/WallInsertObject.d.ts +63 -0
  59. package/src/utils/DxfSystem/utils/tools/WallInsertObjectDrawData.d.ts +39 -0
  60. package/src/utils/DxfSystem/utils/tools/ZHouseMockData.d.ts +127 -0
  61. package/src/utils/DxfSystem/utils/{clippingDoubleWall.d.ts → tools/clippingDoubleWall.d.ts} +2 -2
  62. package/src/utils/DxfSystem/utils/tools/findRooms.d.ts +13 -0
  63. package/src/utils/DxfSystem/utils/tools/index.d.ts +55 -0
  64. package/src/utils/DxfSystem/utils/{lineDataToThreeVJiaJson.d.ts → tools/lineDataToThreeVJiaJson.d.ts} +36 -22
  65. package/src/utils/algorithmsStructures/AxisAlignCorr.d.ts +37 -0
  66. package/src/utils/{LineSegment.d.ts → algorithmsStructures/LineSegment.d.ts} +4 -1
  67. package/src/utils/{Map.d.ts → algorithmsStructures/Map.d.ts} +2 -0
  68. package/src/utils/{MaxiCircles.d.ts → algorithmsStructures/MaxiCircles.d.ts} +2 -2
  69. package/src/utils/{MiniCircles.d.ts → algorithmsStructures/MiniCircles.d.ts} +11 -5
  70. package/src/utils/algorithmsStructures/Pipeline.d.ts +15 -0
  71. package/src/utils/{Point.d.ts → algorithmsStructures/Point.d.ts} +12 -1
  72. package/src/utils/{Polygon.d.ts → algorithmsStructures/Polygon.d.ts} +6 -1
  73. package/src/utils/{Quadtree.d.ts → algorithmsStructures/Quadtree.d.ts} +5 -0
  74. package/src/utils/algorithmsStructures/ccw.d.ts +2 -0
  75. package/src/utils/algorithmsStructures/stepElimination.d.ts +6 -0
  76. package/src/utils/index.d.ts +20 -20
  77. package/src/utils/modelScenario/bayWindow.d.ts +1 -1
  78. package/src/utils/modelScenario/scenario.d.ts +4 -2
  79. package/src/utils/{ExtrudeMesh.d.ts → threeObject3D/ExtrudeMesh.d.ts} +1 -1
  80. package/src/utils/tools/lazy.d.ts +14 -0
  81. package/src/utils/tools/repetitiveTask.d.ts +1 -0
  82. package/src/utils/DxfSystem/utils/AxisAlignCorr.d.ts +0 -14
  83. package/src/utils/DxfSystem/utils/AxisAlignCorr02.d.ts +0 -8
  84. package/src/utils/DxfSystem/utils/BoundExt02.d.ts +0 -48
  85. package/src/utils/DxfSystem/utils/RulerLine.d.ts +0 -10
  86. package/src/utils/DxfSystem/utils/buildGroup.d.ts +0 -12
  87. package/src/utils/DxfSystem/utils/clippingLineUserData.d.ts +0 -7
  88. package/src/utils/DxfSystem/utils/getPEDrawData.d.ts +0 -18
  89. package/src/utils/DxfSystem/utils/lineDataToOriginalData.d.ts +0 -8
  90. package/src/utils/DxfSystem/utils/lineDataToThreeVJiaJsonOld.d.ts +0 -52
  91. package/src/utils/DxfSystem/utils/mergeLineUserData.d.ts +0 -7
  92. package/src/utils/DxfSystem/utils/originalDataToLineData.d.ts +0 -7
  93. package/src/utils/DxfSystem/utils/recomputedWindow.d.ts +0 -16
  94. package/src/utils/DxfSystem/utils/tools.d.ts +0 -20
  95. package/src/utils/HandlerFlow.d.ts +0 -10
  96. package/src/utils/PointCloudCode.d.ts +0 -7
  97. package/src/utils/Pool.d.ts +0 -8
  98. /package/src/utils/DxfSystem/utils/{LoadModel.d.ts → tools/LoadModel.d.ts} +0 -0
  99. /package/src/utils/{Box2.d.ts → algorithmsStructures/Box2.d.ts} +0 -0
  100. /package/src/utils/{ConvexHullGraham.d.ts → algorithmsStructures/ConvexHullGraham.d.ts} +0 -0
  101. /package/src/utils/{Debouncing.d.ts → algorithmsStructures/Debouncing.d.ts} +0 -0
  102. /package/src/utils/{LineIndexGenerator.d.ts → algorithmsStructures/LineIndexGenerator.d.ts} +0 -0
  103. /package/src/utils/{LineQueryer.d.ts → algorithmsStructures/LineQueryer.d.ts} +0 -0
  104. /package/src/utils/{OBB.d.ts → algorithmsStructures/OBB.d.ts} +0 -0
  105. /package/src/utils/{PCSparseOctree.d.ts → algorithmsStructures/PCSparseOctree.d.ts} +0 -0
  106. /package/src/utils/{PointVirtualGrid.d.ts → algorithmsStructures/PointVirtualGrid.d.ts} +0 -0
  107. /package/src/utils/{Rectangle.d.ts → algorithmsStructures/Rectangle.d.ts} +0 -0
  108. /package/src/utils/{UndirectedGraph.d.ts → algorithmsStructures/UndirectedGraph.d.ts} +0 -0
  109. /package/src/utils/{UnionFindSet.d.ts → algorithmsStructures/UnionFindSet.d.ts} +0 -0
  110. /package/src/utils/{DxfSystem/utils → threeObject3D}/Lines.d.ts +0 -0
  111. /package/src/utils/{DxfSystem/utils → threeObject3D}/Lines2.d.ts +0 -0
  112. /package/src/utils/{GCHandle.d.ts → tools/GCHandle.d.ts} +0 -0
  113. /package/src/utils/{Gltf.d.ts → tools/Gltf.d.ts} +0 -0
  114. /package/src/utils/{StorageHelper.d.ts → tools/StorageHelper.d.ts} +0 -0
  115. /package/src/utils/{cloneUserData.d.ts → tools/cloneUserData.d.ts} +0 -0
  116. /package/src/utils/{createHtml.d.ts → tools/createHtml.d.ts} +0 -0
  117. /package/src/utils/{createPromise.d.ts → tools/createPromise.d.ts} +0 -0
  118. /package/src/utils/{download.d.ts → tools/download.d.ts} +0 -0
  119. /package/src/utils/{include.d.ts → tools/include.d.ts} +0 -0
  120. /package/src/utils/{isMobile.d.ts → tools/isMobile.d.ts} +0 -0
  121. /package/src/utils/{selectLocalFile.d.ts → tools/selectLocalFile.d.ts} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "build-dxf",
3
- "version": "0.1.75",
3
+ "version": "0.1.76",
4
4
  "description": "线段构建双线墙壁的dxf版本",
5
5
  "main": "./src/index.js",
6
6
  "types": "./src/index.d.ts",