build-dxf 0.1.115 → 0.1.117

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 (52) hide show
  1. package/package.json +1 -1
  2. package/src/DomEventRegister.js +1 -1
  3. package/src/build.js +177 -152
  4. package/src/dxf-system/plugins/editor/Command/ClippingLine.d.ts +26 -0
  5. package/src/dxf-system/plugins/editor/{components/CommandFlow/CFComponent.d.ts → Command/Command.d.ts} +18 -17
  6. package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/DefaultCommand.d.ts +12 -13
  7. package/src/dxf-system/plugins/editor/Command/DeleteSelectLine.d.ts +25 -0
  8. package/src/dxf-system/plugins/editor/Command/DrawDoorLine.d.ts +8 -0
  9. package/src/dxf-system/plugins/editor/Command/DrawHole.d.ts +50 -0
  10. package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/DrawLine.d.ts +4 -4
  11. package/src/dxf-system/plugins/editor/Command/DrawWindow.d.ts +11 -0
  12. package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/ManualDistance.d.ts +4 -4
  13. package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/MergeLine.d.ts +3 -3
  14. package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/PointDrag/index.d.ts +3 -3
  15. package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/PointDrag/modifyDoor.d.ts +2 -2
  16. package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/PointDrag/modifyLine.d.ts +2 -2
  17. package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/PointDrag/modifyWindow.d.ts +4 -4
  18. package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/PropertiesPanel.d.ts +6 -6
  19. package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/RayDistance.d.ts +4 -4
  20. package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/SelectAll.d.ts +4 -4
  21. package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/TwoLineConnectionLine.d.ts +3 -3
  22. package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/TwoPointConnection.d.ts +3 -3
  23. package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/VerticalCorr.d.ts +6 -6
  24. package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/VerticalCorrContinue.d.ts +4 -4
  25. package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/VerticalReferenceLine.d.ts +3 -3
  26. package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/ViewAngle.d.ts +3 -3
  27. package/src/dxf-system/plugins/editor/{components/Editor.d.ts → Editor.d.ts} +6 -6
  28. package/src/dxf-system/plugins/editor/{components/RenderManager.d.ts → RenderManager.d.ts} +10 -10
  29. package/src/dxf-system/plugins/editor/index.d.ts +9 -3
  30. package/src/dxf-system/plugins/editor/us-service/LineSelector.d.ts +98 -0
  31. package/src/dxf-system/plugins/editor/utils/Wall2D.d.ts +2 -1
  32. package/src/dxf-system/type.d.ts +11 -4
  33. package/src/dxf-system/utils/WallHole.d.ts +111 -0
  34. package/src/dxf-system/utils/{WallInsertObjectDrawData.d.ts → WallHoleDrawData.d.ts} +1 -10
  35. package/src/dxf-system/utils/line-clipping.d.ts +7 -1
  36. package/src/dxf-system/utils/tools.d.ts +2 -2
  37. package/src/index.css +21 -17
  38. package/src/index.js +10 -10
  39. package/src/index3.js +4331 -4391
  40. package/src/utils/algorithms/UndirectedGraph.d.ts +4 -0
  41. package/src/utils/command/CommandFlow.d.ts +4 -4
  42. package/src/utils/tools/createVueApp.d.ts +1 -0
  43. package/src/dxf-system/plugins/editor/EditorPlugin.d.ts +0 -9
  44. package/src/dxf-system/plugins/editor/components/CommandFlow/ClippingLine.d.ts +0 -52
  45. package/src/dxf-system/plugins/editor/components/CommandFlow/DeleteSelectLine.d.ts +0 -24
  46. package/src/dxf-system/plugins/editor/components/CommandFlow/DrawDoorLine.d.ts +0 -44
  47. package/src/dxf-system/plugins/editor/components/CommandFlow/DrawHole.d.ts +0 -38
  48. package/src/dxf-system/plugins/editor/components/CommandFlow/DrawWindow.d.ts +0 -48
  49. package/src/dxf-system/plugins/editor/components/UIService.d.ts +0 -2
  50. package/src/dxf-system/plugins/editor/components/index.d.ts +0 -7
  51. package/src/dxf-system/plugins/index.d.ts +0 -1
  52. package/src/dxf-system/utils/WallInsertObject.d.ts +0 -109
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "build-dxf",
3
- "version": "0.1.115",
3
+ "version": "0.1.117",
4
4
  "description": "线段构建双线墙壁的dxf版本",
5
5
  "main": "./src/index.js",
6
6
  "types": "./src/index.d.ts",
@@ -7,7 +7,7 @@ import { CSS3DObject, CSS3DSprite, CSS3DRenderer } from "three/addons/renderers/
7
7
  import { CSS2DObject, CSS2DRenderer } from "three/addons/renderers/CSS2DRenderer.js";
8
8
  import { OrbitControls } from "three/addons/controls/OrbitControls.js";
9
9
  import * as TWEEN from "@tweenjs/tween.js";
10
- import { C as Component, a as Point, g as getDefaultExportFromCjs, A as ArrayMap, V as Variable } from "./build.js";
10
+ import { C as Component, P as Point, g as getDefaultExportFromCjs, A as ArrayMap, V as Variable } from "./build.js";
11
11
  import { ref } from "vue";
12
12
  const css = `
13
13
  .overlay {