build-dxf 0.0.35 → 0.0.37

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 (30) hide show
  1. package/package.json +1 -1
  2. package/src/build.d.ts +2 -1
  3. package/src/build.js +2579 -2369
  4. package/src/index.css +1 -1
  5. package/src/index.js +7 -6
  6. package/src/index3.js +717 -754
  7. package/src/selectLocalFile.js +903 -880
  8. package/src/utils/DxfSystem/DxfSystem.d.ts +18 -0
  9. package/src/utils/DxfSystem/components/Dxf.d.ts +4 -128
  10. package/src/utils/DxfSystem/index.d.ts +2 -18
  11. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/Default.d.ts +1 -1
  12. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawWindow.d.ts +1 -1
  13. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/MergeLine.d.ts +0 -2
  14. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/VerticalCorrection.d.ts +2 -7
  15. package/src/utils/DxfSystem/plugin/Editor/components/RenderManager.d.ts +2 -7
  16. package/src/utils/DxfSystem/plugin/Editor/index.d.ts +1 -1
  17. package/src/utils/DxfSystem/plugin/Editor/pages/EditorTool.vue.d.ts +1 -1
  18. package/src/utils/DxfSystem/plugin/ModelDataPlugin/index.d.ts +1 -1
  19. package/src/utils/DxfSystem/plugin/RenderPlugin/components/Renderer.d.ts +7 -0
  20. package/src/utils/DxfSystem/plugin/RenderPlugin/index.d.ts +1 -1
  21. package/src/utils/DxfSystem/type.d.ts +106 -0
  22. package/src/utils/DxfSystem/utils/AxisAlignCorr.d.ts +14 -0
  23. package/src/utils/DxfSystem/utils/BoundExt.d.ts +16 -0
  24. package/src/utils/DxfSystem/utils/index.d.ts +5 -0
  25. package/src/utils/DxfSystem/utils/lineDataToOriginalData.d.ts +7 -0
  26. package/src/utils/DxfSystem/utils/lineSegmentClipping.d.ts +7 -0
  27. package/src/utils/DxfSystem/utils/recomputedWindow.d.ts +7 -0
  28. package/src/utils/Quadtree/LineSegment.d.ts +22 -0
  29. package/src/utils/Quadtree/Quadtree.d.ts +8 -3
  30. package/src/utils/DxfSystem/components/Dxf copy.d.ts +0 -276
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "build-dxf",
3
- "version": "0.0.35",
3
+ "version": "0.0.37",
4
4
  "description": "线段构建双线墙壁的dxf版本",
5
5
  "main": "./src/index.js",
6
6
  "types": "./src/index.d.ts",
package/src/build.d.ts CHANGED
@@ -1,8 +1,9 @@
1
1
  import { DxfSystem } from './utils/DxfSystem';
2
2
  import * as THREE from "three";
3
3
  export { Dxf } from './utils/DxfSystem/components/Dxf';
4
- export * from './utils/DxfSystem';
4
+ export * from './utils/DxfSystem/DxfSystem';
5
5
  export * from './utils/DxfSystem/plugin/ModelDataPlugin';
6
+ export * from './utils/DxfSystem';
6
7
  /** 快捷创建编辑器
7
8
  * @param dom
8
9
  * @param camera