build-dxf 0.0.20 → 0.0.22

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 (40) hide show
  1. package/README.md +3 -0
  2. package/package.json +6 -4
  3. package/src/build.d.ts +6 -0
  4. package/src/build.js +1432 -1916
  5. package/src/index.css +1 -641
  6. package/src/index.js +7 -7
  7. package/src/index2.js +327 -528
  8. package/src/index3.js +2049 -1736
  9. package/src/selectLocalFile.js +1960 -3145
  10. package/src/utils/CommandManager/CommandFlow.d.ts +17 -0
  11. package/src/utils/CommandManager/CommandManager.d.ts +23 -0
  12. package/src/utils/DxfSystem/components/AngleCorrectionDxf.d.ts +13 -0
  13. package/src/utils/DxfSystem/components/Dxf.d.ts +36 -5
  14. package/src/utils/DxfSystem/components/LineAnalysis.d.ts +3 -1
  15. package/src/utils/DxfSystem/index.d.ts +2 -0
  16. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/ClippingLine.d.ts +45 -0
  17. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/CommandFlowComponent.d.ts +15 -1
  18. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/ConnectionLine.d.ts +33 -0
  19. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/Default.d.ts +2 -26
  20. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DeleteSelectLine.d.ts +28 -0
  21. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DeleteSelectWindow.d.ts +33 -0
  22. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawDoorLine.d.ts +22 -4
  23. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawLine.d.ts +20 -4
  24. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawWindow.d.ts +25 -2
  25. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/IntersectionConnectionLine.d.ts +33 -0
  26. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/MergeLine.d.ts +33 -0
  27. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PointDrag.d.ts +14 -1
  28. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/SelectAll.d.ts +30 -0
  29. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/VerticalCorrection.d.ts +75 -0
  30. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/VerticalReferenceLine.d.ts +21 -0
  31. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/ViewAngle.d.ts +21 -0
  32. package/src/utils/DxfSystem/plugin/Editor/components/Editor.d.ts +4 -1
  33. package/src/utils/DxfSystem/plugin/Editor/components/RenderManager.d.ts +4 -1
  34. package/src/utils/DxfSystem/plugin/Editor/components/index.d.ts +1 -0
  35. package/src/utils/DxfSystem/plugin/RenderPlugin/components/Renderer.d.ts +3 -0
  36. package/src/utils/PointVirtualGrid/index.d.ts +8 -0
  37. package/src/utils/Quadtree/LineSegment.d.ts +34 -2
  38. package/src/utils/Quadtree/Point.d.ts +9 -2
  39. package/src/utils/Quadtree/Quadtree.d.ts +1 -1
  40. package/src/utils/deepClone.d.ts +6 -0
package/src/index.js CHANGED
@@ -1,10 +1,10 @@
1
1
  import "three";
2
- import { D, M, i, c, g, d } from "./build.js";
2
+ import { D as s, M as o, i as l, c as i, g as m, d as r } from "./build.js";
3
3
  export {
4
- D as DxfSystem,
5
- M as ModelDataPlugin,
6
- i as components,
7
- c as createEditor,
8
- g as getFileAll,
9
- d as getGlobalDxfSystem
4
+ s as DxfSystem,
5
+ o as ModelDataPlugin,
6
+ l as components,
7
+ i as createEditor,
8
+ m as getFileAll,
9
+ r as getGlobalDxfSystem
10
10
  };