build-dxf 0.0.57 → 0.0.58

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