kitchen-simulator 5.0.0-test.5 → 5.0.0-test.7
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.
- package/package.json +34 -41
- package/src/@history.js +3 -0
- package/src/AppContext.js +5 -0
- package/src/KitchenConfigurator.jsx +1517 -0
- package/src/KitchenConfiguratorApp.jsx +443 -0
- package/src/actions/area-actions.js +15 -0
- package/src/actions/export.js +38 -0
- package/src/actions/groups-actions.js +102 -0
- package/src/actions/holes-actions.js +152 -0
- package/src/actions/items-actions.js +393 -0
- package/src/actions/lines-actions.js +103 -0
- package/src/actions/project-actions.js +391 -0
- package/src/actions/scene-actions.js +44 -0
- package/src/actions/user-actions.js +75 -0
- package/src/actions/vertices-actions.js +34 -0
- package/src/actions/viewer2d-actions.js +79 -0
- package/src/actions/viewer3d-actions.js +32 -0
- package/src/catalog/areas/area/planner-element.jsx +43 -0
- package/src/catalog/catalog.js +258 -0
- package/src/catalog/factories/area-factory-3d.js +252 -0
- package/src/catalog/factories/area-factory.jsx +102 -0
- package/src/catalog/factories/export.js +9 -0
- package/src/catalog/factories/wall-factory-3d.js +296 -0
- package/src/catalog/factories/wall-factory.jsx +321 -0
- package/src/catalog/holes/door-closet/planner-element.jsx +251 -0
- package/src/catalog/holes/door-double/planner-element.jsx +391 -0
- package/src/catalog/holes/door-exterior/planner-element.jsx +245 -0
- package/src/catalog/holes/door-interior/planner-element.jsx +256 -0
- package/src/catalog/holes/door-panic/planner-element.jsx +594 -0
- package/src/catalog/holes/door-panic-double/planner-element.jsx +574 -0
- package/src/catalog/holes/door-sliding/planner-element.jsx +256 -0
- package/src/catalog/holes/doorway-framed/planner-element.jsx +169 -0
- package/src/catalog/holes/doorway-frameless/planner-element.jsx +116 -0
- package/src/catalog/holes/window-clear/planner-element.jsx +181 -0
- package/src/catalog/holes/window-cross/planner-element.jsx +180 -0
- package/src/catalog/holes/window-double-hung/planner-element.jsx +366 -0
- package/src/catalog/holes/window-vertical/planner-element.jsx +290 -0
- package/src/catalog/lines/wall/planner-element.jsx +73 -0
- package/src/catalog/molding/molding-dcm/planner-element.jsx +35 -0
- package/src/catalog/molding/molding-fbm/planner-element.jsx +35 -0
- package/src/catalog/molding/molding-lrm/planner-element.jsx +35 -0
- package/src/catalog/properties/export.js +33 -0
- package/src/catalog/properties/property-checkbox.jsx +123 -0
- package/src/catalog/properties/property-color.jsx +52 -0
- package/src/catalog/properties/property-enum.jsx +87 -0
- package/src/catalog/properties/property-hidden.jsx +22 -0
- package/src/catalog/properties/property-lenght-measure.jsx +113 -0
- package/src/catalog/properties/property-length-measure.jsx +129 -0
- package/src/catalog/properties/property-length-measure_hole.jsx +110 -0
- package/src/catalog/properties/property-number.jsx +63 -0
- package/src/catalog/properties/property-read-only.jsx +37 -0
- package/src/catalog/properties/property-string.jsx +59 -0
- package/src/catalog/properties/property-toggle.jsx +51 -0
- package/src/catalog/properties/shared-property-style.js +13 -0
- package/src/catalog/utils/FuseUtils.js +61 -0
- package/src/catalog/utils/exporter.js +173 -0
- package/src/catalog/utils/geom-utils.js +301 -0
- package/src/catalog/utils/item-loader.jsx +2122 -0
- package/src/catalog/utils/load-obj.js +113 -0
- package/src/catalog/utils/mtl-loader.js +462 -0
- package/src/catalog/utils/obj-loader.js +544 -0
- package/src/class/FuseUtils.js +61 -0
- package/src/class/area.js +159 -0
- package/src/class/export.js +37 -0
- package/src/class/group.js +565 -0
- package/src/class/guide.js +44 -0
- package/src/class/hole.js +1359 -0
- package/src/class/item.js +2050 -0
- package/src/class/layer.js +926 -0
- package/src/class/line.js +1780 -0
- package/src/class/project.js +875 -0
- package/src/class/vertex.js +409 -0
- package/src/components/atoms/Snackbar/index.jsx +43 -0
- package/src/components/atoms/radio-button/index.jsx +20 -0
- package/src/components/atoms/radio-button/styles.js +56 -0
- package/src/components/button/MainButton.jsx +157 -0
- package/src/components/button/ToggleMeasureButton.jsx +65 -0
- package/src/components/catalog-view/catalog-breadcrumb.jsx +53 -0
- package/src/components/catalog-view/catalog-item.jsx +229 -0
- package/src/components/catalog-view/catalog-list.jsx +173 -0
- package/src/components/catalog-view/catalog-page-item.jsx +110 -0
- package/src/components/catalog-view/catalog-turn-back-page-item.jsx +80 -0
- package/src/components/configurator/custom-configurator.jsx +77 -0
- package/src/components/configurator/project-configurator.jsx +120 -0
- package/src/components/content.jsx +136 -0
- package/src/components/export.js +36 -0
- package/src/components/firstsetting/button/styles.js +223 -0
- package/src/components/firstsetting/export.js +9 -0
- package/src/components/firstsetting/firstsetting-content-button.jsx +198 -0
- package/src/components/firstsetting/firstsetting-toggle-button.jsx +101 -0
- package/src/components/firstsetting/firstsetting.jsx +814 -0
- package/src/components/footerbar/button/ControlButton.jsx +43 -0
- package/src/components/footerbar/button/DirectionButton.jsx +54 -0
- package/src/components/footerbar/button/DirectionPanSpinButton.jsx +36 -0
- package/src/components/footerbar/button/ToggleButton.jsx +58 -0
- package/src/components/footerbar/button/ToggleConvertButton.jsx +48 -0
- package/src/components/footerbar/button/ToggleMeasureButton.jsx +33 -0
- package/src/components/footerbar/button/styles.js +217 -0
- package/src/components/footerbar/export.js +9 -0
- package/src/components/footerbar/footer-content-button.jsx +198 -0
- package/src/components/footerbar/footer-toggle-button.jsx +101 -0
- package/src/components/footerbar/footerbar.jsx +1103 -0
- package/src/components/footerbar/styles.js +263 -0
- package/src/components/header/button/MenuButton.jsx +46 -0
- package/src/components/header/button/SaveButton.jsx +54 -0
- package/src/components/header/button/styles.js +181 -0
- package/src/components/header/export.js +5 -0
- package/src/components/header/header.jsx +631 -0
- package/src/components/header/styles.js +320 -0
- package/src/components/login/Login.js +77 -0
- package/src/components/login/LoginForm/index.js +108 -0
- package/src/components/login/Register.js +83 -0
- package/src/components/login/RegisterForm/index.js +171 -0
- package/src/components/login/jwtService.js +201 -0
- package/src/components/molecules/slider/index.jsx +15 -0
- package/src/components/molecules/slider/styles.js +0 -0
- package/src/components/myprojects/export.js +5 -0
- package/src/components/myprojects/index.jsx +445 -0
- package/src/components/myprojects/styles.js +241 -0
- package/src/components/sidebar/custom-accordion.jsx +48 -0
- package/src/components/sidebar/export.js +15 -0
- package/src/components/sidebar/panel-element-editor/attributes-editor/attributes-editor.jsx +73 -0
- package/src/components/sidebar/panel-element-editor/attributes-editor/confirm-popup.jsx +101 -0
- package/src/components/sidebar/panel-element-editor/attributes-editor/hole-attributes-editor.jsx +149 -0
- package/src/components/sidebar/panel-element-editor/attributes-editor/item-attributes-editor.jsx +316 -0
- package/src/components/sidebar/panel-element-editor/attributes-editor/line-attributes-editor.jsx +108 -0
- package/src/components/sidebar/panel-element-editor/element-editor.jsx +1070 -0
- package/src/components/sidebar/panel-element-editor/multi-elements-editor.jsx +0 -0
- package/src/components/sidebar/panel-element-editor/panel-element-editor.jsx +104 -0
- package/src/components/sidebar/panel-element-editor/panel-multi-elements-editor.jsx +155 -0
- package/src/components/sidebar/panel-group-editor.jsx +272 -0
- package/src/components/sidebar/panel-groups.jsx +310 -0
- package/src/components/sidebar/panel-guides.jsx +192 -0
- package/src/components/sidebar/panel-layer-elements.jsx +298 -0
- package/src/components/sidebar/panel-layers.jsx +381 -0
- package/src/components/sidebar/panel.jsx +71 -0
- package/src/components/sidebar/sidebar.jsx +106 -0
- package/src/components/sidebar/toolbar-panel.jsx +139 -0
- package/src/components/sign/export.js +7 -0
- package/src/components/sign/main/index.jsx +523 -0
- package/src/components/sign/main/styles.js +163 -0
- package/src/components/style/button.jsx +95 -0
- package/src/components/style/cancel-button.jsx +20 -0
- package/src/components/style/content-container.jsx +29 -0
- package/src/components/style/content-title.jsx +20 -0
- package/src/components/style/delete-button.jsx +23 -0
- package/src/components/style/export.jsx +48 -0
- package/src/components/style/form-block.jsx +13 -0
- package/src/components/style/form-color-input.jsx +27 -0
- package/src/components/style/form-label.jsx +15 -0
- package/src/components/style/form-number-input.jsx +196 -0
- package/src/components/style/form-number-input_2.jsx +191 -0
- package/src/components/style/form-select.jsx +38 -0
- package/src/components/style/form-slider.jsx +36 -0
- package/src/components/style/form-submit-button.jsx +23 -0
- package/src/components/style/form-text-input.jsx +65 -0
- package/src/components/toolbar/button/ControlButton.jsx +41 -0
- package/src/components/toolbar/button/DirectionButton.jsx +34 -0
- package/src/components/toolbar/button/RightButton.jsx +103 -0
- package/src/components/toolbar/button/ToggleButton.jsx +41 -0
- package/src/components/toolbar/button/index.jsx +55 -0
- package/src/components/toolbar/button/styles.js +127 -0
- package/src/components/toolbar/components/DoorStyleMenu.jsx +103 -0
- package/src/components/toolbar/components/Pricing.jsx +126 -0
- package/src/components/toolbar/components/ReviewForQuote.jsx +635 -0
- package/src/components/toolbar/export.js +21 -0
- package/src/components/toolbar/main/Alert.js +122 -0
- package/src/components/toolbar/main/TakePictureModal.jsx +104 -0
- package/src/components/toolbar/main/confirm-popup.jsx +99 -0
- package/src/components/toolbar/main/index.jsx +5627 -0
- package/src/components/toolbar/main/myComponents.js +123 -0
- package/src/components/toolbar/main/styles.js +696 -0
- package/src/components/toolbar/plugin-item.jsx +123 -0
- package/src/components/toolbar/popup/appliance/appliance-category/index.jsx +73 -0
- package/src/components/toolbar/popup/appliance/choose-appliance/index.jsx +102 -0
- package/src/components/toolbar/popup/appliance/index.jsx +83 -0
- package/src/components/toolbar/popup/autosaveprompt/index.jsx +150 -0
- package/src/components/toolbar/popup/autosaveprompt/styles.js +40 -0
- package/src/components/toolbar/popup/cabinet/cabinet-category/index.jsx +73 -0
- package/src/components/toolbar/popup/cabinet/choose-product/index.jsx +119 -0
- package/src/components/toolbar/popup/cabinet/index.jsx +85 -0
- package/src/components/toolbar/popup/doorStyle/choose-style/index.jsx +63 -0
- package/src/components/toolbar/popup/doorStyle/index.jsx +71 -0
- package/src/components/toolbar/popup/doorStyle/style-category/index.jsx +139 -0
- package/src/components/toolbar/popup/downloadsummary/downloadSummaryContext.js +2 -0
- package/src/components/toolbar/popup/downloadsummary/downloadSummaryTemp.jsx +157 -0
- package/src/components/toolbar/popup/downloadsummary/index.jsx +643 -0
- package/src/components/toolbar/popup/downloadsummary/show2D/show2DView.jsx +51 -0
- package/src/components/toolbar/popup/downloadsummary/show2D/viewer2DDownLoad.jsx +175 -0
- package/src/components/toolbar/popup/downloadsummary/show3D/show3DView.jsx +283 -0
- package/src/components/toolbar/popup/downloadsummary/show3D/viewer3DDownLoad.jsx +2257 -0
- package/src/components/toolbar/popup/downloadsummary/showCabinetInfo.js +93 -0
- package/src/components/toolbar/popup/downloadsummary/showElevation/showElevationView.jsx +132 -0
- package/src/components/toolbar/popup/downloadsummary/showElevation/viewer3DElevationDownload.jsx +2198 -0
- package/src/components/toolbar/popup/downloadsummary/showElevation/viewerElevationDownload.jsx +152 -0
- package/src/components/toolbar/popup/downloadsummary/showWarranty.jsx +149 -0
- package/src/components/toolbar/popup/downloadsummary/styles.js +453 -0
- package/src/components/toolbar/popup/finishingtouch/category/index.jsx +34 -0
- package/src/components/toolbar/popup/finishingtouch/index.jsx +58 -0
- package/src/components/toolbar/popup/finishingtouch/material-edit.jsx +112 -0
- package/src/components/toolbar/popup/finishingtouch/product/index.jsx +116 -0
- package/src/components/toolbar/popup/floorplan/choose-floor/confirm-popup.jsx +101 -0
- package/src/components/toolbar/popup/floorplan/choose-floor/index.jsx +254 -0
- package/src/components/toolbar/popup/floorplan/choose-floor/styles.js +86 -0
- package/src/components/toolbar/popup/floorplan/floor-category/index.jsx +109 -0
- package/src/components/toolbar/popup/floorplan/index.jsx +60 -0
- package/src/components/toolbar/popup/index.jsx +241 -0
- package/src/components/toolbar/popup/newproject/index.jsx +59 -0
- package/src/components/toolbar/popup/newproject/styles.js +41 -0
- package/src/components/toolbar/popup/product/appliance.jsx +54 -0
- package/src/components/toolbar/popup/product/cabinetproduct.jsx +15 -0
- package/src/components/toolbar/popup/product/doorstyle.jsx +58 -0
- package/src/components/toolbar/popup/product/doorstyleproduct.jsx +47 -0
- package/src/components/toolbar/popup/product/floor.jsx +36 -0
- package/src/components/toolbar/popup/product/floorproduct.jsx +42 -0
- package/src/components/toolbar/popup/product/index.jsx +36 -0
- package/src/components/toolbar/popup/product/primary.jsx +77 -0
- package/src/components/toolbar/popup/product/productline.jsx +93 -0
- package/src/components/toolbar/popup/product/reviewItem.jsx +427 -0
- package/src/components/toolbar/popup/product/reviewMolding.jsx +310 -0
- package/src/components/toolbar/popup/product/styles.js +260 -0
- package/src/components/toolbar/popup/savedesign/FullPictureForm.jsx +146 -0
- package/src/components/toolbar/popup/savedesign/index.jsx +495 -0
- package/src/components/toolbar/popup/savedesign/styles.js +151 -0
- package/src/components/toolbar/popup/setDoorStyleOption/index.jsx +87 -0
- package/src/components/toolbar/popup/styles.js +909 -0
- package/src/components/toolbar/popup/submitforquote/AddToCartOptions.jsx +192 -0
- package/src/components/toolbar/popup/submitforquote/CustomerRequestsForm.jsx +96 -0
- package/src/components/toolbar/popup/submitforquote/SkipDesignerReview.jsx +54 -0
- package/src/components/toolbar/popup/submitforquote/StepDots.jsx +25 -0
- package/src/components/toolbar/popup/submitforquote/cart-choice.jsx +116 -0
- package/src/components/toolbar/popup/submitforquote/doorstyle-menus.js +38 -0
- package/src/components/toolbar/popup/submitforquote/index.jsx +698 -0
- package/src/components/toolbar/popup/submitforquote/styles.js +294 -0
- package/src/components/toolbar/popup/submitprompt/index.jsx +89 -0
- package/src/components/toolbar/popup/submitprompt/styles.js +42 -0
- package/src/components/toolbar/toolbar-button.jsx +90 -0
- package/src/components/toolbar/toolbar-load-button.jsx +36 -0
- package/src/components/toolbar/toolbar-save-button.jsx +32 -0
- package/src/components/tutorial-view/Modal.jsx +584 -0
- package/src/components/tutorial-view/styles.js +65 -0
- package/src/components/viewer2d/area.jsx +98 -0
- package/src/components/viewer2d/export.js +48 -0
- package/src/components/viewer2d/grids/grid-horizontal-streak.jsx +40 -0
- package/src/components/viewer2d/grids/grid-streak.jsx +32 -0
- package/src/components/viewer2d/grids/grid-vertical-streak.jsx +41 -0
- package/src/components/viewer2d/grids/grids.jsx +30 -0
- package/src/components/viewer2d/group.jsx +57 -0
- package/src/components/viewer2d/item.jsx +618 -0
- package/src/components/viewer2d/layer.jsx +214 -0
- package/src/components/viewer2d/line.jsx +1358 -0
- package/src/components/viewer2d/ruler.jsx +136 -0
- package/src/components/viewer2d/rulerDist.jsx +192 -0
- package/src/components/viewer2d/rulerX.jsx +141 -0
- package/src/components/viewer2d/rulerY.jsx +138 -0
- package/src/components/viewer2d/scene.jsx +94 -0
- package/src/components/viewer2d/snap.jsx +118 -0
- package/src/components/viewer2d/state.jsx +77 -0
- package/src/components/viewer2d/utils.js +195 -0
- package/src/components/viewer2d/vertex.jsx +76 -0
- package/src/components/viewer2d/viewer2d.jsx +1830 -0
- package/src/components/viewer3d/camera-controls-module/camera-controls.module.js +3078 -0
- package/src/components/viewer3d/dcm.js +226 -0
- package/src/components/viewer3d/fbm.js +383 -0
- package/src/components/viewer3d/front3D.jsx +63 -0
- package/src/components/viewer3d/grid-creator.js +25 -0
- package/src/components/viewer3d/grids/grid-horizontal-streak.js +41 -0
- package/src/components/viewer3d/grids/grid-streak.js +34 -0
- package/src/components/viewer3d/grids/grid-vertical-streak.js +42 -0
- package/src/components/viewer3d/libs/first-person-controls.js +70 -0
- package/src/components/viewer3d/libs/helvetiker_regular.typeface.js +1265 -0
- package/src/components/viewer3d/libs/mtl-loader.js +462 -0
- package/src/components/viewer3d/libs/obj-loader.js +653 -0
- package/src/components/viewer3d/libs/orbit-controls.js +945 -0
- package/src/components/viewer3d/libs/pointer-lock-controls.js +67 -0
- package/src/components/viewer3d/lrm.js +358 -0
- package/src/components/viewer3d/model.js +830 -0
- package/src/components/viewer3d/pointer-lock-navigation.js +140 -0
- package/src/components/viewer3d/ruler-utils/itemRect.jsx +91 -0
- package/src/components/viewer3d/ruler-utils/layer3D.jsx +528 -0
- package/src/components/viewer3d/ruler-utils/ruler3D.jsx +218 -0
- package/src/components/viewer3d/ruler-utils/scene3D.jsx +87 -0
- package/src/components/viewer3d/ruler-utils/state3D.jsx +25 -0
- package/src/components/viewer3d/scene-creator.js +5169 -0
- package/src/components/viewer3d/three-memory-cleaner.js +65 -0
- package/src/components/viewer3d/viewer3d-first-person.js +395 -0
- package/src/components/viewer3d/viewer3d.js +3376 -0
- package/src/components/wizardstep/button/styles.js +677 -0
- package/src/components/wizardstep/export.js +5 -0
- package/src/components/wizardstep/index.jsx +1372 -0
- package/src/components/wizardstep/styles.js +688 -0
- package/src/components/wizardstep/wizardstep-content-button.jsx +198 -0
- package/src/components/wizardstep/wizardstep-toggle-button.jsx +101 -0
- package/src/constants.js +731 -0
- package/src/index.js +32 -0
- package/src/models.js +541 -0
- package/src/plugins/SVGLoader.js +1991 -0
- package/src/plugins/autosave.js +39 -0
- package/src/plugins/console-debugger.js +36 -0
- package/src/plugins/export.js +11 -0
- package/src/plugins/keyboard.js +194 -0
- package/src/reducers/areas-reducer.js +13 -0
- package/src/reducers/export.js +39 -0
- package/src/reducers/groups-reducer.js +73 -0
- package/src/reducers/holes-reducer.js +125 -0
- package/src/reducers/items-reducer.js +286 -0
- package/src/reducers/lines-reducer.js +96 -0
- package/src/reducers/project-reducer.js +239 -0
- package/src/reducers/reducer.js +59 -0
- package/src/reducers/scene-reducer.js +41 -0
- package/src/reducers/user-reducer.js +30 -0
- package/src/reducers/vertices-reducer.js +34 -0
- package/src/reducers/viewer2d-reducer.js +81 -0
- package/src/reducers/viewer3d-reducer.js +65 -0
- package/src/shared-style.js +72 -0
- package/src/translator/en.js +106 -0
- package/src/translator/it.js +80 -0
- package/src/translator/ru.js +80 -0
- package/src/translator/translator.js +81 -0
- package/src/utils/browser.js +36 -0
- package/src/utils/email-validator.js +5 -0
- package/src/utils/export.js +39 -0
- package/src/utils/geometry.js +2572 -0
- package/src/utils/get-edges-of-subgraphs.js +29 -0
- package/src/utils/graph-cycles.js +259 -0
- package/src/utils/graph-inner-cycles.js +49 -0
- package/src/utils/graph.js +147 -0
- package/src/utils/helper.js +431 -0
- package/src/utils/history.js +37 -0
- package/src/utils/id-broker.js +9 -0
- package/src/utils/logger.js +8 -0
- package/src/utils/math.js +51 -0
- package/src/utils/molding.js +973 -0
- package/src/utils/name-generator.js +5 -0
- package/src/utils/objects-utils.js +56 -0
- package/src/utils/phone-validator.js +4 -0
- package/src/utils/process-black-list.js +10 -0
- package/src/utils/react-if.jsx +20 -0
- package/src/utils/snap-scene.js +102 -0
- package/src/utils/snap.js +184 -0
- package/src/utils/threeCSG.es6.js +578 -0
- package/src/version.js +1 -0
- package/es/@history.js +0 -3
- package/es/@history.js.map +0 -1
- package/es/AppContext.js +0 -4
- package/es/AppContext.js.map +0 -1
- package/es/KitchenConfigurator.js +0 -1345
- package/es/KitchenConfigurator.js.map +0 -1
- package/es/KitchenConfiguratorApp.js +0 -532
- package/es/KitchenConfiguratorApp.js.map +0 -1
- package/es/actions/area-actions.js +0 -15
- package/es/actions/area-actions.js.map +0 -1
- package/es/actions/export.js +0 -26
- package/es/actions/export.js.map +0 -1
- package/es/actions/groups-actions.js +0 -90
- package/es/actions/groups-actions.js.map +0 -1
- package/es/actions/holes-actions.js +0 -120
- package/es/actions/holes-actions.js.map +0 -1
- package/es/actions/items-actions.js +0 -314
- package/es/actions/items-actions.js.map +0 -1
- package/es/actions/lines-actions.js +0 -83
- package/es/actions/lines-actions.js.map +0 -1
- package/es/actions/project-actions.js +0 -282
- package/es/actions/project-actions.js.map +0 -1
- package/es/actions/scene-actions.js +0 -34
- package/es/actions/scene-actions.js.map +0 -1
- package/es/actions/user-actions.js +0 -59
- package/es/actions/user-actions.js.map +0 -1
- package/es/actions/vertices-actions.js +0 -28
- package/es/actions/vertices-actions.js.map +0 -1
- package/es/actions/viewer2d-actions.js +0 -59
- package/es/actions/viewer2d-actions.js.map +0 -1
- package/es/actions/viewer3d-actions.js +0 -24
- package/es/actions/viewer3d-actions.js.map +0 -1
- package/es/catalog/areas/area/planner-element.js +0 -41
- package/es/catalog/areas/area/planner-element.js.map +0 -1
- package/es/catalog/catalog.js +0 -278
- package/es/catalog/catalog.js.map +0 -1
- package/es/catalog/factories/area-factory-3d.js +0 -183
- package/es/catalog/factories/area-factory-3d.js.map +0 -1
- package/es/catalog/factories/area-factory.js +0 -82
- package/es/catalog/factories/area-factory.js.map +0 -1
- package/es/catalog/factories/export.js +0 -8
- package/es/catalog/factories/export.js.map +0 -1
- package/es/catalog/factories/wall-factory-3d.js +0 -203
- package/es/catalog/factories/wall-factory-3d.js.map +0 -1
- package/es/catalog/factories/wall-factory.js +0 -269
- package/es/catalog/factories/wall-factory.js.map +0 -1
- package/es/catalog/holes/door-closet/planner-element.js +0 -223
- package/es/catalog/holes/door-closet/planner-element.js.map +0 -1
- package/es/catalog/holes/door-double/planner-element.js +0 -316
- package/es/catalog/holes/door-double/planner-element.js.map +0 -1
- package/es/catalog/holes/door-exterior/planner-element.js +0 -216
- package/es/catalog/holes/door-exterior/planner-element.js.map +0 -1
- package/es/catalog/holes/door-interior/planner-element.js +0 -228
- package/es/catalog/holes/door-interior/planner-element.js.map +0 -1
- package/es/catalog/holes/door-panic/planner-element.js +0 -504
- package/es/catalog/holes/door-panic/planner-element.js.map +0 -1
- package/es/catalog/holes/door-panic-double/planner-element.js +0 -464
- package/es/catalog/holes/door-panic-double/planner-element.js.map +0 -1
- package/es/catalog/holes/door-sliding/planner-element.js +0 -226
- package/es/catalog/holes/door-sliding/planner-element.js.map +0 -1
- package/es/catalog/holes/doorway-framed/planner-element.js +0 -146
- package/es/catalog/holes/doorway-framed/planner-element.js.map +0 -1
- package/es/catalog/holes/doorway-frameless/planner-element.js +0 -105
- package/es/catalog/holes/doorway-frameless/planner-element.js.map +0 -1
- package/es/catalog/holes/window-clear/planner-element.js +0 -167
- package/es/catalog/holes/window-clear/planner-element.js.map +0 -1
- package/es/catalog/holes/window-cross/planner-element.js +0 -166
- package/es/catalog/holes/window-cross/planner-element.js.map +0 -1
- package/es/catalog/holes/window-double-hung/planner-element.js +0 -304
- package/es/catalog/holes/window-double-hung/planner-element.js.map +0 -1
- package/es/catalog/holes/window-vertical/planner-element.js +0 -277
- package/es/catalog/holes/window-vertical/planner-element.js.map +0 -1
- package/es/catalog/lines/wall/planner-element.js +0 -71
- package/es/catalog/lines/wall/planner-element.js.map +0 -1
- package/es/catalog/molding/molding-dcm/planner-element.js +0 -30
- package/es/catalog/molding/molding-dcm/planner-element.js.map +0 -1
- package/es/catalog/molding/molding-fbm/planner-element.js +0 -30
- package/es/catalog/molding/molding-fbm/planner-element.js.map +0 -1
- package/es/catalog/molding/molding-lrm/planner-element.js +0 -30
- package/es/catalog/molding/molding-lrm/planner-element.js.map +0 -1
- package/es/catalog/properties/export.js +0 -22
- package/es/catalog/properties/export.js.map +0 -1
- package/es/catalog/properties/property-checkbox.js +0 -72
- package/es/catalog/properties/property-checkbox.js.map +0 -1
- package/es/catalog/properties/property-color.js +0 -40
- package/es/catalog/properties/property-color.js.map +0 -1
- package/es/catalog/properties/property-enum.js +0 -56
- package/es/catalog/properties/property-enum.js.map +0 -1
- package/es/catalog/properties/property-hidden.js +0 -20
- package/es/catalog/properties/property-hidden.js.map +0 -1
- package/es/catalog/properties/property-lenght-measure.js +0 -102
- package/es/catalog/properties/property-lenght-measure.js.map +0 -1
- package/es/catalog/properties/property-length-measure.js +0 -86
- package/es/catalog/properties/property-length-measure.js.map +0 -1
- package/es/catalog/properties/property-length-measure_hole.js +0 -102
- package/es/catalog/properties/property-length-measure_hole.js.map +0 -1
- package/es/catalog/properties/property-number.js +0 -49
- package/es/catalog/properties/property-number.js.map +0 -1
- package/es/catalog/properties/property-read-only.js +0 -27
- package/es/catalog/properties/property-read-only.js.map +0 -1
- package/es/catalog/properties/property-string.js +0 -49
- package/es/catalog/properties/property-string.js.map +0 -1
- package/es/catalog/properties/property-toggle.js +0 -40
- package/es/catalog/properties/property-toggle.js.map +0 -1
- package/es/catalog/properties/shared-property-style.js +0 -15
- package/es/catalog/properties/shared-property-style.js.map +0 -1
- package/es/catalog/utils/FuseUtils.js +0 -83
- package/es/catalog/utils/FuseUtils.js.map +0 -1
- package/es/catalog/utils/exporter.js +0 -149
- package/es/catalog/utils/exporter.js.map +0 -1
- package/es/catalog/utils/geom-utils.js +0 -190
- package/es/catalog/utils/geom-utils.js.map +0 -1
- package/es/catalog/utils/item-loader.js +0 -1522
- package/es/catalog/utils/item-loader.js.map +0 -1
- package/es/catalog/utils/load-obj.js +0 -92
- package/es/catalog/utils/load-obj.js.map +0 -1
- package/es/catalog/utils/mtl-loader.js +0 -358
- package/es/catalog/utils/mtl-loader.js.map +0 -1
- package/es/catalog/utils/obj-loader.js +0 -477
- package/es/catalog/utils/obj-loader.js.map +0 -1
- package/es/class/FuseUtils.js +0 -83
- package/es/class/FuseUtils.js.map +0 -1
- package/es/class/area.js +0 -146
- package/es/class/area.js.map +0 -1
- package/es/class/export.js +0 -25
- package/es/class/export.js.map +0 -1
- package/es/class/group.js +0 -441
- package/es/class/group.js.map +0 -1
- package/es/class/guide.js +0 -63
- package/es/class/guide.js.map +0 -1
- package/es/class/hole.js +0 -931
- package/es/class/hole.js.map +0 -1
- package/es/class/item.js +0 -1888
- package/es/class/item.js.map +0 -1
- package/es/class/layer.js +0 -668
- package/es/class/layer.js.map +0 -1
- package/es/class/line.js +0 -1290
- package/es/class/line.js.map +0 -1
- package/es/class/project.js +0 -823
- package/es/class/project.js.map +0 -1
- package/es/class/vertex.js +0 -267
- package/es/class/vertex.js.map +0 -1
- package/es/components/atoms/Snackbar/index.js +0 -50
- package/es/components/atoms/Snackbar/index.js.map +0 -1
- package/es/components/atoms/radio-button/index.js +0 -26
- package/es/components/atoms/radio-button/index.js.map +0 -1
- package/es/components/atoms/radio-button/styles.js +0 -5
- package/es/components/atoms/radio-button/styles.js.map +0 -1
- package/es/components/button/MainButton.js +0 -92
- package/es/components/button/MainButton.js.map +0 -1
- package/es/components/button/ToggleMeasureButton.js +0 -56
- package/es/components/button/ToggleMeasureButton.js.map +0 -1
- package/es/components/catalog-view/catalog-breadcrumb.js +0 -53
- package/es/components/catalog-view/catalog-breadcrumb.js.map +0 -1
- package/es/components/catalog-view/catalog-item.js +0 -226
- package/es/components/catalog-view/catalog-item.js.map +0 -1
- package/es/components/catalog-view/catalog-list.js +0 -182
- package/es/components/catalog-view/catalog-list.js.map +0 -1
- package/es/components/catalog-view/catalog-page-item.js +0 -130
- package/es/components/catalog-view/catalog-page-item.js.map +0 -1
- package/es/components/catalog-view/catalog-turn-back-page-item.js +0 -106
- package/es/components/catalog-view/catalog-turn-back-page-item.js.map +0 -1
- package/es/components/configurator/custom-configurator.js +0 -94
- package/es/components/configurator/custom-configurator.js.map +0 -1
- package/es/components/configurator/project-configurator.js +0 -131
- package/es/components/configurator/project-configurator.js.map +0 -1
- package/es/components/content.js +0 -123
- package/es/components/content.js.map +0 -1
- package/es/components/export.js +0 -24
- package/es/components/export.js.map +0 -1
- package/es/components/firstsetting/button/styles.js +0 -27
- package/es/components/firstsetting/button/styles.js.map +0 -1
- package/es/components/firstsetting/export.js +0 -9
- package/es/components/firstsetting/export.js.map +0 -1
- package/es/components/firstsetting/firstsetting-content-button.js +0 -217
- package/es/components/firstsetting/firstsetting-content-button.js.map +0 -1
- package/es/components/firstsetting/firstsetting-toggle-button.js +0 -126
- package/es/components/firstsetting/firstsetting-toggle-button.js.map +0 -1
- package/es/components/firstsetting/firstsetting.js +0 -626
- package/es/components/firstsetting/firstsetting.js.map +0 -1
- package/es/components/footerbar/button/ControlButton.js +0 -72
- package/es/components/footerbar/button/ControlButton.js.map +0 -1
- package/es/components/footerbar/button/DirectionButton.js +0 -69
- package/es/components/footerbar/button/DirectionButton.js.map +0 -1
- package/es/components/footerbar/button/DirectionPanSpinButton.js +0 -50
- package/es/components/footerbar/button/DirectionPanSpinButton.js.map +0 -1
- package/es/components/footerbar/button/ToggleButton.js +0 -76
- package/es/components/footerbar/button/ToggleButton.js.map +0 -1
- package/es/components/footerbar/button/ToggleConvertButton.js +0 -73
- package/es/components/footerbar/button/ToggleConvertButton.js.map +0 -1
- package/es/components/footerbar/button/ToggleMeasureButton.js +0 -52
- package/es/components/footerbar/button/ToggleMeasureButton.js.map +0 -1
- package/es/components/footerbar/button/styles.js +0 -22
- package/es/components/footerbar/button/styles.js.map +0 -1
- package/es/components/footerbar/export.js +0 -9
- package/es/components/footerbar/export.js.map +0 -1
- package/es/components/footerbar/footer-content-button.js +0 -217
- package/es/components/footerbar/footer-content-button.js.map +0 -1
- package/es/components/footerbar/footer-toggle-button.js +0 -126
- package/es/components/footerbar/footer-toggle-button.js.map +0 -1
- package/es/components/footerbar/footerbar.js +0 -801
- package/es/components/footerbar/footerbar.js.map +0 -1
- package/es/components/footerbar/styles.js +0 -34
- package/es/components/footerbar/styles.js.map +0 -1
- package/es/components/header/button/MenuButton.js +0 -70
- package/es/components/header/button/MenuButton.js.map +0 -1
- package/es/components/header/button/SaveButton.js +0 -48
- package/es/components/header/button/SaveButton.js.map +0 -1
- package/es/components/header/button/styles.js +0 -59
- package/es/components/header/button/styles.js.map +0 -1
- package/es/components/header/export.js +0 -5
- package/es/components/header/export.js.map +0 -1
- package/es/components/header/header.js +0 -550
- package/es/components/header/header.js.map +0 -1
- package/es/components/header/styles.js +0 -41
- package/es/components/header/styles.js.map +0 -1
- package/es/components/login/Login.js +0 -86
- package/es/components/login/Login.js.map +0 -1
- package/es/components/login/LoginForm/index.js +0 -132
- package/es/components/login/LoginForm/index.js.map +0 -1
- package/es/components/login/Register.js +0 -96
- package/es/components/login/Register.js.map +0 -1
- package/es/components/login/RegisterForm/index.js +0 -230
- package/es/components/login/RegisterForm/index.js.map +0 -1
- package/es/components/login/jwtService.js +0 -232
- package/es/components/login/jwtService.js.map +0 -1
- package/es/components/molecules/slider/index.js +0 -13
- package/es/components/molecules/slider/index.js.map +0 -1
- package/es/components/molecules/slider/styles.js +0 -2
- package/es/components/molecules/slider/styles.js.map +0 -1
- package/es/components/myprojects/export.js +0 -5
- package/es/components/myprojects/export.js.map +0 -1
- package/es/components/myprojects/index.js +0 -446
- package/es/components/myprojects/index.js.map +0 -1
- package/es/components/myprojects/styles.js +0 -24
- package/es/components/myprojects/styles.js.map +0 -1
- package/es/components/sidebar/custom-accordion.js +0 -38
- package/es/components/sidebar/custom-accordion.js.map +0 -1
- package/es/components/sidebar/export.js +0 -14
- package/es/components/sidebar/export.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/attributes-editor/attributes-editor.js +0 -65
- package/es/components/sidebar/panel-element-editor/attributes-editor/attributes-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/attributes-editor/confirm-popup.js +0 -116
- package/es/components/sidebar/panel-element-editor/attributes-editor/confirm-popup.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/attributes-editor/hole-attributes-editor.js +0 -126
- package/es/components/sidebar/panel-element-editor/attributes-editor/hole-attributes-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/attributes-editor/item-attributes-editor.js +0 -251
- package/es/components/sidebar/panel-element-editor/attributes-editor/item-attributes-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/attributes-editor/line-attributes-editor.js +0 -75
- package/es/components/sidebar/panel-element-editor/attributes-editor/line-attributes-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/element-editor.js +0 -878
- package/es/components/sidebar/panel-element-editor/element-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/multi-elements-editor.js +0 -2
- package/es/components/sidebar/panel-element-editor/multi-elements-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/panel-element-editor.js +0 -49
- package/es/components/sidebar/panel-element-editor/panel-element-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/panel-multi-elements-editor.js +0 -118
- package/es/components/sidebar/panel-element-editor/panel-multi-elements-editor.js.map +0 -1
- package/es/components/sidebar/panel-group-editor.js +0 -211
- package/es/components/sidebar/panel-group-editor.js.map +0 -1
- package/es/components/sidebar/panel-groups.js +0 -267
- package/es/components/sidebar/panel-groups.js.map +0 -1
- package/es/components/sidebar/panel-guides.js +0 -185
- package/es/components/sidebar/panel-guides.js.map +0 -1
- package/es/components/sidebar/panel-layer-elements.js +0 -251
- package/es/components/sidebar/panel-layer-elements.js.map +0 -1
- package/es/components/sidebar/panel-layers.js +0 -340
- package/es/components/sidebar/panel-layers.js.map +0 -1
- package/es/components/sidebar/panel.js +0 -103
- package/es/components/sidebar/panel.js.map +0 -1
- package/es/components/sidebar/sidebar.js +0 -109
- package/es/components/sidebar/sidebar.js.map +0 -1
- package/es/components/sidebar/toolbar-panel.js +0 -164
- package/es/components/sidebar/toolbar-panel.js.map +0 -1
- package/es/components/sign/export.js +0 -6
- package/es/components/sign/export.js.map +0 -1
- package/es/components/sign/main/index.js +0 -560
- package/es/components/sign/main/index.js.map +0 -1
- package/es/components/sign/main/styles.js +0 -20
- package/es/components/sign/main/styles.js.map +0 -1
- package/es/components/style/button.js +0 -114
- package/es/components/style/button.js.map +0 -1
- package/es/components/style/cancel-button.js +0 -23
- package/es/components/style/cancel-button.js.map +0 -1
- package/es/components/style/content-container.js +0 -34
- package/es/components/style/content-container.js.map +0 -1
- package/es/components/style/content-title.js +0 -30
- package/es/components/style/content-title.js.map +0 -1
- package/es/components/style/delete-button.js +0 -26
- package/es/components/style/delete-button.js.map +0 -1
- package/es/components/style/export.js +0 -32
- package/es/components/style/export.js.map +0 -1
- package/es/components/style/form-block.js +0 -25
- package/es/components/style/form-block.js.map +0 -1
- package/es/components/style/form-color-input.js +0 -28
- package/es/components/style/form-color-input.js.map +0 -1
- package/es/components/style/form-label.js +0 -27
- package/es/components/style/form-label.js.map +0 -1
- package/es/components/style/form-number-input.js +0 -190
- package/es/components/style/form-number-input.js.map +0 -1
- package/es/components/style/form-number-input_2.js +0 -207
- package/es/components/style/form-number-input_2.js.map +0 -1
- package/es/components/style/form-select.js +0 -21
- package/es/components/style/form-select.js.map +0 -1
- package/es/components/style/form-slider.js +0 -46
- package/es/components/style/form-slider.js.map +0 -1
- package/es/components/style/form-submit-button.js +0 -27
- package/es/components/style/form-submit-button.js.map +0 -1
- package/es/components/style/form-text-input.js +0 -77
- package/es/components/style/form-text-input.js.map +0 -1
- package/es/components/toolbar/button/ControlButton.js +0 -69
- package/es/components/toolbar/button/ControlButton.js.map +0 -1
- package/es/components/toolbar/button/DirectionButton.js +0 -50
- package/es/components/toolbar/button/DirectionButton.js.map +0 -1
- package/es/components/toolbar/button/RightButton.js +0 -133
- package/es/components/toolbar/button/RightButton.js.map +0 -1
- package/es/components/toolbar/button/ToggleButton.js +0 -59
- package/es/components/toolbar/button/ToggleButton.js.map +0 -1
- package/es/components/toolbar/button/index.js +0 -88
- package/es/components/toolbar/button/index.js.map +0 -1
- package/es/components/toolbar/button/styles.js +0 -14
- package/es/components/toolbar/button/styles.js.map +0 -1
- package/es/components/toolbar/components/DoorStyleMenu.js +0 -105
- package/es/components/toolbar/components/DoorStyleMenu.js.map +0 -1
- package/es/components/toolbar/components/Pricing.js +0 -101
- package/es/components/toolbar/components/Pricing.js.map +0 -1
- package/es/components/toolbar/components/ReviewForQuote.js +0 -476
- package/es/components/toolbar/components/ReviewForQuote.js.map +0 -1
- package/es/components/toolbar/export.js +0 -14
- package/es/components/toolbar/export.js.map +0 -1
- package/es/components/toolbar/main/Alert.js +0 -125
- package/es/components/toolbar/main/Alert.js.map +0 -1
- package/es/components/toolbar/main/TakePictureModal.js +0 -100
- package/es/components/toolbar/main/TakePictureModal.js.map +0 -1
- package/es/components/toolbar/main/confirm-popup.js +0 -88
- package/es/components/toolbar/main/confirm-popup.js.map +0 -1
- package/es/components/toolbar/main/index.js +0 -4612
- package/es/components/toolbar/main/index.js.map +0 -1
- package/es/components/toolbar/main/myComponents.js +0 -118
- package/es/components/toolbar/main/myComponents.js.map +0 -1
- package/es/components/toolbar/main/styles.js +0 -64
- package/es/components/toolbar/main/styles.js.map +0 -1
- package/es/components/toolbar/plugin-item.js +0 -150
- package/es/components/toolbar/plugin-item.js.map +0 -1
- package/es/components/toolbar/popup/appliance/appliance-category/index.js +0 -77
- package/es/components/toolbar/popup/appliance/appliance-category/index.js.map +0 -1
- package/es/components/toolbar/popup/appliance/choose-appliance/index.js +0 -76
- package/es/components/toolbar/popup/appliance/choose-appliance/index.js.map +0 -1
- package/es/components/toolbar/popup/appliance/index.js +0 -81
- package/es/components/toolbar/popup/appliance/index.js.map +0 -1
- package/es/components/toolbar/popup/autosaveprompt/index.js +0 -91
- package/es/components/toolbar/popup/autosaveprompt/index.js.map +0 -1
- package/es/components/toolbar/popup/autosaveprompt/styles.js +0 -9
- package/es/components/toolbar/popup/autosaveprompt/styles.js.map +0 -1
- package/es/components/toolbar/popup/cabinet/cabinet-category/index.js +0 -77
- package/es/components/toolbar/popup/cabinet/cabinet-category/index.js.map +0 -1
- package/es/components/toolbar/popup/cabinet/choose-product/index.js +0 -98
- package/es/components/toolbar/popup/cabinet/choose-product/index.js.map +0 -1
- package/es/components/toolbar/popup/cabinet/index.js +0 -83
- package/es/components/toolbar/popup/cabinet/index.js.map +0 -1
- package/es/components/toolbar/popup/doorStyle/choose-style/index.js +0 -50
- package/es/components/toolbar/popup/doorStyle/choose-style/index.js.map +0 -1
- package/es/components/toolbar/popup/doorStyle/index.js +0 -61
- package/es/components/toolbar/popup/doorStyle/index.js.map +0 -1
- package/es/components/toolbar/popup/doorStyle/style-category/index.js +0 -143
- package/es/components/toolbar/popup/doorStyle/style-category/index.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/downloadSummaryContext.js +0 -3
- package/es/components/toolbar/popup/downloadsummary/downloadSummaryContext.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/downloadSummaryTemp.js +0 -119
- package/es/components/toolbar/popup/downloadsummary/downloadSummaryTemp.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/index.js +0 -564
- package/es/components/toolbar/popup/downloadsummary/index.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/show2D/show2DView.js +0 -51
- package/es/components/toolbar/popup/downloadsummary/show2D/show2DView.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/show2D/viewer2DDownLoad.js +0 -191
- package/es/components/toolbar/popup/downloadsummary/show2D/viewer2DDownLoad.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/show3D/show3DView.js +0 -245
- package/es/components/toolbar/popup/downloadsummary/show3D/show3DView.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/show3D/viewer3DDownLoad.js +0 -1758
- package/es/components/toolbar/popup/downloadsummary/show3D/viewer3DDownLoad.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/showCabinetInfo.js +0 -87
- package/es/components/toolbar/popup/downloadsummary/showCabinetInfo.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/showElevation/showElevationView.js +0 -116
- package/es/components/toolbar/popup/downloadsummary/showElevation/showElevationView.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/showElevation/viewer3DElevationDownload.js +0 -1710
- package/es/components/toolbar/popup/downloadsummary/showElevation/viewer3DElevationDownload.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/showElevation/viewerElevationDownload.js +0 -175
- package/es/components/toolbar/popup/downloadsummary/showElevation/viewerElevationDownload.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/showWarranty.js +0 -106
- package/es/components/toolbar/popup/downloadsummary/showWarranty.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/styles.js +0 -40
- package/es/components/toolbar/popup/downloadsummary/styles.js.map +0 -1
- package/es/components/toolbar/popup/finishingtouch/category/index.js +0 -35
- package/es/components/toolbar/popup/finishingtouch/category/index.js.map +0 -1
- package/es/components/toolbar/popup/finishingtouch/index.js +0 -47
- package/es/components/toolbar/popup/finishingtouch/index.js.map +0 -1
- package/es/components/toolbar/popup/finishingtouch/material-edit.js +0 -156
- package/es/components/toolbar/popup/finishingtouch/material-edit.js.map +0 -1
- package/es/components/toolbar/popup/finishingtouch/product/index.js +0 -56
- package/es/components/toolbar/popup/finishingtouch/product/index.js.map +0 -1
- package/es/components/toolbar/popup/floorplan/choose-floor/confirm-popup.js +0 -116
- package/es/components/toolbar/popup/floorplan/choose-floor/confirm-popup.js.map +0 -1
- package/es/components/toolbar/popup/floorplan/choose-floor/index.js +0 -246
- package/es/components/toolbar/popup/floorplan/choose-floor/index.js.map +0 -1
- package/es/components/toolbar/popup/floorplan/choose-floor/styles.js +0 -11
- package/es/components/toolbar/popup/floorplan/choose-floor/styles.js.map +0 -1
- package/es/components/toolbar/popup/floorplan/floor-category/index.js +0 -90
- package/es/components/toolbar/popup/floorplan/floor-category/index.js.map +0 -1
- package/es/components/toolbar/popup/floorplan/index.js +0 -49
- package/es/components/toolbar/popup/floorplan/index.js.map +0 -1
- package/es/components/toolbar/popup/index.js +0 -188
- package/es/components/toolbar/popup/index.js.map +0 -1
- package/es/components/toolbar/popup/newproject/index.js +0 -67
- package/es/components/toolbar/popup/newproject/index.js.map +0 -1
- package/es/components/toolbar/popup/newproject/styles.js +0 -9
- package/es/components/toolbar/popup/newproject/styles.js.map +0 -1
- package/es/components/toolbar/popup/product/appliance.js +0 -65
- package/es/components/toolbar/popup/product/appliance.js.map +0 -1
- package/es/components/toolbar/popup/product/cabinetproduct.js +0 -25
- package/es/components/toolbar/popup/product/cabinetproduct.js.map +0 -1
- package/es/components/toolbar/popup/product/doorstyle.js +0 -50
- package/es/components/toolbar/popup/product/doorstyle.js.map +0 -1
- package/es/components/toolbar/popup/product/doorstyleproduct.js +0 -51
- package/es/components/toolbar/popup/product/doorstyleproduct.js.map +0 -1
- package/es/components/toolbar/popup/product/floor.js +0 -52
- package/es/components/toolbar/popup/product/floor.js.map +0 -1
- package/es/components/toolbar/popup/product/floorproduct.js +0 -61
- package/es/components/toolbar/popup/product/floorproduct.js.map +0 -1
- package/es/components/toolbar/popup/product/index.js +0 -52
- package/es/components/toolbar/popup/product/index.js.map +0 -1
- package/es/components/toolbar/popup/product/primary.js +0 -63
- package/es/components/toolbar/popup/product/primary.js.map +0 -1
- package/es/components/toolbar/popup/product/productline.js +0 -120
- package/es/components/toolbar/popup/product/productline.js.map +0 -1
- package/es/components/toolbar/popup/product/reviewItem.js +0 -338
- package/es/components/toolbar/popup/product/reviewItem.js.map +0 -1
- package/es/components/toolbar/popup/product/reviewMolding.js +0 -282
- package/es/components/toolbar/popup/product/reviewMolding.js.map +0 -1
- package/es/components/toolbar/popup/product/styles.js +0 -71
- package/es/components/toolbar/popup/product/styles.js.map +0 -1
- package/es/components/toolbar/popup/savedesign/FullPictureForm.js +0 -161
- package/es/components/toolbar/popup/savedesign/FullPictureForm.js.map +0 -1
- package/es/components/toolbar/popup/savedesign/index.js +0 -508
- package/es/components/toolbar/popup/savedesign/index.js.map +0 -1
- package/es/components/toolbar/popup/savedesign/styles.js +0 -19
- package/es/components/toolbar/popup/savedesign/styles.js.map +0 -1
- package/es/components/toolbar/popup/setDoorStyleOption/index.js +0 -57
- package/es/components/toolbar/popup/setDoorStyleOption/index.js.map +0 -1
- package/es/components/toolbar/popup/styles.js +0 -98
- package/es/components/toolbar/popup/styles.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/AddToCartOptions.js +0 -157
- package/es/components/toolbar/popup/submitforquote/AddToCartOptions.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/CustomerRequestsForm.js +0 -85
- package/es/components/toolbar/popup/submitforquote/CustomerRequestsForm.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/SkipDesignerReview.js +0 -36
- package/es/components/toolbar/popup/submitforquote/SkipDesignerReview.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/StepDots.js +0 -33
- package/es/components/toolbar/popup/submitforquote/StepDots.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/cart-choice.js +0 -132
- package/es/components/toolbar/popup/submitforquote/cart-choice.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/doorstyle-menus.js +0 -43
- package/es/components/toolbar/popup/submitforquote/doorstyle-menus.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/index.js +0 -690
- package/es/components/toolbar/popup/submitforquote/index.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/styles.js +0 -31
- package/es/components/toolbar/popup/submitforquote/styles.js.map +0 -1
- package/es/components/toolbar/popup/submitprompt/index.js +0 -71
- package/es/components/toolbar/popup/submitprompt/index.js.map +0 -1
- package/es/components/toolbar/popup/submitprompt/styles.js +0 -9
- package/es/components/toolbar/popup/submitprompt/styles.js.map +0 -1
- package/es/components/toolbar/toolbar-button.js +0 -105
- package/es/components/toolbar/toolbar-button.js.map +0 -1
- package/es/components/toolbar/toolbar-load-button.js +0 -29
- package/es/components/toolbar/toolbar-load-button.js.map +0 -1
- package/es/components/toolbar/toolbar-save-button.js +0 -27
- package/es/components/toolbar/toolbar-save-button.js.map +0 -1
- package/es/components/tutorial-view/Modal.js +0 -498
- package/es/components/tutorial-view/Modal.js.map +0 -1
- package/es/components/tutorial-view/styles.js +0 -6
- package/es/components/tutorial-view/styles.js.map +0 -1
- package/es/components/viewer2d/area.js +0 -83
- package/es/components/viewer2d/area.js.map +0 -1
- package/es/components/viewer2d/export.js +0 -32
- package/es/components/viewer2d/export.js.map +0 -1
- package/es/components/viewer2d/grids/grid-horizontal-streak.js +0 -38
- package/es/components/viewer2d/grids/grid-horizontal-streak.js.map +0 -1
- package/es/components/viewer2d/grids/grid-streak.js +0 -38
- package/es/components/viewer2d/grids/grid-streak.js.map +0 -1
- package/es/components/viewer2d/grids/grid-vertical-streak.js +0 -38
- package/es/components/viewer2d/grids/grid-vertical-streak.js.map +0 -1
- package/es/components/viewer2d/grids/grids.js +0 -36
- package/es/components/viewer2d/grids/grids.js.map +0 -1
- package/es/components/viewer2d/group.js +0 -54
- package/es/components/viewer2d/group.js.map +0 -1
- package/es/components/viewer2d/item.js +0 -514
- package/es/components/viewer2d/item.js.map +0 -1
- package/es/components/viewer2d/layer.js +0 -165
- package/es/components/viewer2d/layer.js.map +0 -1
- package/es/components/viewer2d/line.js +0 -889
- package/es/components/viewer2d/line.js.map +0 -1
- package/es/components/viewer2d/ruler.js +0 -101
- package/es/components/viewer2d/ruler.js.map +0 -1
- package/es/components/viewer2d/rulerDist.js +0 -147
- package/es/components/viewer2d/rulerDist.js.map +0 -1
- package/es/components/viewer2d/rulerX.js +0 -152
- package/es/components/viewer2d/rulerX.js.map +0 -1
- package/es/components/viewer2d/rulerY.js +0 -154
- package/es/components/viewer2d/rulerY.js.map +0 -1
- package/es/components/viewer2d/scene.js +0 -141
- package/es/components/viewer2d/scene.js.map +0 -1
- package/es/components/viewer2d/snap.js +0 -75
- package/es/components/viewer2d/snap.js.map +0 -1
- package/es/components/viewer2d/state.js +0 -79
- package/es/components/viewer2d/state.js.map +0 -1
- package/es/components/viewer2d/utils.js +0 -163
- package/es/components/viewer2d/utils.js.map +0 -1
- package/es/components/viewer2d/vertex.js +0 -67
- package/es/components/viewer2d/vertex.js.map +0 -1
- package/es/components/viewer2d/viewer2d.js +0 -1402
- package/es/components/viewer2d/viewer2d.js.map +0 -1
- package/es/components/viewer3d/camera-controls-module/camera-controls.module.js +0 -2593
- package/es/components/viewer3d/camera-controls-module/camera-controls.module.js.map +0 -1
- package/es/components/viewer3d/dcm.js +0 -402
- package/es/components/viewer3d/dcm.js.map +0 -1
- package/es/components/viewer3d/fbm.js +0 -415
- package/es/components/viewer3d/fbm.js.map +0 -1
- package/es/components/viewer3d/front3D.js +0 -67
- package/es/components/viewer3d/front3D.js.map +0 -1
- package/es/components/viewer3d/grid-creator.js +0 -26
- package/es/components/viewer3d/grid-creator.js.map +0 -1
- package/es/components/viewer3d/grids/grid-horizontal-streak.js +0 -37
- package/es/components/viewer3d/grids/grid-horizontal-streak.js.map +0 -1
- package/es/components/viewer3d/grids/grid-streak.js +0 -28
- package/es/components/viewer3d/grids/grid-streak.js.map +0 -1
- package/es/components/viewer3d/grids/grid-vertical-streak.js +0 -37
- package/es/components/viewer3d/grids/grid-vertical-streak.js.map +0 -1
- package/es/components/viewer3d/libs/first-person-controls.js +0 -68
- package/es/components/viewer3d/libs/first-person-controls.js.map +0 -1
- package/es/components/viewer3d/libs/helvetiker_regular.typeface.js +0 -1282
- package/es/components/viewer3d/libs/helvetiker_regular.typeface.js.map +0 -1
- package/es/components/viewer3d/libs/mtl-loader.js +0 -358
- package/es/components/viewer3d/libs/mtl-loader.js.map +0 -1
- package/es/components/viewer3d/libs/obj-loader.js +0 -463
- package/es/components/viewer3d/libs/obj-loader.js.map +0 -1
- package/es/components/viewer3d/libs/orbit-controls.js +0 -699
- package/es/components/viewer3d/libs/orbit-controls.js.map +0 -1
- package/es/components/viewer3d/libs/pointer-lock-controls.js +0 -46
- package/es/components/viewer3d/libs/pointer-lock-controls.js.map +0 -1
- package/es/components/viewer3d/lrm.js +0 -306
- package/es/components/viewer3d/lrm.js.map +0 -1
- package/es/components/viewer3d/model.js +0 -709
- package/es/components/viewer3d/model.js.map +0 -1
- package/es/components/viewer3d/pointer-lock-navigation.js +0 -116
- package/es/components/viewer3d/pointer-lock-navigation.js.map +0 -1
- package/es/components/viewer3d/ruler-utils/itemRect.js +0 -62
- package/es/components/viewer3d/ruler-utils/itemRect.js.map +0 -1
- package/es/components/viewer3d/ruler-utils/layer3D.js +0 -496
- package/es/components/viewer3d/ruler-utils/layer3D.js.map +0 -1
- package/es/components/viewer3d/ruler-utils/ruler3D.js +0 -228
- package/es/components/viewer3d/ruler-utils/ruler3D.js.map +0 -1
- package/es/components/viewer3d/ruler-utils/scene3D.js +0 -62
- package/es/components/viewer3d/ruler-utils/scene3D.js.map +0 -1
- package/es/components/viewer3d/ruler-utils/state3D.js +0 -19
- package/es/components/viewer3d/ruler-utils/state3D.js.map +0 -1
- package/es/components/viewer3d/scene-creator.js +0 -3607
- package/es/components/viewer3d/scene-creator.js.map +0 -1
- package/es/components/viewer3d/three-memory-cleaner.js +0 -52
- package/es/components/viewer3d/three-memory-cleaner.js.map +0 -1
- package/es/components/viewer3d/viewer3d-first-person.js +0 -316
- package/es/components/viewer3d/viewer3d-first-person.js.map +0 -1
- package/es/components/viewer3d/viewer3d.js +0 -2504
- package/es/components/viewer3d/viewer3d.js.map +0 -1
- package/es/components/wizardstep/button/styles.js +0 -60
- package/es/components/wizardstep/button/styles.js.map +0 -1
- package/es/components/wizardstep/export.js +0 -5
- package/es/components/wizardstep/export.js.map +0 -1
- package/es/components/wizardstep/index.js +0 -971
- package/es/components/wizardstep/index.js.map +0 -1
- package/es/components/wizardstep/styles.js +0 -61
- package/es/components/wizardstep/styles.js.map +0 -1
- package/es/components/wizardstep/wizardstep-content-button.js +0 -217
- package/es/components/wizardstep/wizardstep-content-button.js.map +0 -1
- package/es/components/wizardstep/wizardstep-toggle-button.js +0 -126
- package/es/components/wizardstep/wizardstep-toggle-button.js.map +0 -1
- package/es/constants.js +0 -637
- package/es/constants.js.map +0 -1
- package/es/hooks/useCheckCart.js +0 -53
- package/es/hooks/useCheckCart.js.map +0 -1
- package/es/hooks/useGetPricesBySku.js +0 -74
- package/es/hooks/useGetPricesBySku.js.map +0 -1
- package/es/hooks/useValidateToken.js +0 -201
- package/es/hooks/useValidateToken.js.map +0 -1
- package/es/index.js +0 -17
- package/es/index.js.map +0 -1
- package/es/models.js +0 -511
- package/es/models.js.map +0 -1
- package/es/plugins/SVGLoader.js +0 -1413
- package/es/plugins/SVGLoader.js.map +0 -1
- package/es/plugins/autosave.js +0 -34
- package/es/plugins/autosave.js.map +0 -1
- package/es/plugins/console-debugger.js +0 -38
- package/es/plugins/console-debugger.js.map +0 -1
- package/es/plugins/export.js +0 -10
- package/es/plugins/export.js.map +0 -1
- package/es/plugins/keyboard.js +0 -102
- package/es/plugins/keyboard.js.map +0 -1
- package/es/reducers/areas-reducer.js +0 -13
- package/es/reducers/areas-reducer.js.map +0 -1
- package/es/reducers/export.js +0 -26
- package/es/reducers/export.js.map +0 -1
- package/es/reducers/groups-reducer.js +0 -39
- package/es/reducers/groups-reducer.js.map +0 -1
- package/es/reducers/holes-reducer.js +0 -63
- package/es/reducers/holes-reducer.js.map +0 -1
- package/es/reducers/items-reducer.js +0 -144
- package/es/reducers/items-reducer.js.map +0 -1
- package/es/reducers/lines-reducer.js +0 -46
- package/es/reducers/lines-reducer.js.map +0 -1
- package/es/reducers/project-reducer.js +0 -130
- package/es/reducers/project-reducer.js.map +0 -1
- package/es/reducers/reducer.js +0 -20
- package/es/reducers/reducer.js.map +0 -1
- package/es/reducers/scene-reducer.js +0 -29
- package/es/reducers/scene-reducer.js.map +0 -1
- package/es/reducers/user-reducer.js +0 -42
- package/es/reducers/user-reducer.js.map +0 -1
- package/es/reducers/vertices-reducer.js +0 -20
- package/es/reducers/vertices-reducer.js.map +0 -1
- package/es/reducers/viewer2d-reducer.js +0 -76
- package/es/reducers/viewer2d-reducer.js.map +0 -1
- package/es/reducers/viewer3d-reducer.js +0 -57
- package/es/reducers/viewer3d-reducer.js.map +0 -1
- package/es/shared-style.js +0 -67
- package/es/shared-style.js.map +0 -1
- package/es/styles/export.js +0 -6
- package/es/styles/export.js.map +0 -1
- package/es/styles/tabs.css +0 -40
- package/es/translator/en.js +0 -105
- package/es/translator/en.js.map +0 -1
- package/es/translator/it.js +0 -80
- package/es/translator/it.js.map +0 -1
- package/es/translator/ru.js +0 -80
- package/es/translator/ru.js.map +0 -1
- package/es/translator/translator.js +0 -85
- package/es/translator/translator.js.map +0 -1
- package/es/utils/browser.js +0 -34
- package/es/utils/browser.js.map +0 -1
- package/es/utils/email-validator.js +0 -5
- package/es/utils/email-validator.js.map +0 -1
- package/es/utils/export.js +0 -26
- package/es/utils/export.js.map +0 -1
- package/es/utils/geometry.js +0 -2237
- package/es/utils/geometry.js.map +0 -1
- package/es/utils/get-edges-of-subgraphs.js +0 -27
- package/es/utils/get-edges-of-subgraphs.js.map +0 -1
- package/es/utils/graph-cycles.js +0 -239
- package/es/utils/graph-cycles.js.map +0 -1
- package/es/utils/graph-inner-cycles.js +0 -47
- package/es/utils/graph-inner-cycles.js.map +0 -1
- package/es/utils/graph.js +0 -150
- package/es/utils/graph.js.map +0 -1
- package/es/utils/helper.js +0 -337
- package/es/utils/helper.js.map +0 -1
- package/es/utils/history.js +0 -30
- package/es/utils/history.js.map +0 -1
- package/es/utils/id-broker.js +0 -20
- package/es/utils/id-broker.js.map +0 -1
- package/es/utils/logger.js +0 -9
- package/es/utils/logger.js.map +0 -1
- package/es/utils/math.js +0 -51
- package/es/utils/math.js.map +0 -1
- package/es/utils/molding.js +0 -840
- package/es/utils/molding.js.map +0 -1
- package/es/utils/name-generator.js +0 -19
- package/es/utils/name-generator.js.map +0 -1
- package/es/utils/objects-utils.js +0 -51
- package/es/utils/objects-utils.js.map +0 -1
- package/es/utils/phone-validator.js +0 -5
- package/es/utils/phone-validator.js.map +0 -1
- package/es/utils/process-black-list.js +0 -19
- package/es/utils/process-black-list.js.map +0 -1
- package/es/utils/react-if.js +0 -19
- package/es/utils/react-if.js.map +0 -1
- package/es/utils/snap-scene.js +0 -100
- package/es/utils/snap-scene.js.map +0 -1
- package/es/utils/snap.js +0 -238
- package/es/utils/snap.js.map +0 -1
- package/es/utils/threeCSG.es6.js +0 -499
- package/es/utils/threeCSG.es6.js.map +0 -1
- package/es/version.js +0 -2
- package/es/version.js.map +0 -1
- /package/{es → src}/catalog/areas/area/textures/ceramic-tile.jpg +0 -0
- /package/{es → src}/catalog/areas/area/textures/grass.jpg +0 -0
- /package/{es → src}/catalog/areas/area/textures/parquet.jpg +0 -0
- /package/{es → src}/catalog/areas/area/textures/strand-porcelain.jpg +0 -0
- /package/{es → src}/catalog/areas/area/textures/tile1.jpg +0 -0
- /package/{es → src}/catalog/back.png +0 -0
- /package/{es → src}/catalog/doors.png +0 -0
- /package/{es → src}/catalog/doorways.png +0 -0
- /package/{es → src}/catalog/envMap/nx.hdr +0 -0
- /package/{es → src}/catalog/envMap/ny.hdr +0 -0
- /package/{es → src}/catalog/envMap/nz.hdr +0 -0
- /package/{es → src}/catalog/envMap/px.hdr +0 -0
- /package/{es → src}/catalog/envMap/py.hdr +0 -0
- /package/{es → src}/catalog/envMap/pz.hdr +0 -0
- /package/{es → src}/catalog/holes/door-double/door_double.png +0 -0
- /package/{es → src}/catalog/holes/door-panic/panicDoor.png +0 -0
- /package/{es → src}/catalog/holes/door-panic-double/panicDoorDouble.png +0 -0
- /package/{es → src}/catalog/holes/gate/gate.jpg +0 -0
- /package/{es → src}/catalog/holes/window-clear/texture.png +0 -0
- /package/{es → src}/catalog/holes/window-cross/texture.png +0 -0
- /package/{es → src}/catalog/holes/window-double-hung/texture.png +0 -0
- /package/{es → src}/catalog/holes/window-vertical/texture.png +0 -0
- /package/{es → src}/catalog/lines/wall/textures/bricks-normal.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/bricks-normal2.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/bricks.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/bricks2.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/bricks3.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/morden-normal.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/morden.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/painted-normal.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/painted.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/plaster-normal.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/plaster.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/wall.png +0 -0
- /package/{es → src}/catalog/molding/molding-dcm/texture.png +0 -0
- /package/{es → src}/catalog/molding/molding-fbm/texture.png +0 -0
- /package/{es → src}/catalog/molding/molding-lrm/texture.png +0 -0
- /package/{es → src}/catalog/windows.png +0 -0
- /package/{es → src}/components/header/header.style.css +0 -0
- /package/{es → src}/components/login/style.css +0 -0
- /package/{es → src}/components/login/style.scss +0 -0
- /package/{es → src}/components/molecules/slider/styles.scss +0 -0
- /package/{es → src}/components/toolbar/main/lShaped.json +0 -0
- /package/{es → src}/components/toolbar/main/longNarrow.json +0 -0
- /package/{es → src}/components/toolbar/main/oRectangle.json +0 -0
- /package/{es → src}/components/toolbar/main/rectangle.json +0 -0
- /package/{es → src}/components/toolbar/main/style.css +0 -0
- /package/{es → src}/components/toolbar/popup/autosaveprompt/styles.css +0 -0
- /package/{es → src}/components/toolbar/popup/downloadsummary/styles.css +0 -0
- /package/{es → src}/components/toolbar/popup/floorplan/choose-floor/lShaped.json +0 -0
- /package/{es → src}/components/toolbar/popup/floorplan/choose-floor/longNarrow.json +0 -0
- /package/{es → src}/components/toolbar/popup/floorplan/choose-floor/oRectangle.json +0 -0
- /package/{es → src}/components/toolbar/popup/floorplan/choose-floor/rectangle.json +0 -0
- /package/{es → src}/components/toolbar/popup/newproject/styles.css +0 -0
- /package/{es → src}/components/toolbar/popup/product/style.css +0 -0
- /package/{es → src}/components/toolbar/popup/savedesign/savedesign.style.css +0 -0
- /package/{es → src}/components/toolbar/popup/submitforquote/styles.css +0 -0
- /package/{es → src}/components/toolbar/popup/submitprompt/styles.css +0 -0
- /package/{es → src}/components/tutorial-view/style.css +0 -0
|
@@ -1,464 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import * as Three from 'three';
|
|
3
|
-
var black = new Three.MeshLambertMaterial({
|
|
4
|
-
color: 0x000000
|
|
5
|
-
});
|
|
6
|
-
var green = new Three.MeshLambertMaterial({
|
|
7
|
-
color: 0x348781
|
|
8
|
-
});
|
|
9
|
-
var red = new Three.MeshLambertMaterial({
|
|
10
|
-
color: 0xff0000
|
|
11
|
-
});
|
|
12
|
-
var turquoise = new Three.MeshLambertMaterial({
|
|
13
|
-
color: 0x43c6db,
|
|
14
|
-
opacity: 0.7,
|
|
15
|
-
transparent: true
|
|
16
|
-
});
|
|
17
|
-
var metalBlue = new Three.MeshLambertMaterial({
|
|
18
|
-
color: 0xb7ceec
|
|
19
|
-
});
|
|
20
|
-
var darkGrey = new Three.MeshLambertMaterial({
|
|
21
|
-
color: 0x313131
|
|
22
|
-
});
|
|
23
|
-
var darkGrey2 = new Three.MeshLambertMaterial({
|
|
24
|
-
color: 0x212121
|
|
25
|
-
});
|
|
26
|
-
var metalBlueGrey = new Three.MeshLambertMaterial({
|
|
27
|
-
color: 0x566d7e
|
|
28
|
-
});
|
|
29
|
-
function makePanicDoor() {
|
|
30
|
-
var panicDoorDouble = new Three.Mesh();
|
|
31
|
-
var doorLeft = makeDoorStructure();
|
|
32
|
-
var doorRight = makeDoorStructure();
|
|
33
|
-
var handle = makeHandle();
|
|
34
|
-
var doorLeftPivot = makePivot();
|
|
35
|
-
var doorRightPivot = makePivot();
|
|
36
|
-
var safetyHandleLeft = makeSafetyHandle();
|
|
37
|
-
var safetyHandleRight = makeSafetyHandle();
|
|
38
|
-
var lock = makeLock();
|
|
39
|
-
var doorLockLeft = makeDoorLock();
|
|
40
|
-
var doorLockRight = makeDoorLock();
|
|
41
|
-
lock.position.set(-0.05, -0.02, 0.03);
|
|
42
|
-
handle.position.set(-0.47 / 2, 0.85 / 2, -0.03);
|
|
43
|
-
doorLeftPivot.position.set(0.595 / 2, 0, -0.06 / 2);
|
|
44
|
-
doorRightPivot.position.set(0.6 / 2, 0, 0.077 / 2);
|
|
45
|
-
doorRight.rotation.y = Math.PI;
|
|
46
|
-
doorRight.position.set(-0.35 / 2 - 0.084, 0, 0.0043);
|
|
47
|
-
doorLeft.position.set(0.35 / 2 + 0.084, 0, -0.0043);
|
|
48
|
-
safetyHandleLeft.position.set(0, 0.4, 0.06 / 2);
|
|
49
|
-
safetyHandleRight.position.set(0, 0.4, -0.062 / 2);
|
|
50
|
-
handle.add(lock);
|
|
51
|
-
doorLeft.add(handle);
|
|
52
|
-
doorLeft.add(safetyHandleLeft);
|
|
53
|
-
doorRight.add(safetyHandleRight);
|
|
54
|
-
doorLeft.add(doorLeftPivot);
|
|
55
|
-
panicDoorDouble.add(doorLeft);
|
|
56
|
-
doorRight.add(doorRightPivot);
|
|
57
|
-
doorLeft.add(doorLockLeft);
|
|
58
|
-
doorRight.add(doorLockRight);
|
|
59
|
-
panicDoorDouble.add(doorRight);
|
|
60
|
-
return panicDoorDouble;
|
|
61
|
-
}
|
|
62
|
-
function makeDoorLock() {
|
|
63
|
-
var block = new Three.Object3D();
|
|
64
|
-
var DoorLockGeometry1 = new Three.CylinderGeometry(0.012, 0.012, 1.905, Math.round(32));
|
|
65
|
-
var DoorLockGeometry2 = new Three.CylinderGeometry(0.007, 0.007, 1.907, Math.round(32));
|
|
66
|
-
var DoorLock1 = new Three.Mesh(DoorLockGeometry1, metalBlue);
|
|
67
|
-
var DoorLock2 = new Three.Mesh(DoorLockGeometry2, metalBlueGrey);
|
|
68
|
-
block.position.set(-0.275, 0.7 / 2, 0);
|
|
69
|
-
block.scale.x = 1 / 1.3;
|
|
70
|
-
DoorLock1.add(DoorLock2);
|
|
71
|
-
block.add(DoorLock1);
|
|
72
|
-
return block;
|
|
73
|
-
}
|
|
74
|
-
function makeLock() {
|
|
75
|
-
var mechanism = new Three.Object3D();
|
|
76
|
-
var BaseGeometry = new Three.BoxGeometry(0.01, 0.1, 0.02);
|
|
77
|
-
var FirstBlockGeometry = new Three.BoxGeometry(0.01, 0.02, 0.01);
|
|
78
|
-
var SecondBlockGeometry = new Three.BoxGeometry(0.006, 0.04, 0.008);
|
|
79
|
-
var base = new Three.Mesh(BaseGeometry, metalBlue);
|
|
80
|
-
var FirstBlock = new Three.Mesh(FirstBlockGeometry, metalBlueGrey);
|
|
81
|
-
var SecondBlock = new Three.Mesh(SecondBlockGeometry, metalBlueGrey);
|
|
82
|
-
FirstBlock.position.set(-0.008 / 2, 0.03, 0);
|
|
83
|
-
SecondBlock.position.y = -0.05;
|
|
84
|
-
FirstBlock.add(SecondBlock);
|
|
85
|
-
base.add(FirstBlock);
|
|
86
|
-
mechanism.add(base);
|
|
87
|
-
return mechanism;
|
|
88
|
-
}
|
|
89
|
-
function makeSafetyHandle() {
|
|
90
|
-
var handle = new Three.Object3D();
|
|
91
|
-
var handleSupportGeometry = new Three.BoxGeometry(0.5, 0.1, 0.005);
|
|
92
|
-
var PushButtonGeometry = new Three.CylinderGeometry(0.04, 0.04, 0.48, Math.round(32));
|
|
93
|
-
var PushButtonCoverGeometry = new Three.CylinderGeometry(0.042, 0.042, 0.01, Math.round(32));
|
|
94
|
-
var handleSupport = new Three.Mesh(handleSupportGeometry, black);
|
|
95
|
-
var pushButton = new Three.Mesh(PushButtonGeometry, red);
|
|
96
|
-
var pushButtonCover1 = new Three.Mesh(PushButtonCoverGeometry, black);
|
|
97
|
-
var pushButtonCover2 = new Three.Mesh(PushButtonCoverGeometry, black);
|
|
98
|
-
handleSupport.position.z = 0.005 / 2;
|
|
99
|
-
pushButton.rotation.z = Math.PI / 2;
|
|
100
|
-
pushButtonCover1.position.y = 0.48 / 2 + 0.01 / 2;
|
|
101
|
-
pushButtonCover2.position.y = -0.48 / 2 - 0.01 / 2;
|
|
102
|
-
pushButton.add(pushButtonCover1);
|
|
103
|
-
pushButton.add(pushButtonCover2);
|
|
104
|
-
handleSupport.add(pushButton);
|
|
105
|
-
handle.add(handleSupport);
|
|
106
|
-
return handle;
|
|
107
|
-
}
|
|
108
|
-
function makePivot() {
|
|
109
|
-
var DoorPivot = new Three.Object3D();
|
|
110
|
-
var DownPivotGeometry = new Three.CylinderGeometry(0.009, 0.009, 0.04, Math.round(32));
|
|
111
|
-
var UpPivotGeometry = new Three.CylinderGeometry(0.01, 0.01, 0.04, Math.round(32));
|
|
112
|
-
var downPivot1 = new Three.Mesh(DownPivotGeometry, green);
|
|
113
|
-
var upPivot1 = new Three.Mesh(UpPivotGeometry, green);
|
|
114
|
-
var downPivot2 = new Three.Mesh(DownPivotGeometry, green);
|
|
115
|
-
var upPivot2 = new Three.Mesh(UpPivotGeometry, green);
|
|
116
|
-
downPivot1.position.y = -0.4;
|
|
117
|
-
upPivot1.position.y = 0.04;
|
|
118
|
-
downPivot2.position.y = 1;
|
|
119
|
-
upPivot2.position.y = 0.04;
|
|
120
|
-
downPivot2.add(upPivot2);
|
|
121
|
-
downPivot1.add(upPivot1);
|
|
122
|
-
DoorPivot.add(downPivot2);
|
|
123
|
-
DoorPivot.add(downPivot1);
|
|
124
|
-
return DoorPivot;
|
|
125
|
-
}
|
|
126
|
-
function makeHandle() {
|
|
127
|
-
var handle = new Three.Object3D();
|
|
128
|
-
var handleBase = makeHandleBase();
|
|
129
|
-
var hilt = makeHilt();
|
|
130
|
-
hilt.rotation.x = Math.PI / 2;
|
|
131
|
-
hilt.position.set(0, 0.04, -0.03 / 2 - 0.01 / 2);
|
|
132
|
-
handle.add(handleBase);
|
|
133
|
-
handle.add(hilt);
|
|
134
|
-
handle.scale.set(1.1, 1.1, 1.1);
|
|
135
|
-
return handle;
|
|
136
|
-
}
|
|
137
|
-
function makeHilt() {
|
|
138
|
-
var hilt = new Three.Object3D();
|
|
139
|
-
var GeometryPiece1 = new Three.CylinderGeometry(0.01, 0.01, 0.03, Math.round(32));
|
|
140
|
-
var GeometryPiece2 = new Three.SphereGeometry(0.01, Math.round(32), Math.round(32));
|
|
141
|
-
var GeometryPiece3 = new Three.CylinderGeometry(0.01, 0.01, 0.07, Math.round(32));
|
|
142
|
-
var piece1 = new Three.Mesh(GeometryPiece1, black);
|
|
143
|
-
var piece2 = new Three.Mesh(GeometryPiece2, black);
|
|
144
|
-
var piece3 = new Three.Mesh(GeometryPiece3, black);
|
|
145
|
-
var piece4 = new Three.Mesh(GeometryPiece2, black);
|
|
146
|
-
piece3.rotation.z = Math.PI / 2;
|
|
147
|
-
piece3.position.x = 0.07 / 2;
|
|
148
|
-
piece2.position.y = -0.03 / 2;
|
|
149
|
-
piece4.position.y = -0.07 / 2;
|
|
150
|
-
piece3.add(piece4);
|
|
151
|
-
piece2.add(piece3);
|
|
152
|
-
piece1.add(piece2);
|
|
153
|
-
hilt.add(piece1);
|
|
154
|
-
return hilt;
|
|
155
|
-
}
|
|
156
|
-
function makeHandleBase() {
|
|
157
|
-
var base = new Three.Object3D();
|
|
158
|
-
var BaseGeometry1 = new Three.BoxGeometry(0.038, 0.14, 0.01);
|
|
159
|
-
var BaseGeometry2 = new Three.CylinderGeometry(0.023, 0.023, 0.01, Math.round(32));
|
|
160
|
-
var lock = makeLockKey();
|
|
161
|
-
var base1 = new Three.Mesh(BaseGeometry1, black);
|
|
162
|
-
var base2 = new Three.Mesh(BaseGeometry2, black);
|
|
163
|
-
lock.rotation.x = Math.PI / 2;
|
|
164
|
-
lock.position.y = -0.03;
|
|
165
|
-
base2.rotation.x = Math.PI / 2;
|
|
166
|
-
base2.position.y = -0.033;
|
|
167
|
-
base2.scale.z = 1.5;
|
|
168
|
-
base1.add(lock);
|
|
169
|
-
base1.add(base2);
|
|
170
|
-
base.add(base1);
|
|
171
|
-
return base;
|
|
172
|
-
}
|
|
173
|
-
function makeLockKey() {
|
|
174
|
-
var lock = new Three.Object3D();
|
|
175
|
-
var geometryLock1 = new Three.CylinderGeometry(0.005, 0.005, 0.02, Math.round(32));
|
|
176
|
-
var geometryLock2 = new Three.BoxGeometry(0.008, 0.02, 0.02);
|
|
177
|
-
var geometryLock3 = new Three.BoxGeometry(0.007, 0.0203, 0.0018);
|
|
178
|
-
var lockPiece1 = new Three.Mesh(geometryLock1, metalBlue);
|
|
179
|
-
var lockPiece2 = new Three.Mesh(geometryLock2, metalBlue);
|
|
180
|
-
var lockPiece3 = new Three.Mesh(geometryLock3, metalBlueGrey);
|
|
181
|
-
lockPiece2.position.z = 0.01;
|
|
182
|
-
lockPiece1.add(lockPiece2);
|
|
183
|
-
lockPiece1.add(lockPiece3);
|
|
184
|
-
lock.add(lockPiece1);
|
|
185
|
-
return lock;
|
|
186
|
-
}
|
|
187
|
-
function makeDoorStructure() {
|
|
188
|
-
var door = new Three.Object3D();
|
|
189
|
-
var lowBaseDoorGeometry = new Three.BoxGeometry(0.6, 1.2, 0.01);
|
|
190
|
-
var middleBaseDoorGeometry = new Three.BoxGeometry(0.2, 0.7, 0.01);
|
|
191
|
-
var highBaseDoorGeometry = new Three.BoxGeometry(0.2, 0.2, 0.01);
|
|
192
|
-
var BorderCoverDoorGeometry1 = new Three.CylinderGeometry(0.005, 0.005, 1.9, Math.round(32));
|
|
193
|
-
var BorderCoverDoorGeometry2 = new Three.BoxGeometry(0.03, 1.9, 0.01);
|
|
194
|
-
var MiddleDoorGeometry2 = new Three.BoxGeometry(0.2, 0.7, 0.06);
|
|
195
|
-
var MiddleDoorGeometry1 = new Three.BoxGeometry(0.19, 0.7, 0.06);
|
|
196
|
-
var HighDoorGeometry = new Three.BoxGeometry(0.2, 0.2, 0.06);
|
|
197
|
-
var glassGeometry = new Three.BoxGeometry(0.2, 0.5, 0.05);
|
|
198
|
-
var LowDoorGeometry = new Three.BoxGeometry(0.59, 1.2, 0.06);
|
|
199
|
-
var glassCoverVertical = new Three.BoxGeometry(0.01, 0.52, 0.064);
|
|
200
|
-
var glassCoverHorizontal = new Three.BoxGeometry(0.224, 0.01, 0.064);
|
|
201
|
-
var lowCoverDoor = new Three.Mesh(lowBaseDoorGeometry, green);
|
|
202
|
-
var middleDoor1 = new Three.Mesh(MiddleDoorGeometry1, green);
|
|
203
|
-
var middleDoor2 = new Three.Mesh(MiddleDoorGeometry2, green);
|
|
204
|
-
var baseDoor = new Three.Mesh(LowDoorGeometry, green);
|
|
205
|
-
var middleCoverDoor1 = new Three.Mesh(middleBaseDoorGeometry, green);
|
|
206
|
-
var middleCoverDoor2 = new Three.Mesh(middleBaseDoorGeometry, green);
|
|
207
|
-
var highCoverDoor = new Three.Mesh(highBaseDoorGeometry, green);
|
|
208
|
-
var highDoor = new Three.Mesh(HighDoorGeometry, green);
|
|
209
|
-
var borderCoverDoor1 = new Three.Mesh(BorderCoverDoorGeometry1, green);
|
|
210
|
-
var borderCoverDoor2 = new Three.Mesh(BorderCoverDoorGeometry2, green);
|
|
211
|
-
var glass = new Three.Mesh(glassGeometry, turquoise);
|
|
212
|
-
var glassVerticalCover1 = new Three.Mesh(glassCoverVertical, green);
|
|
213
|
-
var glassVerticalCover2 = new Three.Mesh(glassCoverVertical, green);
|
|
214
|
-
var glassHorizontalCover1 = new Three.Mesh(glassCoverHorizontal, green);
|
|
215
|
-
var glassHorizontalCover2 = new Three.Mesh(glassCoverHorizontal, green);
|
|
216
|
-
lowCoverDoor.position.set(-(0.6 - 0.59) / 2, 0, -0.05 / 2);
|
|
217
|
-
middleCoverDoor1.position.set(-0.2, 1.2 / 2 + 0.7 / 2, 0);
|
|
218
|
-
middleCoverDoor2.position.set(0.2, 1.2 / 2 + 0.7 / 2, 0);
|
|
219
|
-
highCoverDoor.position.set(0, (0.5 + 0.2) / 2, -0.05 / 2);
|
|
220
|
-
highDoor.position.set(0, (0.5 + 0.2) / 2, -0.05 / 2 + 0.05 / 2);
|
|
221
|
-
glass.position.set(-0.01 / 2, 1.2 / 2 + 0.5 / 2, 0);
|
|
222
|
-
middleDoor2.position.z = 0.05 / 2;
|
|
223
|
-
middleDoor1.position.set(0.005, 0, 0.05 / 2);
|
|
224
|
-
borderCoverDoor1.position.set(-0.6 / 2, 0.7 / 2, 0);
|
|
225
|
-
glassVerticalCover1.position.x = 0.2 / 2 + 0.014 / 2;
|
|
226
|
-
glassVerticalCover2.position.x = -0.2 / 2 - 0.014 / 2;
|
|
227
|
-
glassHorizontalCover1.position.y = 0.5 / 2 + 0.014 / 2;
|
|
228
|
-
glassHorizontalCover2.position.y = -0.5 / 2 - 0.014 / 2;
|
|
229
|
-
borderCoverDoor2.position.set(0.02 / 2, 0, -0.01 / 2);
|
|
230
|
-
borderCoverDoor1.add(borderCoverDoor2);
|
|
231
|
-
glass.add(highCoverDoor);
|
|
232
|
-
glass.add(glassVerticalCover1);
|
|
233
|
-
glass.add(glassVerticalCover2);
|
|
234
|
-
glass.add(glassHorizontalCover1);
|
|
235
|
-
glass.add(glassHorizontalCover2);
|
|
236
|
-
glass.add(highCoverDoor);
|
|
237
|
-
glass.add(highDoor);
|
|
238
|
-
baseDoor.add(glass);
|
|
239
|
-
middleCoverDoor1.add(middleDoor1);
|
|
240
|
-
middleCoverDoor2.add(middleDoor2);
|
|
241
|
-
lowCoverDoor.add(borderCoverDoor1);
|
|
242
|
-
lowCoverDoor.add(middleCoverDoor1);
|
|
243
|
-
lowCoverDoor.add(middleCoverDoor2);
|
|
244
|
-
baseDoor.add(lowCoverDoor);
|
|
245
|
-
door.add(baseDoor);
|
|
246
|
-
door.scale.x = 0.9;
|
|
247
|
-
return door;
|
|
248
|
-
}
|
|
249
|
-
export default {
|
|
250
|
-
name: 'Double Panic Door',
|
|
251
|
-
prototype: 'holes',
|
|
252
|
-
info: {
|
|
253
|
-
tag: ['door'],
|
|
254
|
-
title: 'Double Panic Door',
|
|
255
|
-
description: 'iron door',
|
|
256
|
-
image: '/assets/img/svg/doors_closet.svg'
|
|
257
|
-
},
|
|
258
|
-
properties: {
|
|
259
|
-
width: {
|
|
260
|
-
label: 'width',
|
|
261
|
-
type: 'length-measure',
|
|
262
|
-
defaultValue: {
|
|
263
|
-
length: 200,
|
|
264
|
-
unit: 'cm'
|
|
265
|
-
}
|
|
266
|
-
},
|
|
267
|
-
height: {
|
|
268
|
-
label: 'height',
|
|
269
|
-
type: 'length-measure',
|
|
270
|
-
defaultValue: {
|
|
271
|
-
length: 215,
|
|
272
|
-
unit: 'cm'
|
|
273
|
-
}
|
|
274
|
-
},
|
|
275
|
-
thickness: {
|
|
276
|
-
label: 'thickness',
|
|
277
|
-
type: 'length-measure',
|
|
278
|
-
defaultValue: {
|
|
279
|
-
length: 6,
|
|
280
|
-
unit: 'cm'
|
|
281
|
-
}
|
|
282
|
-
},
|
|
283
|
-
altitude: {
|
|
284
|
-
label: 'altitude',
|
|
285
|
-
type: 'length-measure',
|
|
286
|
-
defaultValue: {
|
|
287
|
-
length: 0,
|
|
288
|
-
unit: 'cm'
|
|
289
|
-
}
|
|
290
|
-
},
|
|
291
|
-
flip_horizontal: {
|
|
292
|
-
label: 'flip',
|
|
293
|
-
type: 'checkbox',
|
|
294
|
-
defaultValue: false,
|
|
295
|
-
values: {
|
|
296
|
-
none: false,
|
|
297
|
-
yes: true
|
|
298
|
-
}
|
|
299
|
-
}
|
|
300
|
-
},
|
|
301
|
-
render2D: function render2D(element, layer, scene) {
|
|
302
|
-
var STYLE_HOLE_BASE = {
|
|
303
|
-
stroke: 'rgb(73, 73, 73)',
|
|
304
|
-
strokeWidth: '1px',
|
|
305
|
-
strokeDasharray: '9,5',
|
|
306
|
-
fill: 'rgb(73, 73, 73)'
|
|
307
|
-
};
|
|
308
|
-
var STYLE_HOLE_SELECTED = {
|
|
309
|
-
stroke: '#0096fd',
|
|
310
|
-
strokeWidth: '1px',
|
|
311
|
-
strokeDasharray: '9,5',
|
|
312
|
-
fill: '#0096fd',
|
|
313
|
-
cursor: 'move'
|
|
314
|
-
};
|
|
315
|
-
var STYLE_ARC_BASE = {
|
|
316
|
-
stroke: 'rgb(73, 73, 73)',
|
|
317
|
-
strokeWidth: '1px',
|
|
318
|
-
strokeDasharray: '9,5',
|
|
319
|
-
fill: 'none'
|
|
320
|
-
};
|
|
321
|
-
var STYLE_ARC_SELECTED = {
|
|
322
|
-
stroke: '#0096fd',
|
|
323
|
-
strokeWidth: '1px',
|
|
324
|
-
strokeDasharray: '9,5',
|
|
325
|
-
fill: 'none',
|
|
326
|
-
cursor: 'move'
|
|
327
|
-
};
|
|
328
|
-
var STYLE_STR0 = {
|
|
329
|
-
fill: 'rgb(185, 185, 185)',
|
|
330
|
-
stroke: '#494949',
|
|
331
|
-
strokeWidth: '1',
|
|
332
|
-
strokeMiterlimit: '2.61313'
|
|
333
|
-
};
|
|
334
|
-
var STYLE_STR0_S = {
|
|
335
|
-
fill: 'rgb(185, 185, 185)',
|
|
336
|
-
stroke: '#0096fd',
|
|
337
|
-
strokeWidth: '1',
|
|
338
|
-
strokeMiterlimit: '2.61313'
|
|
339
|
-
};
|
|
340
|
-
var STYLE_STR1 = {
|
|
341
|
-
fill: 'none',
|
|
342
|
-
stroke: '#494949',
|
|
343
|
-
strokeWidth: '1',
|
|
344
|
-
strokeLinecap: 'round',
|
|
345
|
-
strokeLinejoin: 'round',
|
|
346
|
-
strokeMiterlimit: '2.61313',
|
|
347
|
-
strokeDasharray: '23.860041 11.930021'
|
|
348
|
-
};
|
|
349
|
-
var STYLE_FILL2 = {
|
|
350
|
-
fill: '#1183B7'
|
|
351
|
-
};
|
|
352
|
-
var STYLE_FNT0 = {
|
|
353
|
-
fill: 'white',
|
|
354
|
-
fontWeight: 'normal',
|
|
355
|
-
fontSize: '13px',
|
|
356
|
-
fontFamily: 'Proxima Nova Rg'
|
|
357
|
-
};
|
|
358
|
-
var epsilon = 3;
|
|
359
|
-
var lineWidth = 15;
|
|
360
|
-
var flip = element.properties.get('flip_horizontal');
|
|
361
|
-
var holeWidth = element.properties.get('width').get('length');
|
|
362
|
-
var holePath = "M".concat(0, " ", -epsilon, " L").concat(holeWidth, " ").concat(-epsilon, " L").concat(holeWidth, " ").concat(epsilon, " L", 0, " ").concat(epsilon, " z");
|
|
363
|
-
var arcPath = "M".concat(0, ",", 0, " A", holeWidth / 2, ",").concat(holeWidth / 2, " 0 0,1 ").concat(holeWidth / 2, ",").concat(holeWidth / 2);
|
|
364
|
-
var arcPath2 = "M".concat(0, ",", 0, " A", holeWidth / 2, ",").concat(holeWidth / 2, " 0 0,0 ").concat(holeWidth / 2, ",").concat(holeWidth / 2);
|
|
365
|
-
var holeStyle = element.selected ? STYLE_HOLE_SELECTED : STYLE_HOLE_BASE;
|
|
366
|
-
var arcStyle = element.selected ? STYLE_ARC_SELECTED : STYLE_ARC_BASE;
|
|
367
|
-
var rectStyle = element.selected ? STYLE_STR0_S : STYLE_STR0;
|
|
368
|
-
var length = element.properties.get('width').get('length');
|
|
369
|
-
if (flip) {
|
|
370
|
-
return /*#__PURE__*/React.createElement("g", {
|
|
371
|
-
transform: "translate(".concat(-element.properties.get('width').get('length') / 2, ", 0)")
|
|
372
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
373
|
-
key: "1",
|
|
374
|
-
d: arcPath,
|
|
375
|
-
style: arcStyle,
|
|
376
|
-
transform: "translate(".concat(0, ",", -holeWidth / 2, ")")
|
|
377
|
-
}), /*#__PURE__*/React.createElement("line", {
|
|
378
|
-
key: "2",
|
|
379
|
-
x1: 0,
|
|
380
|
-
y1: 0 - epsilon,
|
|
381
|
-
x2: 0,
|
|
382
|
-
y2: -holeWidth / 2 - epsilon,
|
|
383
|
-
style: holeStyle
|
|
384
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
385
|
-
key: "3",
|
|
386
|
-
d: arcPath2,
|
|
387
|
-
style: arcStyle,
|
|
388
|
-
transform: "translate(".concat(holeWidth, ",").concat(-holeWidth / 2, ") rotate(90)")
|
|
389
|
-
}), /*#__PURE__*/React.createElement("line", {
|
|
390
|
-
key: "4",
|
|
391
|
-
x1: holeWidth,
|
|
392
|
-
y1: 0 - epsilon,
|
|
393
|
-
x2: holeWidth,
|
|
394
|
-
y2: -holeWidth / 2 - epsilon,
|
|
395
|
-
style: holeStyle
|
|
396
|
-
}), /*#__PURE__*/React.createElement("rect", {
|
|
397
|
-
style: rectStyle,
|
|
398
|
-
x: "0",
|
|
399
|
-
y: -lineWidth / 2,
|
|
400
|
-
width: holeWidth,
|
|
401
|
-
height: lineWidth
|
|
402
|
-
}));
|
|
403
|
-
} else {
|
|
404
|
-
return /*#__PURE__*/React.createElement("g", {
|
|
405
|
-
transform: "translate(".concat(-element.properties.get('width').get('length') / 2, ", 0)")
|
|
406
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
407
|
-
key: "1",
|
|
408
|
-
d: arcPath,
|
|
409
|
-
style: arcStyle,
|
|
410
|
-
transform: "translate(".concat(holeWidth, ",").concat(holeWidth / 2, ") rotate(180)")
|
|
411
|
-
}), /*#__PURE__*/React.createElement("line", {
|
|
412
|
-
key: "2",
|
|
413
|
-
x1: 0,
|
|
414
|
-
y1: 0 - epsilon,
|
|
415
|
-
x2: 0,
|
|
416
|
-
y2: holeWidth / 2 - epsilon,
|
|
417
|
-
style: holeStyle
|
|
418
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
419
|
-
key: "3",
|
|
420
|
-
d: arcPath2,
|
|
421
|
-
style: arcStyle,
|
|
422
|
-
transform: "translate(".concat(0, ",", holeWidth / 2, ") rotate(270)")
|
|
423
|
-
}), /*#__PURE__*/React.createElement("line", {
|
|
424
|
-
key: "4",
|
|
425
|
-
x1: holeWidth,
|
|
426
|
-
y1: 0 - epsilon,
|
|
427
|
-
x2: holeWidth,
|
|
428
|
-
y2: holeWidth / 2 - epsilon,
|
|
429
|
-
style: holeStyle
|
|
430
|
-
}), /*#__PURE__*/React.createElement("rect", {
|
|
431
|
-
style: rectStyle,
|
|
432
|
-
x: "0",
|
|
433
|
-
y: -lineWidth / 2,
|
|
434
|
-
width: holeWidth,
|
|
435
|
-
height: lineWidth
|
|
436
|
-
}));
|
|
437
|
-
}
|
|
438
|
-
},
|
|
439
|
-
render3D: function render3D(element, layer, scene) {
|
|
440
|
-
var flip = element.properties.get('flip_horizontal');
|
|
441
|
-
var width = element.properties.get('width').get('length');
|
|
442
|
-
var height = element.properties.get('height').get('length');
|
|
443
|
-
var thickness = element.properties.get('thickness').get('length');
|
|
444
|
-
var newAltitude = element.properties.get('altitude').get('length');
|
|
445
|
-
var panicDoorDouble = new Three.Object3D();
|
|
446
|
-
panicDoorDouble.add(makePanicDoor().clone());
|
|
447
|
-
var valuePosition = new Three.Box3().setFromObject(panicDoorDouble);
|
|
448
|
-
var deltaX = Math.abs(valuePosition.max.x - valuePosition.min.x);
|
|
449
|
-
var deltaY = Math.abs(valuePosition.max.y - valuePosition.min.y);
|
|
450
|
-
var deltaZ = Math.abs(valuePosition.max.z - valuePosition.min.z);
|
|
451
|
-
if (element.selected) {
|
|
452
|
-
var boundingBox = new Three.BoxHelper(panicDoorDouble, 0x99c3fb);
|
|
453
|
-
boundingBox.material.linewidth = 5;
|
|
454
|
-
boundingBox.renderOrder = 1000;
|
|
455
|
-
boundingBox.material.depthTest = false;
|
|
456
|
-
panicDoorDouble.add(boundingBox);
|
|
457
|
-
}
|
|
458
|
-
if (flip) panicDoorDouble.rotation.y += Math.PI;
|
|
459
|
-
panicDoorDouble.position.y += newAltitude;
|
|
460
|
-
panicDoorDouble.scale.set(width / deltaX, height / deltaY, thickness / deltaZ);
|
|
461
|
-
return Promise.resolve(panicDoorDouble);
|
|
462
|
-
}
|
|
463
|
-
};
|
|
464
|
-
//# sourceMappingURL=planner-element.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"planner-element.js","names":["React","Three","black","MeshLambertMaterial","color","green","red","turquoise","opacity","transparent","metalBlue","darkGrey","darkGrey2","metalBlueGrey","makePanicDoor","panicDoorDouble","Mesh","doorLeft","makeDoorStructure","doorRight","handle","makeHandle","doorLeftPivot","makePivot","doorRightPivot","safetyHandleLeft","makeSafetyHandle","safetyHandleRight","lock","makeLock","doorLockLeft","makeDoorLock","doorLockRight","position","set","rotation","y","Math","PI","add","block","Object3D","DoorLockGeometry1","CylinderGeometry","round","DoorLockGeometry2","DoorLock1","DoorLock2","scale","x","mechanism","BaseGeometry","BoxGeometry","FirstBlockGeometry","SecondBlockGeometry","base","FirstBlock","SecondBlock","handleSupportGeometry","PushButtonGeometry","PushButtonCoverGeometry","handleSupport","pushButton","pushButtonCover1","pushButtonCover2","z","DoorPivot","DownPivotGeometry","UpPivotGeometry","downPivot1","upPivot1","downPivot2","upPivot2","handleBase","makeHandleBase","hilt","makeHilt","GeometryPiece1","GeometryPiece2","SphereGeometry","GeometryPiece3","piece1","piece2","piece3","piece4","BaseGeometry1","BaseGeometry2","makeLockKey","base1","base2","geometryLock1","geometryLock2","geometryLock3","lockPiece1","lockPiece2","lockPiece3","door","lowBaseDoorGeometry","middleBaseDoorGeometry","highBaseDoorGeometry","BorderCoverDoorGeometry1","BorderCoverDoorGeometry2","MiddleDoorGeometry2","MiddleDoorGeometry1","HighDoorGeometry","glassGeometry","LowDoorGeometry","glassCoverVertical","glassCoverHorizontal","lowCoverDoor","middleDoor1","middleDoor2","baseDoor","middleCoverDoor1","middleCoverDoor2","highCoverDoor","highDoor","borderCoverDoor1","borderCoverDoor2","glass","glassVerticalCover1","glassVerticalCover2","glassHorizontalCover1","glassHorizontalCover2","name","prototype","info","tag","title","description","image","properties","width","label","type","defaultValue","length","unit","height","thickness","altitude","flip_horizontal","values","none","yes","render2D","element","layer","scene","STYLE_HOLE_BASE","stroke","strokeWidth","strokeDasharray","fill","STYLE_HOLE_SELECTED","cursor","STYLE_ARC_BASE","STYLE_ARC_SELECTED","STYLE_STR0","strokeMiterlimit","STYLE_STR0_S","STYLE_STR1","strokeLinecap","strokeLinejoin","STYLE_FILL2","STYLE_FNT0","fontWeight","fontSize","fontFamily","epsilon","lineWidth","flip","get","holeWidth","holePath","concat","arcPath","arcPath2","holeStyle","selected","arcStyle","rectStyle","createElement","transform","key","d","style","x1","y1","x2","y2","render3D","newAltitude","clone","valuePosition","Box3","setFromObject","deltaX","abs","max","min","deltaY","deltaZ","boundingBox","BoxHelper","material","linewidth","renderOrder","depthTest","Promise","resolve"],"sources":["../../../../src/catalog/holes/door-panic-double/planner-element.jsx"],"sourcesContent":["import React from 'react';\r\nimport * as Three from 'three';\r\n\r\nconst black = new Three.MeshLambertMaterial({ color: 0x000000 });\r\nconst green = new Three.MeshLambertMaterial({ color: 0x348781 });\r\nconst red = new Three.MeshLambertMaterial({ color: 0xff0000 });\r\nconst turquoise = new Three.MeshLambertMaterial({\r\n color: 0x43c6db,\r\n opacity: 0.7,\r\n transparent: true\r\n});\r\nconst metalBlue = new Three.MeshLambertMaterial({ color: 0xb7ceec });\r\nconst darkGrey = new Three.MeshLambertMaterial({ color: 0x313131 });\r\nconst darkGrey2 = new Three.MeshLambertMaterial({ color: 0x212121 });\r\nconst metalBlueGrey = new Three.MeshLambertMaterial({ color: 0x566d7e });\r\n\r\nfunction makePanicDoor() {\r\n let panicDoorDouble = new Three.Mesh();\r\n let doorLeft = makeDoorStructure();\r\n let doorRight = makeDoorStructure();\r\n let handle = makeHandle();\r\n let doorLeftPivot = makePivot();\r\n let doorRightPivot = makePivot();\r\n let safetyHandleLeft = makeSafetyHandle();\r\n let safetyHandleRight = makeSafetyHandle();\r\n let lock = makeLock();\r\n let doorLockLeft = makeDoorLock();\r\n let doorLockRight = makeDoorLock();\r\n lock.position.set(-0.05, -0.02, 0.03);\r\n handle.position.set(-0.47 / 2, 0.85 / 2, -0.03);\r\n doorLeftPivot.position.set(0.595 / 2, 0, -0.06 / 2);\r\n doorRightPivot.position.set(0.6 / 2, 0, 0.077 / 2);\r\n doorRight.rotation.y = Math.PI;\r\n doorRight.position.set(-0.35 / 2 - 0.084, 0, 0.0043);\r\n doorLeft.position.set(0.35 / 2 + 0.084, 0, -0.0043);\r\n safetyHandleLeft.position.set(0, 0.4, 0.06 / 2);\r\n safetyHandleRight.position.set(0, 0.4, -0.062 / 2);\r\n handle.add(lock);\r\n doorLeft.add(handle);\r\n doorLeft.add(safetyHandleLeft);\r\n doorRight.add(safetyHandleRight);\r\n doorLeft.add(doorLeftPivot);\r\n panicDoorDouble.add(doorLeft);\r\n doorRight.add(doorRightPivot);\r\n doorLeft.add(doorLockLeft);\r\n doorRight.add(doorLockRight);\r\n panicDoorDouble.add(doorRight);\r\n\r\n return panicDoorDouble;\r\n}\r\n\r\nfunction makeDoorLock() {\r\n let block = new Three.Object3D();\r\n let DoorLockGeometry1 = new Three.CylinderGeometry(\r\n 0.012,\r\n 0.012,\r\n 1.905,\r\n Math.round(32)\r\n );\r\n let DoorLockGeometry2 = new Three.CylinderGeometry(\r\n 0.007,\r\n 0.007,\r\n 1.907,\r\n Math.round(32)\r\n );\r\n let DoorLock1 = new Three.Mesh(DoorLockGeometry1, metalBlue);\r\n let DoorLock2 = new Three.Mesh(DoorLockGeometry2, metalBlueGrey);\r\n block.position.set(-0.275, 0.7 / 2, 0);\r\n block.scale.x = 1 / 1.3;\r\n DoorLock1.add(DoorLock2);\r\n block.add(DoorLock1);\r\n\r\n return block;\r\n}\r\n\r\nfunction makeLock() {\r\n let mechanism = new Three.Object3D();\r\n let BaseGeometry = new Three.BoxGeometry(0.01, 0.1, 0.02);\r\n let FirstBlockGeometry = new Three.BoxGeometry(0.01, 0.02, 0.01);\r\n let SecondBlockGeometry = new Three.BoxGeometry(0.006, 0.04, 0.008);\r\n let base = new Three.Mesh(BaseGeometry, metalBlue);\r\n let FirstBlock = new Three.Mesh(FirstBlockGeometry, metalBlueGrey);\r\n let SecondBlock = new Three.Mesh(SecondBlockGeometry, metalBlueGrey);\r\n FirstBlock.position.set(-0.008 / 2, 0.03, 0);\r\n SecondBlock.position.y = -0.05;\r\n FirstBlock.add(SecondBlock);\r\n base.add(FirstBlock);\r\n mechanism.add(base);\r\n\r\n return mechanism;\r\n}\r\n\r\nfunction makeSafetyHandle() {\r\n let handle = new Three.Object3D();\r\n let handleSupportGeometry = new Three.BoxGeometry(0.5, 0.1, 0.005);\r\n let PushButtonGeometry = new Three.CylinderGeometry(\r\n 0.04,\r\n 0.04,\r\n 0.48,\r\n Math.round(32)\r\n );\r\n let PushButtonCoverGeometry = new Three.CylinderGeometry(\r\n 0.042,\r\n 0.042,\r\n 0.01,\r\n Math.round(32)\r\n );\r\n let handleSupport = new Three.Mesh(handleSupportGeometry, black);\r\n let pushButton = new Three.Mesh(PushButtonGeometry, red);\r\n let pushButtonCover1 = new Three.Mesh(PushButtonCoverGeometry, black);\r\n let pushButtonCover2 = new Three.Mesh(PushButtonCoverGeometry, black);\r\n handleSupport.position.z = 0.005 / 2;\r\n pushButton.rotation.z = Math.PI / 2;\r\n pushButtonCover1.position.y = 0.48 / 2 + 0.01 / 2;\r\n pushButtonCover2.position.y = -0.48 / 2 - 0.01 / 2;\r\n pushButton.add(pushButtonCover1);\r\n pushButton.add(pushButtonCover2);\r\n handleSupport.add(pushButton);\r\n handle.add(handleSupport);\r\n\r\n return handle;\r\n}\r\n\r\nfunction makePivot() {\r\n let DoorPivot = new Three.Object3D();\r\n let DownPivotGeometry = new Three.CylinderGeometry(\r\n 0.009,\r\n 0.009,\r\n 0.04,\r\n Math.round(32)\r\n );\r\n let UpPivotGeometry = new Three.CylinderGeometry(\r\n 0.01,\r\n 0.01,\r\n 0.04,\r\n Math.round(32)\r\n );\r\n let downPivot1 = new Three.Mesh(DownPivotGeometry, green);\r\n let upPivot1 = new Three.Mesh(UpPivotGeometry, green);\r\n let downPivot2 = new Three.Mesh(DownPivotGeometry, green);\r\n let upPivot2 = new Three.Mesh(UpPivotGeometry, green);\r\n downPivot1.position.y = -0.4;\r\n upPivot1.position.y = 0.04;\r\n downPivot2.position.y = 1;\r\n upPivot2.position.y = 0.04;\r\n downPivot2.add(upPivot2);\r\n downPivot1.add(upPivot1);\r\n DoorPivot.add(downPivot2);\r\n DoorPivot.add(downPivot1);\r\n\r\n return DoorPivot;\r\n}\r\n\r\nfunction makeHandle() {\r\n let handle = new Three.Object3D();\r\n let handleBase = makeHandleBase();\r\n let hilt = makeHilt();\r\n hilt.rotation.x = Math.PI / 2;\r\n hilt.position.set(0, 0.04, -0.03 / 2 - 0.01 / 2);\r\n handle.add(handleBase);\r\n handle.add(hilt);\r\n handle.scale.set(1.1, 1.1, 1.1);\r\n\r\n return handle;\r\n}\r\n\r\nfunction makeHilt() {\r\n let hilt = new Three.Object3D();\r\n let GeometryPiece1 = new Three.CylinderGeometry(\r\n 0.01,\r\n 0.01,\r\n 0.03,\r\n Math.round(32)\r\n );\r\n let GeometryPiece2 = new Three.SphereGeometry(\r\n 0.01,\r\n Math.round(32),\r\n Math.round(32)\r\n );\r\n let GeometryPiece3 = new Three.CylinderGeometry(\r\n 0.01,\r\n 0.01,\r\n 0.07,\r\n Math.round(32)\r\n );\r\n let piece1 = new Three.Mesh(GeometryPiece1, black);\r\n let piece2 = new Three.Mesh(GeometryPiece2, black);\r\n let piece3 = new Three.Mesh(GeometryPiece3, black);\r\n let piece4 = new Three.Mesh(GeometryPiece2, black);\r\n piece3.rotation.z = Math.PI / 2;\r\n piece3.position.x = 0.07 / 2;\r\n piece2.position.y = -0.03 / 2;\r\n piece4.position.y = -0.07 / 2;\r\n piece3.add(piece4);\r\n piece2.add(piece3);\r\n piece1.add(piece2);\r\n hilt.add(piece1);\r\n\r\n return hilt;\r\n}\r\n\r\nfunction makeHandleBase() {\r\n let base = new Three.Object3D();\r\n let BaseGeometry1 = new Three.BoxGeometry(0.038, 0.14, 0.01);\r\n let BaseGeometry2 = new Three.CylinderGeometry(\r\n 0.023,\r\n 0.023,\r\n 0.01,\r\n Math.round(32)\r\n );\r\n let lock = makeLockKey();\r\n let base1 = new Three.Mesh(BaseGeometry1, black);\r\n let base2 = new Three.Mesh(BaseGeometry2, black);\r\n lock.rotation.x = Math.PI / 2;\r\n lock.position.y = -0.03;\r\n base2.rotation.x = Math.PI / 2;\r\n base2.position.y = -0.033;\r\n base2.scale.z = 1.5;\r\n base1.add(lock);\r\n base1.add(base2);\r\n base.add(base1);\r\n\r\n return base;\r\n}\r\n\r\nfunction makeLockKey() {\r\n let lock = new Three.Object3D();\r\n let geometryLock1 = new Three.CylinderGeometry(\r\n 0.005,\r\n 0.005,\r\n 0.02,\r\n Math.round(32)\r\n );\r\n let geometryLock2 = new Three.BoxGeometry(0.008, 0.02, 0.02);\r\n let geometryLock3 = new Three.BoxGeometry(0.007, 0.0203, 0.0018);\r\n let lockPiece1 = new Three.Mesh(geometryLock1, metalBlue);\r\n let lockPiece2 = new Three.Mesh(geometryLock2, metalBlue);\r\n let lockPiece3 = new Three.Mesh(geometryLock3, metalBlueGrey);\r\n lockPiece2.position.z = 0.01;\r\n lockPiece1.add(lockPiece2);\r\n lockPiece1.add(lockPiece3);\r\n lock.add(lockPiece1);\r\n\r\n return lock;\r\n}\r\n\r\nfunction makeDoorStructure() {\r\n let door = new Three.Object3D();\r\n let lowBaseDoorGeometry = new Three.BoxGeometry(0.6, 1.2, 0.01);\r\n let middleBaseDoorGeometry = new Three.BoxGeometry(0.2, 0.7, 0.01);\r\n let highBaseDoorGeometry = new Three.BoxGeometry(0.2, 0.2, 0.01);\r\n let BorderCoverDoorGeometry1 = new Three.CylinderGeometry(\r\n 0.005,\r\n 0.005,\r\n 1.9,\r\n Math.round(32)\r\n );\r\n let BorderCoverDoorGeometry2 = new Three.BoxGeometry(0.03, 1.9, 0.01);\r\n let MiddleDoorGeometry2 = new Three.BoxGeometry(0.2, 0.7, 0.06);\r\n let MiddleDoorGeometry1 = new Three.BoxGeometry(0.19, 0.7, 0.06);\r\n let HighDoorGeometry = new Three.BoxGeometry(0.2, 0.2, 0.06);\r\n let glassGeometry = new Three.BoxGeometry(0.2, 0.5, 0.05);\r\n let LowDoorGeometry = new Three.BoxGeometry(0.59, 1.2, 0.06);\r\n let glassCoverVertical = new Three.BoxGeometry(0.01, 0.52, 0.064);\r\n let glassCoverHorizontal = new Three.BoxGeometry(0.224, 0.01, 0.064);\r\n let lowCoverDoor = new Three.Mesh(lowBaseDoorGeometry, green);\r\n let middleDoor1 = new Three.Mesh(MiddleDoorGeometry1, green);\r\n let middleDoor2 = new Three.Mesh(MiddleDoorGeometry2, green);\r\n let baseDoor = new Three.Mesh(LowDoorGeometry, green);\r\n let middleCoverDoor1 = new Three.Mesh(middleBaseDoorGeometry, green);\r\n let middleCoverDoor2 = new Three.Mesh(middleBaseDoorGeometry, green);\r\n let highCoverDoor = new Three.Mesh(highBaseDoorGeometry, green);\r\n let highDoor = new Three.Mesh(HighDoorGeometry, green);\r\n let borderCoverDoor1 = new Three.Mesh(BorderCoverDoorGeometry1, green);\r\n let borderCoverDoor2 = new Three.Mesh(BorderCoverDoorGeometry2, green);\r\n let glass = new Three.Mesh(glassGeometry, turquoise);\r\n let glassVerticalCover1 = new Three.Mesh(glassCoverVertical, green);\r\n let glassVerticalCover2 = new Three.Mesh(glassCoverVertical, green);\r\n let glassHorizontalCover1 = new Three.Mesh(glassCoverHorizontal, green);\r\n let glassHorizontalCover2 = new Three.Mesh(glassCoverHorizontal, green);\r\n lowCoverDoor.position.set(-(0.6 - 0.59) / 2, 0, -0.05 / 2);\r\n middleCoverDoor1.position.set(-0.2, 1.2 / 2 + 0.7 / 2, 0);\r\n middleCoverDoor2.position.set(0.2, 1.2 / 2 + 0.7 / 2, 0);\r\n highCoverDoor.position.set(0, (0.5 + 0.2) / 2, -0.05 / 2);\r\n highDoor.position.set(0, (0.5 + 0.2) / 2, -0.05 / 2 + 0.05 / 2);\r\n glass.position.set(-0.01 / 2, 1.2 / 2 + 0.5 / 2, 0);\r\n middleDoor2.position.z = 0.05 / 2;\r\n middleDoor1.position.set(0.005, 0, 0.05 / 2);\r\n borderCoverDoor1.position.set(-0.6 / 2, 0.7 / 2, 0);\r\n glassVerticalCover1.position.x = 0.2 / 2 + 0.014 / 2;\r\n glassVerticalCover2.position.x = -0.2 / 2 - 0.014 / 2;\r\n glassHorizontalCover1.position.y = 0.5 / 2 + 0.014 / 2;\r\n glassHorizontalCover2.position.y = -0.5 / 2 - 0.014 / 2;\r\n borderCoverDoor2.position.set(0.02 / 2, 0, -0.01 / 2);\r\n borderCoverDoor1.add(borderCoverDoor2);\r\n glass.add(highCoverDoor);\r\n glass.add(glassVerticalCover1);\r\n glass.add(glassVerticalCover2);\r\n glass.add(glassHorizontalCover1);\r\n glass.add(glassHorizontalCover2);\r\n glass.add(highCoverDoor);\r\n glass.add(highDoor);\r\n baseDoor.add(glass);\r\n middleCoverDoor1.add(middleDoor1);\r\n middleCoverDoor2.add(middleDoor2);\r\n lowCoverDoor.add(borderCoverDoor1);\r\n lowCoverDoor.add(middleCoverDoor1);\r\n lowCoverDoor.add(middleCoverDoor2);\r\n baseDoor.add(lowCoverDoor);\r\n door.add(baseDoor);\r\n door.scale.x = 0.9;\r\n\r\n return door;\r\n}\r\n\r\nexport default {\r\n name: 'Double Panic Door',\r\n prototype: 'holes',\r\n\r\n info: {\r\n tag: ['door'],\r\n title: 'Double Panic Door',\r\n description: 'iron door',\r\n image: '/assets/img/svg/doors_closet.svg'\r\n },\r\n\r\n properties: {\r\n width: {\r\n label: 'width',\r\n type: 'length-measure',\r\n defaultValue: {\r\n length: 200,\r\n unit: 'cm'\r\n }\r\n },\r\n height: {\r\n label: 'height',\r\n type: 'length-measure',\r\n defaultValue: {\r\n length: 215,\r\n unit: 'cm'\r\n }\r\n },\r\n thickness: {\r\n label: 'thickness',\r\n type: 'length-measure',\r\n defaultValue: {\r\n length: 6,\r\n unit: 'cm'\r\n }\r\n },\r\n altitude: {\r\n label: 'altitude',\r\n type: 'length-measure',\r\n defaultValue: {\r\n length: 0,\r\n unit: 'cm'\r\n }\r\n },\r\n flip_horizontal: {\r\n label: 'flip',\r\n type: 'checkbox',\r\n defaultValue: false,\r\n values: {\r\n none: false,\r\n yes: true\r\n }\r\n }\r\n },\r\n\r\n render2D: function (element, layer, scene) {\r\n const STYLE_HOLE_BASE = {\r\n stroke: 'rgb(73, 73, 73)',\r\n strokeWidth: '1px',\r\n strokeDasharray: '9,5',\r\n fill: 'rgb(73, 73, 73)'\r\n };\r\n const STYLE_HOLE_SELECTED = {\r\n stroke: '#0096fd',\r\n strokeWidth: '1px',\r\n strokeDasharray: '9,5',\r\n fill: '#0096fd',\r\n cursor: 'move'\r\n };\r\n const STYLE_ARC_BASE = {\r\n stroke: 'rgb(73, 73, 73)',\r\n strokeWidth: '1px',\r\n strokeDasharray: '9,5',\r\n fill: 'none'\r\n };\r\n const STYLE_ARC_SELECTED = {\r\n stroke: '#0096fd',\r\n strokeWidth: '1px',\r\n strokeDasharray: '9,5',\r\n fill: 'none',\r\n cursor: 'move'\r\n };\r\n\r\n const STYLE_STR0 = {\r\n fill: 'rgb(185, 185, 185)',\r\n stroke: '#494949',\r\n strokeWidth: '1',\r\n strokeMiterlimit: '2.61313'\r\n };\r\n const STYLE_STR0_S = {\r\n fill: 'rgb(185, 185, 185)',\r\n stroke: '#0096fd',\r\n strokeWidth: '1',\r\n strokeMiterlimit: '2.61313'\r\n };\r\n const STYLE_STR1 = {\r\n fill: 'none',\r\n stroke: '#494949',\r\n strokeWidth: '1',\r\n strokeLinecap: 'round',\r\n strokeLinejoin: 'round',\r\n strokeMiterlimit: '2.61313',\r\n strokeDasharray: '23.860041 11.930021'\r\n };\r\n const STYLE_FILL2 = { fill: '#1183B7' };\r\n const STYLE_FNT0 = {\r\n fill: 'white',\r\n fontWeight: 'normal',\r\n fontSize: '13px',\r\n fontFamily: 'Proxima Nova Rg'\r\n };\r\n\r\n let epsilon = 3;\r\n let lineWidth = 15;\r\n let flip = element.properties.get('flip_horizontal');\r\n let holeWidth = element.properties.get('width').get('length');\r\n let holePath = `M${0} ${-epsilon} L${holeWidth} ${-epsilon} L${holeWidth} ${epsilon} L${0} ${epsilon} z`;\r\n let arcPath = `M${0},${0} A${holeWidth / 2},${holeWidth / 2} 0 0,1 ${\r\n holeWidth / 2\r\n },${holeWidth / 2}`;\r\n let arcPath2 = `M${0},${0} A${holeWidth / 2},${holeWidth / 2} 0 0,0 ${\r\n holeWidth / 2\r\n },${holeWidth / 2}`;\r\n let holeStyle = element.selected ? STYLE_HOLE_SELECTED : STYLE_HOLE_BASE;\r\n let arcStyle = element.selected ? STYLE_ARC_SELECTED : STYLE_ARC_BASE;\r\n let rectStyle = element.selected ? STYLE_STR0_S : STYLE_STR0;\r\n let length = element.properties.get('width').get('length');\r\n\r\n if (flip) {\r\n return (\r\n <g\r\n transform={`translate(${\r\n -element.properties.get('width').get('length') / 2\r\n }, 0)`}\r\n >\r\n <path\r\n key=\"1\"\r\n d={arcPath}\r\n style={arcStyle}\r\n transform={`translate(${0},${-holeWidth / 2})`}\r\n />\r\n <line\r\n key=\"2\"\r\n x1={0}\r\n y1={0 - epsilon}\r\n x2={0}\r\n y2={-holeWidth / 2 - epsilon}\r\n style={holeStyle}\r\n />\r\n <path\r\n key=\"3\"\r\n d={arcPath2}\r\n style={arcStyle}\r\n transform={`translate(${holeWidth},${-holeWidth / 2}) rotate(90)`}\r\n />\r\n <line\r\n key=\"4\"\r\n x1={holeWidth}\r\n y1={0 - epsilon}\r\n x2={holeWidth}\r\n y2={-holeWidth / 2 - epsilon}\r\n style={holeStyle}\r\n />\r\n <rect\r\n style={rectStyle}\r\n x=\"0\"\r\n y={-lineWidth / 2}\r\n width={holeWidth}\r\n height={lineWidth}\r\n />\r\n {/* <rect style={STYLE_FILL2} x={holeWidth/2 - 10} y=\"-8.5\" width=\"17\" height=\"17\" rx=\"1.27\" ry=\"1.27\"/>\r\n <text x={holeWidth/2 - 9} y=\"4.5\" style={STYLE_FNT0}>D4</text> */}\r\n </g>\r\n );\r\n } else {\r\n return (\r\n <g\r\n transform={`translate(${\r\n -element.properties.get('width').get('length') / 2\r\n }, 0)`}\r\n >\r\n <path\r\n key=\"1\"\r\n d={arcPath}\r\n style={arcStyle}\r\n transform={`translate(${holeWidth},${holeWidth / 2}) rotate(180)`}\r\n />\r\n <line\r\n key=\"2\"\r\n x1={0}\r\n y1={0 - epsilon}\r\n x2={0}\r\n y2={holeWidth / 2 - epsilon}\r\n style={holeStyle}\r\n />\r\n <path\r\n key=\"3\"\r\n d={arcPath2}\r\n style={arcStyle}\r\n transform={`translate(${0},${holeWidth / 2}) rotate(270)`}\r\n />\r\n <line\r\n key=\"4\"\r\n x1={holeWidth}\r\n y1={0 - epsilon}\r\n x2={holeWidth}\r\n y2={holeWidth / 2 - epsilon}\r\n style={holeStyle}\r\n />\r\n <rect\r\n style={rectStyle}\r\n x=\"0\"\r\n y={-lineWidth / 2}\r\n width={holeWidth}\r\n height={lineWidth}\r\n />\r\n {/* <rect style={STYLE_FILL2} x={holeWidth/2 - 10} y=\"-8.5\" width=\"17\" height=\"17\" rx=\"1.27\" ry=\"1.27\"/>\r\n <text x={holeWidth/2 - 9} y=\"4.5\" transform={`scale(${1},${-1})`} style={STYLE_FNT0}>D4</text> */}\r\n </g>\r\n );\r\n }\r\n },\r\n\r\n render3D: function (element, layer, scene) {\r\n let flip = element.properties.get('flip_horizontal');\r\n let width = element.properties.get('width').get('length');\r\n let height = element.properties.get('height').get('length');\r\n let thickness = element.properties.get('thickness').get('length');\r\n let newAltitude = element.properties.get('altitude').get('length');\r\n\r\n let panicDoorDouble = new Three.Object3D();\r\n panicDoorDouble.add(makePanicDoor().clone());\r\n\r\n let valuePosition = new Three.Box3().setFromObject(panicDoorDouble);\r\n\r\n let deltaX = Math.abs(valuePosition.max.x - valuePosition.min.x);\r\n let deltaY = Math.abs(valuePosition.max.y - valuePosition.min.y);\r\n let deltaZ = Math.abs(valuePosition.max.z - valuePosition.min.z);\r\n\r\n if (element.selected) {\r\n let boundingBox = new Three.BoxHelper(panicDoorDouble, 0x99c3fb);\r\n boundingBox.material.linewidth = 5;\r\n boundingBox.renderOrder = 1000;\r\n boundingBox.material.depthTest = false;\r\n panicDoorDouble.add(boundingBox);\r\n }\r\n\r\n if (flip) panicDoorDouble.rotation.y += Math.PI;\r\n\r\n panicDoorDouble.position.y += newAltitude;\r\n panicDoorDouble.scale.set(\r\n width / deltaX,\r\n height / deltaY,\r\n thickness / deltaZ\r\n );\r\n\r\n return Promise.resolve(panicDoorDouble);\r\n }\r\n};\r\n"],"mappings":"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","ignoreList":[]}
|