build-dxf 0.0.57 → 0.0.59

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 (39) hide show
  1. package/package.json +4 -2
  2. package/src/DomEventRegister.js +3117 -1926
  3. package/src/bin/Main.js +269 -0
  4. package/src/bin/mini_cycles.js +15 -0
  5. package/src/bin/mini_cycles.wasm +0 -0
  6. package/src/bin/mini_cycles.wasm.map +1 -0
  7. package/src/bin/wasm_mini_cycles.js +296 -0
  8. package/src/build.d.ts +33 -0
  9. package/src/build.js +12332 -5002
  10. package/src/constants.d.ts +8 -0
  11. package/src/index.css +777 -1
  12. package/src/index.js +12 -9
  13. package/src/index2.js +516 -327
  14. package/src/index3.js +2755 -1739
  15. package/src/pages/Test.vue.d.ts +2 -0
  16. package/src/pages/buildJson.vue.d.ts +4 -0
  17. package/src/pages/modelCarrier/index.vue.d.ts +2 -0
  18. package/src/utils/Debouncing.d.ts +7 -0
  19. package/src/utils/DxfSystem/DxfSystem.d.ts +4 -5
  20. package/src/utils/DxfSystem/components/CorrectionDxf.d.ts +126 -0
  21. package/src/utils/DxfSystem/components/Dxf.d.ts +2 -3
  22. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/Default.d.ts +16 -6
  23. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DeleteSelectLine.d.ts +2 -6
  24. package/src/utils/DxfSystem/plugin/Editor/components/RenderManager.d.ts +2 -2
  25. package/src/utils/DxfSystem/plugin/ModelDataPlugin/components/WhiteModel.d.ts +1 -1
  26. package/src/utils/DxfSystem/type.d.ts +4 -1
  27. package/src/utils/DxfSystem/utils/AxisAlignCorr.d.ts +2 -2
  28. package/src/utils/DxfSystem/utils/CAD.d.ts +149 -5
  29. package/src/utils/DxfSystem/utils/LineGroupType.d.ts +11 -0
  30. package/src/utils/DxfSystem/utils/getWinDrawData.d.ts +18 -0
  31. package/src/utils/LineSegment.d.ts +1 -0
  32. package/src/utils/LoadModel.d.ts +7 -0
  33. package/src/utils/Map.d.ts +3 -0
  34. package/src/utils/Point.d.ts +3 -2
  35. package/src/utils/Polygon.d.ts +17 -1
  36. package/src/utils/Rectangle.d.ts +1 -0
  37. package/src/utils/fff.d.ts +1 -0
  38. package/src/utils/modelScenario/scenario.d.ts +64 -0
  39. package/src/utils/DxfSystem/components/AngleCorrectionDxf.d.ts +0 -13
@@ -0,0 +1,8 @@
1
+ export declare const API_BASE_URL = "";
2
+ export declare const VITE_OSS_BASEURL: any;
3
+ export declare const DEFAULT_WALL_WIDTH = 0.12;
4
+ export declare const DOUBLE_WALL_FIND_WIDTH = 0.4;
5
+ export declare const DEFAULT_DOOR_HEIGHT = 2.1;
6
+ export declare const DOOR_GROUND_CLEARANCE_HEIGHT = 0;
7
+ export declare const DEFAULT_WINDOW_HEIGHT = 0.8;
8
+ export declare const WINDOW_GROUND_CLEARANCE_HEIGHT = 0.7;