@colijnit/homedecorator 255.1.1
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/_variables.scss +1 -0
- package/app/app.component.scss +30 -0
- package/app/app.version.d.ts +5 -0
- package/app/bundle/threedselector-bundle/threedselector-bundle.component.scss +24 -0
- package/app/bundle/threedselector-bundle/threedselector-selections-bundle.component.scss +4 -0
- package/app/core/components/debug/debug.component.d.ts +17 -0
- package/app/core/components/debug/debug.component.scss +27 -0
- package/app/core/components/error/error-message.component.d.ts +14 -0
- package/app/core/components/error/error-message.component.scss +18 -0
- package/app/core/components/tooltip/tooltip.component.d.ts +17 -0
- package/app/core/components/tooltip/tooltip.component.scss +34 -0
- package/app/core/const/dimensioning.d.ts +24 -0
- package/app/core/core.module.d.ts +27 -0
- package/app/core/directive/autofocus.directive.d.ts +11 -0
- package/app/core/directive/tooltip.directive.d.ts +21 -0
- package/app/core/directive/visibility-observer-master.directive.d.ts +12 -0
- package/app/core/directive/visibility-observer.directive.d.ts +16 -0
- package/app/core/enum/configuration-key.enum.d.ts +35 -0
- package/app/core/enum/export-type.enum.d.ts +5 -0
- package/app/core/enum/google-tag-manager-event.enum.d.ts +12 -0
- package/app/core/enum/icon-name.enum.d.ts +15 -0
- package/app/core/enum/icon.enum.d.ts +33 -0
- package/app/core/enum/light.enum.d.ts +7 -0
- package/app/core/enum/message-type.enum.d.ts +69 -0
- package/app/core/enum/model-type.enum.d.ts +6 -0
- package/app/core/enum/output-encoding.enum.d.ts +4 -0
- package/app/core/enum/shadow-map-type.enum.d.ts +6 -0
- package/app/core/enum/user-role-type.enum.d.ts +18 -0
- package/app/core/enum/view-mode.enum.d.ts +9 -0
- package/app/core/enum/xr-mode.enum.d.ts +4 -0
- package/app/core/interface/adjustable-element.interface.d.ts +5 -0
- package/app/core/interface/category.interface.d.ts +9 -0
- package/app/core/interface/changes.interface.d.ts +9 -0
- package/app/core/interface/child-params.interface.d.ts +3 -0
- package/app/core/interface/configuration-data.interface.d.ts +36 -0
- package/app/core/interface/external-settings.interface.d.ts +6 -0
- package/app/core/interface/info-dialog-data.interface.d.ts +4 -0
- package/app/core/interface/light-preset.interface.d.ts +18 -0
- package/app/core/interface/loading-overlay-data.interface.d.ts +4 -0
- package/app/core/interface/media-resource.interface.d.ts +6 -0
- package/app/core/interface/message-with-payload.interface.d.ts +81 -0
- package/app/core/interface/message-without-payload.interface.d.ts +35 -0
- package/app/core/interface/preset.interface.d.ts +8 -0
- package/app/core/interface/selected-floor-event.interface.d.ts +5 -0
- package/app/core/interface/selected-wall-event.interface.d.ts +6 -0
- package/app/core/interface/texture.interface.d.ts +37 -0
- package/app/core/interface/toolbar-icon.interface.d.ts +8 -0
- package/app/core/model/ar-position-indicator.d.ts +4 -0
- package/app/core/model/camera-settings.d.ts +12 -0
- package/app/core/model/category.d.ts +12 -0
- package/app/core/model/custom-button.d.ts +10 -0
- package/app/core/model/error-message.d.ts +8 -0
- package/app/core/model/export-object.d.ts +5 -0
- package/app/core/model/from-intersection-observer.d.ts +7 -0
- package/app/core/model/homedecorator-settings-options.d.ts +46 -0
- package/app/core/model/homedecorator-settings.d.ts +54 -0
- package/app/core/model/icon.d.ts +4 -0
- package/app/core/model/light-preset.d.ts +27 -0
- package/app/core/model/light-properties.d.ts +25 -0
- package/app/core/model/media-resource.d.ts +7 -0
- package/app/core/model/preset.d.ts +10 -0
- package/app/core/model/ral-color.d.ts +19 -0
- package/app/core/model/shadow-properties.d.ts +7 -0
- package/app/core/model/texture-type.d.ts +6 -0
- package/app/core/model/texture.d.ts +43 -0
- package/app/core/model/three-object.d.ts +1 -0
- package/app/core/model/toast-type.d.ts +5 -0
- package/app/core/model/toast.d.ts +5 -0
- package/app/core/model/xr-reticle.d.ts +17 -0
- package/app/core/pipe/append.pipe.d.ts +7 -0
- package/app/core/pipe/cm-to-measure.pipe.d.ts +10 -0
- package/app/core/pipe/filter.pipe.d.ts +7 -0
- package/app/core/pipe/keys.pipe.d.ts +7 -0
- package/app/core/pipe/localize.pipe.d.ts +10 -0
- package/app/core/pipe/m-to-measure.pipe.d.ts +10 -0
- package/app/core/pipe/prepend.pipe.d.ts +7 -0
- package/app/core/pipe/scm-to-measure.pipe.d.ts +10 -0
- package/app/core/pipe/sm-to-measure.pipe.d.ts +10 -0
- package/app/core/pipe/strip-html.pipe.d.ts +7 -0
- package/app/core/service/3dm-api.d.ts +65 -0
- package/app/core/service/app-state.service.d.ts +49 -0
- package/app/core/service/configuration.service.d.ts +15 -0
- package/app/core/service/debug.service.d.ts +16 -0
- package/app/core/service/dimensioning.service.d.ts +14 -0
- package/app/core/service/dynamic-camera.service.d.ts +23 -0
- package/app/core/service/environment.service.d.ts +8 -0
- package/app/core/service/error.service.d.ts +11 -0
- package/app/core/service/export.service.d.ts +18 -0
- package/app/core/service/file.service.d.ts +9 -0
- package/app/core/service/homedecorator-app-event.service.d.ts +23 -0
- package/app/core/service/homedecorator-app.service.d.ts +58 -0
- package/app/core/service/homedecorator-connector-adapter.service.d.ts +90 -0
- package/app/core/service/homedecorator-connector.service.d.ts +127 -0
- package/app/core/service/homedecorator-dictionary.service.d.ts +15 -0
- package/app/core/service/homedecorator-icon-cache.service.d.ts +21 -0
- package/app/core/service/homedecorator-settings.service.d.ts +23 -0
- package/app/core/service/homedecorator.service.d.ts +14 -0
- package/app/core/service/integration.service.d.ts +16 -0
- package/app/core/service/item-serialization.service.d.ts +78 -0
- package/app/core/service/json-utils.service.d.ts +7 -0
- package/app/core/service/message-bus.service.d.ts +21 -0
- package/app/core/service/permanent-store.service.d.ts +37 -0
- package/app/core/service/presets.service.d.ts +50 -0
- package/app/core/service/progress.service.d.ts +17 -0
- package/app/core/service/ral.service.d.ts +17 -0
- package/app/core/service/skip-button-info.service.d.ts +19 -0
- package/app/core/service/toast.service.d.ts +12 -0
- package/app/core/service/utils.service.d.ts +68 -0
- package/app/core/service/view-mode.service.d.ts +27 -0
- package/app/core/service/web-worker.service.d.ts +18 -0
- package/app/core/utils/clone-utils.d.ts +5 -0
- package/app/core/utils/color.utils.d.ts +7 -0
- package/app/core/utils/file.utils.d.ts +36 -0
- package/app/core/utils/function/is-empty.function.d.ts +1 -0
- package/app/core/utils/function/is-nill.function.d.ts +1 -0
- package/app/core/utils/material.utils.d.ts +33 -0
- package/app/core/utils/object.utils.d.ts +14 -0
- package/app/core/utils/relative-position.utils.d.ts +12 -0
- package/app/core/utils/variation-utils.d.ts +12 -0
- package/app/core/workers/enum/web-worker-message.enum.d.ts +4 -0
- package/app/core/workers/enum/web-worker-type.enum.d.ts +3 -0
- package/app/development/components/selected-child-material-texture.component.d.ts +58 -0
- package/app/development/components/selected-child-material-texture.component.scss +122 -0
- package/app/development/components/selected-child-material.component.d.ts +73 -0
- package/app/development/components/selected-child-material.component.scss +45 -0
- package/app/development/components/selected-child.component.d.ts +8 -0
- package/app/development/components/selected-child.component.scss +40 -0
- package/app/development/components/selected-object-base.d.ts +32 -0
- package/app/development/components/selected-object.component.d.ts +20 -0
- package/app/development/components/selected-object.component.scss +13 -0
- package/app/development/development.module.d.ts +19 -0
- package/app/development/directive/development.directive.d.ts +19 -0
- package/app/development/service/development.service.d.ts +49 -0
- package/app/homedecorator.component.d.ts +42 -0
- package/app/homedecorator.component.scss +34 -0
- package/app/homedecorator.module.d.ts +18 -0
- package/app/plugins/core3d/collision-manager/collision-manager.service.d.ts +23 -0
- package/app/plugins/core3d/collision-manager/floorplan-collision-detection.d.ts +9 -0
- package/app/plugins/core3d/collision-manager/snapping-collision.service.d.ts +47 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-buttons/ar-gui-buttons.component.d.ts +17 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-buttons/ar-gui-buttons.component.scss +30 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-configurator/ar-gui-configurator.component.d.ts +25 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-configurator/ar-gui-configurator.component.scss +13 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-context-menu/ar-gui-context-menu.component.d.ts +21 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-context-menu/ar-gui-context-menu.component.scss +6 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-notifications/ar-gui-notifications.component.d.ts +11 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-notifications/ar-gui-notifications.component.scss +19 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-root.component.d.ts +16 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-root.component.scss +23 -0
- package/app/plugins/core3d/components/lightplan/edit-light/edit-light.component.d.ts +46 -0
- package/app/plugins/core3d/components/lightplan/edit-light/edit-light.component.scss +93 -0
- package/app/plugins/core3d/components/lightplan/edit-lightplan/edit-lightplan.component.d.ts +24 -0
- package/app/plugins/core3d/components/lightplan/edit-lightplan/edit-lightplan.component.scss +93 -0
- package/app/plugins/core3d/components/lightplan/lightplan.component.d.ts +60 -0
- package/app/plugins/core3d/components/lightplan/lightplan.component.scss +102 -0
- package/app/plugins/core3d/components/scene-options/scene-options.component.d.ts +17 -0
- package/app/plugins/core3d/components/scene-options/scene-options.component.scss +54 -0
- package/app/plugins/core3d/core/angles.d.ts +8 -0
- package/app/plugins/core3d/core/corner-utils.d.ts +8 -0
- package/app/plugins/core3d/core/dimensioning.d.ts +19 -0
- package/app/plugins/core3d/core/utils.d.ts +147 -0
- package/app/plugins/core3d/core3d/components/scenecontrol/scene-control.component.d.ts +49 -0
- package/app/plugins/core3d/core3d/components/scenecontrol/scene-control.component.scss +3 -0
- package/app/plugins/core3d/core3d/core3d.component.d.ts +76 -0
- package/app/plugins/core3d/core3d/core3d.component.scss +27 -0
- package/app/plugins/core3d/core3d.module.d.ts +38 -0
- package/app/plugins/core3d/directive/scene.directive.d.ts +26 -0
- package/app/plugins/core3d/enum/ar-feature.enum.d.ts +12 -0
- package/app/plugins/core3d/enum/direction.enum.d.ts +8 -0
- package/app/plugins/core3d/enum/result-type.enum.d.ts +19 -0
- package/app/plugins/core3d/hud/bounding-measurement-box/bounding-box-measurement.d.ts +28 -0
- package/app/plugins/core3d/hud/bounding-measurement-box/box-measurement.d.ts +17 -0
- package/app/plugins/core3d/hud/bounding-measurement-box/door-or-window-box-measurement.d.ts +29 -0
- package/app/plugins/core3d/hud/bounding-measurement-box/measurable.d.ts +8 -0
- package/app/plugins/core3d/hud/bounding-measurement-box/measurement-utils.d.ts +9 -0
- package/app/plugins/core3d/hud/custom-shape-name-label.d.ts +15 -0
- package/app/plugins/core3d/hud/floor-indicator.d.ts +20 -0
- package/app/plugins/core3d/hud/furniture-measurements.d.ts +12 -0
- package/app/plugins/core3d/hud/indicator-factory.d.ts +7 -0
- package/app/plugins/core3d/hud/measurements.d.ts +46 -0
- package/app/plugins/core3d/hud/on-wall-measurements.d.ts +18 -0
- package/app/plugins/core3d/hud/opening-symbol.d.ts +11 -0
- package/app/plugins/core3d/hud/rotation-helper.d.ts +44 -0
- package/app/plugins/core3d/hud/utils.d.ts +3 -0
- package/app/plugins/core3d/interface/dragged-data.interface.d.ts +10 -0
- package/app/plugins/core3d/interface/edge-visibility-changes.d.ts +5 -0
- package/app/plugins/core3d/interface/model.interface.d.ts +42 -0
- package/app/plugins/core3d/interface/opening.interface.d.ts +6 -0
- package/app/plugins/core3d/interface/scene-option-button.interface.d.ts +17 -0
- package/app/plugins/core3d/interface/scene-update.interface.d.ts +5 -0
- package/app/plugins/core3d/items/base-item.d.ts +97 -0
- package/app/plugins/core3d/items/custom-cylinder-floor-item.d.ts +12 -0
- package/app/plugins/core3d/items/custom-cylinder-wall-item.d.ts +13 -0
- package/app/plugins/core3d/items/custom-floor-item.d.ts +9 -0
- package/app/plugins/core3d/items/custom-objects.d.ts +55 -0
- package/app/plugins/core3d/items/custom-shape-floor-item.d.ts +9 -0
- package/app/plugins/core3d/items/custom-shape-wall-item.d.ts +10 -0
- package/app/plugins/core3d/items/custom-wall-floor-item.d.ts +19 -0
- package/app/plugins/core3d/items/custom-wall-item.d.ts +9 -0
- package/app/plugins/core3d/items/factory.d.ts +24 -0
- package/app/plugins/core3d/items/floor-item.d.ts +13 -0
- package/app/plugins/core3d/items/floor-pin.d.ts +11 -0
- package/app/plugins/core3d/items/floor-plane-item.d.ts +30 -0
- package/app/plugins/core3d/items/furniture.d.ts +3 -0
- package/app/plugins/core3d/items/in-wall-floor-item.d.ts +9 -0
- package/app/plugins/core3d/items/item-group.d.ts +51 -0
- package/app/plugins/core3d/items/item-type.d.ts +21 -0
- package/app/plugins/core3d/items/item.d.ts +84 -0
- package/app/plugins/core3d/items/metadata.d.ts +74 -0
- package/app/plugins/core3d/items/on-floor-item.d.ts +8 -0
- package/app/plugins/core3d/items/pin.d.ts +5 -0
- package/app/plugins/core3d/items/three-mesh.d.ts +8 -0
- package/app/plugins/core3d/items/wall-floor-item.d.ts +8 -0
- package/app/plugins/core3d/items/wall-objects.d.ts +512 -0
- package/app/plugins/core3d/items/wall-pin.d.ts +8 -0
- package/app/plugins/core3d/model/ar-parameters.d.ts +9 -0
- package/app/plugins/core3d/model/box-skin-default.d.ts +5 -0
- package/app/plugins/core3d/model/collision-info.d.ts +6 -0
- package/app/plugins/core3d/model/custom-floor-group-result.d.ts +18 -0
- package/app/plugins/core3d/model/cylinder-skin-default.d.ts +4 -0
- package/app/plugins/core3d/model/dragged-status.d.ts +18 -0
- package/app/plugins/core3d/model/face.d.ts +11 -0
- package/app/plugins/core3d/model/geometry.d.ts +11 -0
- package/app/plugins/core3d/model/scene-event.enum.d.ts +10 -0
- package/app/plugins/core3d/model/skin.d.ts +15 -0
- package/app/plugins/core3d/model/threed-model.d.ts +47 -0
- package/app/plugins/core3d/service/ar.service.d.ts +121 -0
- package/app/plugins/core3d/service/camera.service.d.ts +70 -0
- package/app/plugins/core3d/service/ceiling.service.d.ts +25 -0
- package/app/plugins/core3d/service/controls.d.ts +11 -0
- package/app/plugins/core3d/service/drag-and-drop.service.d.ts +73 -0
- package/app/plugins/core3d/service/error-glow.service.d.ts +18 -0
- package/app/plugins/core3d/service/floor.service.d.ts +43 -0
- package/app/plugins/core3d/service/font.service.d.ts +10 -0
- package/app/plugins/core3d/service/hud.service.d.ts +79 -0
- package/app/plugins/core3d/service/intersection.service.d.ts +10 -0
- package/app/plugins/core3d/service/item-group.service.d.ts +33 -0
- package/app/plugins/core3d/service/item.service.d.ts +37 -0
- package/app/plugins/core3d/service/light-presets.service.d.ts +46 -0
- package/app/plugins/core3d/service/lights.service.d.ts +38 -0
- package/app/plugins/core3d/service/message-board.service.d.ts +18 -0
- package/app/plugins/core3d/service/models.service.d.ts +37 -0
- package/app/plugins/core3d/service/outline.service.d.ts +40 -0
- package/app/plugins/core3d/service/rotation.service.d.ts +57 -0
- package/app/plugins/core3d/service/scene-event.service.d.ts +131 -0
- package/app/plugins/core3d/service/scene-options.service.d.ts +11 -0
- package/app/plugins/core3d/service/scene.service.d.ts +74 -0
- package/app/plugins/core3d/service/vr.service.d.ts +44 -0
- package/app/plugins/core3d/service/wall-measurements.service.d.ts +23 -0
- package/app/plugins/core3d/service/xr.service.d.ts +56 -0
- package/app/plugins/core3d/textures/DepthDataTexture.d.ts +5 -0
- package/app/plugins/core3d/walkthrough-camera-controls/walkthrough-camera-controls.component.d.ts +19 -0
- package/app/plugins/core3d/walkthrough-camera-controls/walkthrough-camera-controls.component.scss +7 -0
- package/app/plugins/furniture-manager/furniture-library/furniture-library.component.d.ts +27 -0
- package/app/plugins/furniture-manager/furniture-library/furniture-library.component.scss +20 -0
- package/app/plugins/furniture-manager/furniture-manager/furniture-manager.component.d.ts +91 -0
- package/app/plugins/furniture-manager/furniture-manager/furniture-manager.component.scss +57 -0
- package/app/plugins/furniture-manager/furniture-manager.module.d.ts +23 -0
- package/app/plugins/help/help/help.component.d.ts +21 -0
- package/app/plugins/help/help/help.component.scss +0 -0
- package/app/plugins/help/help-dialog/help-dialog.component.d.ts +20 -0
- package/app/plugins/help/help-dialog/help-dialog.component.scss +28 -0
- package/app/plugins/help/help.module.d.ts +12 -0
- package/app/plugins/lite-selector/lite-selector/component/animation/animation.component.d.ts +19 -0
- package/app/plugins/lite-selector/lite-selector/component/animation/animation.component.scss +0 -0
- package/app/plugins/lite-selector/lite-selector/component/answer-card/answer-card.component.d.ts +41 -0
- package/app/plugins/lite-selector/lite-selector/component/answer-card/answer-card.component.scss +25 -0
- package/app/plugins/lite-selector/lite-selector/component/answers-slideout/answers-slideout.component.d.ts +72 -0
- package/app/plugins/lite-selector/lite-selector/component/answers-slideout/answers-slideout.component.scss +146 -0
- package/app/plugins/lite-selector/lite-selector/component/color-filter/color-filter.component.d.ts +19 -0
- package/app/plugins/lite-selector/lite-selector/component/color-filter/color-filter.component.scss +37 -0
- package/app/plugins/lite-selector/lite-selector/component/customizer/customizer.component.d.ts +28 -0
- package/app/plugins/lite-selector/lite-selector/component/customizer/customizer.component.scss +127 -0
- package/app/plugins/lite-selector/lite-selector/component/image-zoom/image-zoom.component.d.ts +9 -0
- package/app/plugins/lite-selector/lite-selector/component/image-zoom/image-zoom.component.scss +47 -0
- package/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary-line.component.d.ts +31 -0
- package/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary-line.component.scss +11 -0
- package/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary.component.d.ts +38 -0
- package/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary.component.scss +80 -0
- package/app/plugins/lite-selector/lite-selector/component/tag-filter/tag-filter.component.d.ts +8 -0
- package/app/plugins/lite-selector/lite-selector/component/tag-filter/tag-filter.component.scss +10 -0
- package/app/plugins/lite-selector/lite-selector/lite-selector.component.d.ts +40 -0
- package/app/plugins/lite-selector/lite-selector/lite-selector.component.scss +10 -0
- package/app/plugins/lite-selector/lite-selector/service/customizer.service.d.ts +44 -0
- package/app/plugins/lite-selector/lite-selector.module.d.ts +22 -0
- package/app/plugins/model-uploader/model-previewer/model-preview.component.d.ts +57 -0
- package/app/plugins/model-uploader/model-previewer/model-preview.component.scss +75 -0
- package/app/plugins/model-uploader/model-uploader/model-upload.component.scss +34 -0
- package/app/plugins/model-uploader/model-uploader/model-uploader.component.d.ts +23 -0
- package/app/plugins/model-uploader/model-uploader.module.d.ts +16 -0
- package/app/plugins/plugin-interface.d.ts +5 -0
- package/app/plugins/plugins.module.d.ts +15 -0
- package/app/plugins/presets/presets/presets.component.d.ts +22 -0
- package/app/plugins/presets/presets/presets.component.scss +0 -0
- package/app/plugins/presets/presets.module.d.ts +10 -0
- package/app/plugins/product-catalog/own-collection-catalog/product-own-collection.component.d.ts +19 -0
- package/app/plugins/product-catalog/own-collection-catalog/product-own-collection.component.scss +4 -0
- package/app/plugins/product-catalog/own-collection-catalog/product-own-collection.module.d.ts +10 -0
- package/app/plugins/product-catalog/product-catalog/product-catalog.component.d.ts +70 -0
- package/app/plugins/product-catalog/product-catalog/product-catalog.component.scss +128 -0
- package/app/plugins/product-catalog/product-catalog.module.d.ts +16 -0
- package/app/plugins/render/enum/connection-status.d.ts +6 -0
- package/app/plugins/render/enum/render-modes.d.ts +5 -0
- package/app/plugins/render/enum/render-status.d.ts +7 -0
- package/app/plugins/render/model/camera-position.d.ts +7 -0
- package/app/plugins/render/model/image-size.d.ts +6 -0
- package/app/plugins/render/model/lightning.d.ts +5 -0
- package/app/plugins/render/model/render-data.d.ts +15 -0
- package/app/plugins/render/model/render-environment.d.ts +6 -0
- package/app/plugins/render/model/render-parameters.d.ts +15 -0
- package/app/plugins/render/model/render-queue-item.d.ts +14 -0
- package/app/plugins/render/model/render-settings.d.ts +9 -0
- package/app/plugins/render/model/render.d.ts +14 -0
- package/app/plugins/render/render-controls/render-controls.component.d.ts +27 -0
- package/app/plugins/render/render-controls/render-controls.component.scss +51 -0
- package/app/plugins/render/render-dialog/render-dialog.component.d.ts +59 -0
- package/app/plugins/render/render-dialog/render-dialog.component.scss +320 -0
- package/app/plugins/render/render.module.d.ts +20 -0
- package/app/plugins/render/service/new-render.service.d.ts +65 -0
- package/app/plugins/render/service/render.service.d.ts +104 -0
- package/app/plugins/room-planner/components/appearance-section/appearance-section.component.d.ts +43 -0
- package/app/plugins/room-planner/components/appearance-section/appearance-section.component.scss +14 -0
- package/app/plugins/room-planner/components/color-picker/color-picker.component.d.ts +11 -0
- package/app/plugins/room-planner/components/color-picker/color-picker.component.scss +0 -0
- package/app/plugins/room-planner/components/custom-cylinder-creator/custom-cylinder-creator.component.d.ts +49 -0
- package/app/plugins/room-planner/components/custom-cylinder-creator/custom-cylinder-creator.component.scss +19 -0
- package/app/plugins/room-planner/components/custome-shape-creator/custom-shape-creator.component.d.ts +49 -0
- package/app/plugins/room-planner/components/custome-shape-creator/custom-shape-creator.component.scss +24 -0
- package/app/plugins/room-planner/components/dimension-input/dimension-input.component.d.ts +22 -0
- package/app/plugins/room-planner/components/dimension-input/dimension-input.component.scss +14 -0
- package/app/plugins/room-planner/components/edit-apply/edit-apply.component.d.ts +19 -0
- package/app/plugins/room-planner/components/edit-apply/edit-apply.component.scss +0 -0
- package/app/plugins/room-planner/components/edit-parameter/edit-parameter.component.d.ts +28 -0
- package/app/plugins/room-planner/components/edit-parameter/edit-parameter.component.scss +23 -0
- package/app/plugins/room-planner/components/file-drop/file-drop.component.d.ts +21 -0
- package/app/plugins/room-planner/components/file-drop/file-drop.component.scss +31 -0
- package/app/plugins/room-planner/components/floorplanner/const/defaults.d.ts +48 -0
- package/app/plugins/room-planner/components/floorplanner/floorplanner-mode.d.ts +9 -0
- package/app/plugins/room-planner/components/floorplanner/floorplanner.component.d.ts +172 -0
- package/app/plugins/room-planner/components/floorplanner/floorplanner.component.scss +48 -0
- package/app/plugins/room-planner/components/floorplanner/service/floorplan.service.d.ts +103 -0
- package/app/plugins/room-planner/components/floorplanner/service/room.service.d.ts +75 -0
- package/app/plugins/room-planner/components/floorplanner/snap-indicator-mode.d.ts +5 -0
- package/app/plugins/room-planner/components/floorplanner/utils/context.utils.d.ts +5 -0
- package/app/plugins/room-planner/components/object-library/object-library.component.d.ts +23 -0
- package/app/plugins/room-planner/components/object-library/object-library.component.scss +43 -0
- package/app/plugins/room-planner/components/ral-color-picker/ral-color-picker.component.d.ts +22 -0
- package/app/plugins/room-planner/components/ral-color-picker/ral-color-picker.component.scss +55 -0
- package/app/plugins/room-planner/components/rgb-color-picker/rgb-color-picker.component.d.ts +11 -0
- package/app/plugins/room-planner/components/rgb-color-picker/rgb-color-picker.component.scss +10 -0
- package/app/plugins/room-planner/components/selected-floor/selected-floor.component.d.ts +16 -0
- package/app/plugins/room-planner/components/selected-floor/selected-floor.component.scss +16 -0
- package/app/plugins/room-planner/components/selected-object/selected-object.component.d.ts +44 -0
- package/app/plugins/room-planner/components/selected-object/selected-object.component.scss +21 -0
- package/app/plugins/room-planner/components/selected-threed-object/selected-threed-object.component.d.ts +57 -0
- package/app/plugins/room-planner/components/selected-threed-object/selected-threed-object.component.scss +35 -0
- package/app/plugins/room-planner/components/selected-wall/selected-wall.component.d.ts +45 -0
- package/app/plugins/room-planner/components/selected-wall/selected-wall.component.scss +31 -0
- package/app/plugins/room-planner/components/settings/settings-options.component.d.ts +18 -0
- package/app/plugins/room-planner/components/settings/settings-options.component.scss +46 -0
- package/app/plugins/room-planner/components/settings/settings.component.d.ts +63 -0
- package/app/plugins/room-planner/components/settings/settings.component.scss +42 -0
- package/app/plugins/room-planner/components/texture-editor/texture-editor.component.d.ts +125 -0
- package/app/plugins/room-planner/components/texture-editor/texture-editor.component.scss +38 -0
- package/app/plugins/room-planner/components/texture-picker/texture-picker.component.d.ts +25 -0
- package/app/plugins/room-planner/components/texture-picker/texture-picker.component.scss +49 -0
- package/app/plugins/room-planner/components/wall-length-input/wall-length-input.component.d.ts +16 -0
- package/app/plugins/room-planner/components/wall-length-input/wall-length-input.component.scss +5 -0
- package/app/plugins/room-planner/const/key.d.ts +10 -0
- package/app/plugins/room-planner/room-planner/room-planner.component.d.ts +236 -0
- package/app/plugins/room-planner/room-planner/room-planner.component.scss +167 -0
- package/app/plugins/room-planner/room-planner.module.d.ts +59 -0
- package/app/plugins/threed-in-photo/components/threed-in-photo-scene/threed-in-photo-scene.component.d.ts +18 -0
- package/app/plugins/threed-in-photo/components/threed-in-photo-scene/threed-in-photo-scene.component.scss +7 -0
- package/app/plugins/threed-in-photo/components/upload-image/upload-image.component.d.ts +18 -0
- package/app/plugins/threed-in-photo/components/upload-image/upload-image.component.scss +7 -0
- package/app/plugins/threed-in-photo/components/view-control/view-control.component.d.ts +30 -0
- package/app/plugins/threed-in-photo/components/view-control/view-control.component.scss +40 -0
- package/app/plugins/threed-in-photo/models/model-output.d.ts +14 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-build.service.d.ts +37 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-connection.service.d.ts +8 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-control.service.d.ts +14 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-event-listeners.service.d.ts +15 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-event.service.d.ts +9 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-initializer.service.d.ts +27 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-render.service.d.ts +20 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-scene.service.d.ts +12 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-view.service.d.ts +8 -0
- package/app/plugins/threed-in-photo/threed-in-photo.module.d.ts +17 -0
- package/app/plugins/threed-in-photo/utils/utils.d.ts +6 -0
- package/app/plugins/threedselector/element-buttons/element-buttons.component.d.ts +31 -0
- package/app/plugins/threedselector/element-buttons/element-buttons.component.scss +61 -0
- package/app/plugins/threedselector/element-slider/element-slider.component.d.ts +14 -0
- package/app/plugins/threedselector/element-slider/element-slider.component.scss +47 -0
- package/app/plugins/threedselector/element-toolbar/element-toolbar.component.d.ts +26 -0
- package/app/plugins/threedselector/element-toolbar/element-toolbar.component.scss +142 -0
- package/app/plugins/threedselector/threedselector/model/furniture-connected-part-integration.d.ts +7 -0
- package/app/plugins/threedselector/threedselector/model/furniture-integration.d.ts +12 -0
- package/app/plugins/threedselector/threedselector/model/furniture-part-integration.d.ts +14 -0
- package/app/plugins/threedselector/threedselector/model/furniture-part-variation.d.ts +7 -0
- package/app/plugins/threedselector/threedselector/model/material.d.ts +41 -0
- package/app/plugins/threedselector/threedselector/model/variation-settings.d.ts +53 -0
- package/app/plugins/threedselector/threedselector/model/variation.d.ts +11 -0
- package/app/plugins/threedselector/threedselector/service/animation.service.d.ts +22 -0
- package/app/plugins/threedselector/threedselector/service/build-furniture.service.d.ts +186 -0
- package/app/plugins/threedselector/threedselector/service/dimensions.service.d.ts +33 -0
- package/app/plugins/threedselector/threedselector/service/element.service.d.ts +45 -0
- package/app/plugins/threedselector/threedselector/service/light-creation.service.d.ts +9 -0
- package/app/plugins/threedselector/threedselector/service/load-furniture.service.d.ts +74 -0
- package/app/plugins/threedselector/threedselector/service/resize.service.d.ts +13 -0
- package/app/plugins/threedselector/threedselector/service/third-party-model.service.d.ts +66 -0
- package/app/plugins/threedselector/threedselector/service/threedselector.service.d.ts +22 -0
- package/app/plugins/threedselector/threedselector/service/variation-cache.service.d.ts +23 -0
- package/app/plugins/threedselector/threedselector/service/variation.service.d.ts +23 -0
- package/app/plugins/threedselector/threedselector/threedselector.component.d.ts +188 -0
- package/app/plugins/threedselector/threedselector/threedselector.component.scss +82 -0
- package/app/plugins/threedselector/threedselector/utils/asset.utils.d.ts +19 -0
- package/app/plugins/threedselector/threedselector/utils/image.utils.d.ts +6 -0
- package/app/plugins/threedselector/threedselector/utils/json-parser.utils.d.ts +9 -0
- package/app/plugins/threedselector/threedselector/utils/scene-3d.utils.d.ts +10 -0
- package/app/plugins/threedselector/threedselector.module.d.ts +31 -0
- package/app/plugins/toolbar/download-dialog/download-dialog.component.d.ts +14 -0
- package/app/plugins/toolbar/download-dialog/download-dialog.component.scss +22 -0
- package/app/plugins/toolbar/draw-dialog/draw-dialog.component.d.ts +66 -0
- package/app/plugins/toolbar/draw-dialog/draw-dialog.component.scss +97 -0
- package/app/plugins/toolbar/edit-preset-dialog/edit-preset-dialog.component.d.ts +8 -0
- package/app/plugins/toolbar/edit-preset-dialog/edit-preset-dialog.component.scss +0 -0
- package/app/plugins/toolbar/landing-screen-modal/landing-screen-modal.component.d.ts +36 -0
- package/app/plugins/toolbar/landing-screen-modal/landing-screen-modal.component.scss +71 -0
- package/app/plugins/toolbar/load-from-cloud-dialog/load-from-cloud-dialog.component.d.ts +36 -0
- package/app/plugins/toolbar/load-from-cloud-dialog/load-from-cloud-dialog.component.scss +3 -0
- package/app/plugins/toolbar/open-dialog/open-dialog.component.d.ts +23 -0
- package/app/plugins/toolbar/open-dialog/open-dialog.component.scss +0 -0
- package/app/plugins/toolbar/pdf-crop-dialog/pdf-crop-dialog.component.d.ts +34 -0
- package/app/plugins/toolbar/pdf-crop-dialog/pdf-crop-dialog.component.scss +17 -0
- package/app/plugins/toolbar/save-dialog/save-dialog.component.d.ts +38 -0
- package/app/plugins/toolbar/save-dialog/save-dialog.component.scss +33 -0
- package/app/plugins/toolbar/saved-dialog/saved-dialog.component.d.ts +24 -0
- package/app/plugins/toolbar/saved-dialog/saved-dialog.component.scss +7 -0
- package/app/plugins/toolbar/toolbar/limited-mode-message-component/limited-mode-message.component.d.ts +9 -0
- package/app/plugins/toolbar/toolbar/limited-mode-message-component/limited-mode-message.component.scss +10 -0
- package/app/plugins/toolbar/toolbar/toolbar.component.d.ts +101 -0
- package/app/plugins/toolbar/toolbar/toolbar.component.scss +251 -0
- package/app/plugins/toolbar/toolbar.module.d.ts +44 -0
- package/app/root/root.component.scss +0 -0
- package/app/service/dynamic-script.service.d.ts +8 -0
- package/app/service/google-tag-manager.service.d.ts +19 -0
- package/app/service/local-storage.service.d.ts +18 -0
- package/app/service/service-locator.service.d.ts +4 -0
- package/app/shared/base64-images.d.ts +4 -0
- package/app/shared/button-elevation/button-elevation.component.d.ts +40 -0
- package/app/shared/button-elevation/button-elevation.component.scss +109 -0
- package/app/shared/button-elevation/button-elevation.module.d.ts +16 -0
- package/app/shared/camera-settings-dialog/camera-settings-dialog.component.d.ts +24 -0
- package/app/shared/camera-settings-dialog/camera-settings-dialog.component.scss +30 -0
- package/app/shared/camera-settings-dialog/camera-settings-dialog.module.d.ts +16 -0
- package/app/shared/category-library/category-library.component.d.ts +10 -0
- package/app/shared/category-library/category-library.component.scss +16 -0
- package/app/shared/category-library/category-library.module.d.ts +11 -0
- package/app/shared/context-menu/context-menu.component.d.ts +12 -0
- package/app/shared/context-menu/context-menu.component.scss +25 -0
- package/app/shared/context-menu/context-menu.module.d.ts +14 -0
- package/app/shared/context-menu/item-context-menu/item-context-menu.component.d.ts +30 -0
- package/app/shared/context-menu/item-context-menu/item-context-menu.component.scss +32 -0
- package/app/shared/dialog/dialog.component.d.ts +26 -0
- package/app/shared/dialog/dialog.component.scss +25 -0
- package/app/shared/dialog/dialog.module.d.ts +12 -0
- package/app/shared/dialog/enum/dialog-type.enum.d.ts +6 -0
- package/app/shared/dialog/interface/dialog-config.interface.d.ts +7 -0
- package/app/shared/dialog/service/dialog.service.d.ts +11 -0
- package/app/shared/error-dialog/error-dialog.component.d.ts +11 -0
- package/app/shared/error-dialog/error-dialog.component.scss +0 -0
- package/app/shared/error-dialog/error-dialog.module.d.ts +10 -0
- package/app/shared/export-dialog/export-dialog.component.d.ts +11 -0
- package/app/shared/export-dialog/export-dialog.component.scss +19 -0
- package/app/shared/export-dialog/export-dialog.module.d.ts +11 -0
- package/app/shared/info-dialog/info-dialog.component.d.ts +9 -0
- package/app/shared/info-dialog/info-dialog.component.scss +15 -0
- package/app/shared/info-dialog/info-dialog.module.d.ts +12 -0
- package/app/shared/loader/hd-loader.component.d.ts +6 -0
- package/app/shared/loader/hd-loader.component.scss +44 -0
- package/app/shared/loader/hd-loader.module.d.ts +9 -0
- package/app/shared/loader/loader.component.scss +42 -0
- package/app/shared/loading-overlay/dialog/loading-overlay-dialog.component.d.ts +8 -0
- package/app/shared/loading-overlay/dialog/loading-overlay-dialog.component.scss +3 -0
- package/app/shared/loading-overlay/loading-overlay.component.d.ts +19 -0
- package/app/shared/loading-overlay/loading-overlay.component.scss +9 -0
- package/app/shared/loading-overlay/loading-overlay.module.d.ts +11 -0
- package/app/shared/model-dialog/model-dialog-furniture-list.component.d.ts +35 -0
- package/app/shared/model-dialog/model-dialog-furniture-list.component.scss +221 -0
- package/app/shared/model-dialog/model-dialog.component.d.ts +31 -0
- package/app/shared/model-dialog/model-dialog.component.scss +22 -0
- package/app/shared/model-dialog/model-dialog.module.d.ts +16 -0
- package/app/shared/progress-bar/progress-bar.component.d.ts +9 -0
- package/app/shared/progress-bar/progress-bar.component.scss +11 -0
- package/app/shared/progress-bar/progress-bar.module.d.ts +9 -0
- package/app/shared/register-dialog/register-dialog.component.d.ts +26 -0
- package/app/shared/register-dialog/register-dialog.component.scss +21 -0
- package/app/shared/screen-size-analysis/device-size-type.d.ts +5 -0
- package/app/shared/screen-size-analysis/navigator-type.enum.d.ts +4 -0
- package/app/shared/screen-size-analysis/screen-size-analysis.service.d.ts +27 -0
- package/app/shared/screen-size-analysis/screen-size-config.d.ts +5 -0
- package/app/shared/screen-size-analysis/screen-size-info.d.ts +10 -0
- package/app/shared/slider-input/slider-input.component.d.ts +13 -0
- package/app/shared/slider-input/slider-input.component.scss +12 -0
- package/app/shared/slider-input/slider-input.module.d.ts +13 -0
- package/app/shared/toolbar-icon/toolbar-icon.component.d.ts +12 -0
- package/app/shared/toolbar-icon/toolbar-icon.component.scss +8 -0
- package/app/shared/toolbar-icon/toolbar-icon.module.d.ts +11 -0
- package/app/shared/zoom-controls/zoom-controls.component.d.ts +16 -0
- package/app/shared/zoom-controls/zoom-controls.component.scss +0 -0
- package/app/shared/zoom-controls/zoom-controls.module.d.ts +10 -0
- package/assets/.gitkeep +0 -0
- package/assets/3d-models/pin.mtl +12 -0
- package/assets/3d-models/pin.obj +1083 -0
- package/assets/colors/ral.json +2345 -0
- package/assets/cursors/pencil.png +0 -0
- package/assets/cursors/pencil.svg +1 -0
- package/assets/fonts/helvetiker_regular.ttf +0 -0
- package/assets/fonts/helvetiker_regular.typeface.json +1 -0
- package/assets/fonts/helvetiker_regular.woff +0 -0
- package/assets/fonts/optimer_regular.typeface.json +1 -0
- package/assets/hdri/TSStudio3Point.hdr +135 -0
- package/assets/hdri/ground_MASK.jpg +0 -0
- package/assets/hdri/std_env_v2_A.hdr +0 -0
- package/assets/hdri/std_env_v2_B.hdr +0 -0
- package/assets/hdri/std_env_v2_C.hdr +0 -0
- package/assets/hdri/std_env_v2_D.hdr +0 -0
- package/assets/hdri/std_env_v2_E.hdr +46 -0
- package/assets/icons/add-button.svg +10 -0
- package/assets/icons/ar_circle.svg +7 -0
- package/assets/icons/arrow_point_down.svg +6 -0
- package/assets/icons/brush.svg +1 -0
- package/assets/icons/cart-shopping-regular.svg +1 -0
- package/assets/icons/check.svg +6 -0
- package/assets/icons/cit_powered_white.svg +92 -0
- package/assets/icons/conf_frame.svg +1 -0
- package/assets/icons/conf_plane.svg +1 -0
- package/assets/icons/cross.svg +1 -0
- package/assets/icons/cube-outline.svg +1 -0
- package/assets/icons/cube-unfolded.svg +1 -0
- package/assets/icons/delete-button.svg +16 -0
- package/assets/icons/download.svg +4 -0
- package/assets/icons/edit-button.svg +18 -0
- package/assets/icons/google-cardboard-orange.svg +1 -0
- package/assets/icons/google-cardboard.svg +1 -0
- package/assets/icons/hand-pointer.svg +1 -0
- package/assets/icons/height_adjust.svg +1 -0
- package/assets/icons/magic-wand.svg +57 -0
- package/assets/icons/magnifier.svg +12 -0
- package/assets/icons/measurements.svg +1 -0
- package/assets/icons/move-phone-ar.svg +4 -0
- package/assets/icons/qrcode.svg +1 -0
- package/assets/icons/street-view-orange.svg +5 -0
- package/assets/icons/street-view.svg +6 -0
- package/assets/icons/swap-button.svg +12 -0
- package/assets/icons/tilt-phone.svg +29 -0
- package/assets/icons/triangle_down.svg +1 -0
- package/assets/icons/triangle_up.svg +1 -0
- package/assets/images/colijn-logo.webp +0 -0
- package/assets/images/favicon.ico +0 -0
- package/assets/images/favicon.png +0 -0
- package/assets/images/ione360-logo.webp +0 -0
- package/assets/images/logo.svg +35 -0
- package/assets/workers/indexedDB-web-worker.js +74 -0
- package/bundle-styles.scss +267 -0
- package/bundles/colijnit-homedecorator.umd.js +47374 -0
- package/bundles/colijnit-homedecorator.umd.js.map +1 -0
- package/colijnit-homedecorator.d.ts +5 -0
- package/environments/environment.d.ts +11 -0
- package/esm2015/app/app.version.js +9 -0
- package/esm2015/app/core/components/debug/debug.component.js +57 -0
- package/esm2015/app/core/components/error/error-message.component.js +55 -0
- package/esm2015/app/core/components/tooltip/tooltip.component.js +73 -0
- package/esm2015/app/core/const/dimensioning.js +28 -0
- package/esm2015/app/core/core.module.js +159 -0
- package/esm2015/app/core/directive/autofocus.directive.js +26 -0
- package/esm2015/app/core/directive/tooltip.directive.js +64 -0
- package/esm2015/app/core/directive/visibility-observer-master.directive.js +53 -0
- package/esm2015/app/core/directive/visibility-observer.directive.js +54 -0
- package/esm2015/app/core/enum/configuration-key.enum.js +37 -0
- package/esm2015/app/core/enum/export-type.enum.js +7 -0
- package/esm2015/app/core/enum/google-tag-manager-event.enum.js +14 -0
- package/esm2015/app/core/enum/icon-name.enum.js +17 -0
- package/esm2015/app/core/enum/icon.enum.js +35 -0
- package/esm2015/app/core/enum/light.enum.js +9 -0
- package/esm2015/app/core/enum/message-type.enum.js +71 -0
- package/esm2015/app/core/enum/model-type.enum.js +8 -0
- package/esm2015/app/core/enum/output-encoding.enum.js +6 -0
- package/esm2015/app/core/enum/shadow-map-type.enum.js +8 -0
- package/esm2015/app/core/enum/user-role-type.enum.js +22 -0
- package/esm2015/app/core/enum/view-mode.enum.js +11 -0
- package/esm2015/app/core/enum/xr-mode.enum.js +6 -0
- package/esm2015/app/core/interface/adjustable-element.interface.js +2 -0
- package/esm2015/app/core/interface/category.interface.js +2 -0
- package/esm2015/app/core/interface/changes.interface.js +2 -0
- package/esm2015/app/core/interface/child-params.interface.js +2 -0
- package/esm2015/app/core/interface/configuration-data.interface.js +2 -0
- package/esm2015/app/core/interface/external-settings.interface.js +2 -0
- package/esm2015/app/core/interface/info-dialog-data.interface.js +2 -0
- package/esm2015/app/core/interface/light-preset.interface.js +2 -0
- package/esm2015/app/core/interface/loading-overlay-data.interface.js +2 -0
- package/esm2015/app/core/interface/media-resource.interface.js +2 -0
- package/esm2015/app/core/interface/message-with-payload.interface.js +2 -0
- package/esm2015/app/core/interface/message-without-payload.interface.js +2 -0
- package/esm2015/app/core/interface/preset.interface.js +2 -0
- package/esm2015/app/core/interface/selected-floor-event.interface.js +2 -0
- package/esm2015/app/core/interface/selected-wall-event.interface.js +2 -0
- package/esm2015/app/core/interface/texture.interface.js +2 -0
- package/esm2015/app/core/interface/toolbar-icon.interface.js +2 -0
- package/esm2015/app/core/model/ar-position-indicator.js +21 -0
- package/esm2015/app/core/model/camera-settings.js +14 -0
- package/esm2015/app/core/model/category.js +15 -0
- package/esm2015/app/core/model/custom-button.js +16 -0
- package/esm2015/app/core/model/error-message.js +9 -0
- package/esm2015/app/core/model/export-object.js +3 -0
- package/esm2015/app/core/model/from-intersection-observer.js +64 -0
- package/esm2015/app/core/model/homedecorator-settings-options.js +49 -0
- package/esm2015/app/core/model/homedecorator-settings.js +22 -0
- package/esm2015/app/core/model/icon.js +34 -0
- package/esm2015/app/core/model/light-preset.js +59 -0
- package/esm2015/app/core/model/light-properties.js +45 -0
- package/esm2015/app/core/model/media-resource.js +10 -0
- package/esm2015/app/core/model/preset.js +15 -0
- package/esm2015/app/core/model/ral-color.js +2 -0
- package/esm2015/app/core/model/shadow-properties.js +10 -0
- package/esm2015/app/core/model/texture-type.js +8 -0
- package/esm2015/app/core/model/texture.js +58 -0
- package/esm2015/app/core/model/three-object.js +2 -0
- package/esm2015/app/core/model/toast-type.js +7 -0
- package/esm2015/app/core/model/toast.js +7 -0
- package/esm2015/app/core/model/xr-reticle.js +87 -0
- package/esm2015/app/core/pipe/append.pipe.js +21 -0
- package/esm2015/app/core/pipe/cm-to-measure.pipe.js +20 -0
- package/esm2015/app/core/pipe/filter.pipe.js +20 -0
- package/esm2015/app/core/pipe/keys.pipe.js +22 -0
- package/esm2015/app/core/pipe/localize.pipe.js +28 -0
- package/esm2015/app/core/pipe/m-to-measure.pipe.js +20 -0
- package/esm2015/app/core/pipe/prepend.pipe.js +21 -0
- package/esm2015/app/core/pipe/scm-to-measure.pipe.js +20 -0
- package/esm2015/app/core/pipe/sm-to-measure.pipe.js +20 -0
- package/esm2015/app/core/pipe/strip-html.pipe.js +17 -0
- package/esm2015/app/core/service/3dm-api.js +246 -0
- package/esm2015/app/core/service/app-state.service.js +128 -0
- package/esm2015/app/core/service/configuration.service.js +72 -0
- package/esm2015/app/core/service/debug.service.js +45 -0
- package/esm2015/app/core/service/dimensioning.service.js +45 -0
- package/esm2015/app/core/service/dynamic-camera.service.js +107 -0
- package/esm2015/app/core/service/environment.service.js +17 -0
- package/esm2015/app/core/service/error.service.js +30 -0
- package/esm2015/app/core/service/export.service.js +97 -0
- package/esm2015/app/core/service/file.service.js +44 -0
- package/esm2015/app/core/service/homedecorator-app-event.service.js +27 -0
- package/esm2015/app/core/service/homedecorator-app.service.js +201 -0
- package/esm2015/app/core/service/homedecorator-connector-adapter.service.js +455 -0
- package/esm2015/app/core/service/homedecorator-connector.service.js +604 -0
- package/esm2015/app/core/service/homedecorator-dictionary.service.js +73 -0
- package/esm2015/app/core/service/homedecorator-icon-cache.service.js +43 -0
- package/esm2015/app/core/service/homedecorator-settings.service.js +146 -0
- package/esm2015/app/core/service/homedecorator.service.js +37 -0
- package/esm2015/app/core/service/integration.service.js +56 -0
- package/esm2015/app/core/service/item-serialization.service.js +188 -0
- package/esm2015/app/core/service/json-utils.service.js +56 -0
- package/esm2015/app/core/service/message-bus.service.js +28 -0
- package/esm2015/app/core/service/permanent-store.service.js +135 -0
- package/esm2015/app/core/service/presets.service.js +297 -0
- package/esm2015/app/core/service/progress.service.js +74 -0
- package/esm2015/app/core/service/ral.service.js +98 -0
- package/esm2015/app/core/service/skip-button-info.service.js +60 -0
- package/esm2015/app/core/service/toast.service.js +23 -0
- package/esm2015/app/core/service/utils.service.js +566 -0
- package/esm2015/app/core/service/view-mode.service.js +61 -0
- package/esm2015/app/core/service/web-worker.service.js +44 -0
- package/esm2015/app/core/utils/clone-utils.js +41 -0
- package/esm2015/app/core/utils/color.utils.js +20 -0
- package/esm2015/app/core/utils/file.utils.js +234 -0
- package/esm2015/app/core/utils/function/is-empty.function.js +5 -0
- package/esm2015/app/core/utils/function/is-nill.function.js +5 -0
- package/esm2015/app/core/utils/material.utils.js +407 -0
- package/esm2015/app/core/utils/object.utils.js +191 -0
- package/esm2015/app/core/utils/relative-position.utils.js +74 -0
- package/esm2015/app/core/utils/variation-utils.js +314 -0
- package/esm2015/app/core/workers/enum/web-worker-message.enum.js +6 -0
- package/esm2015/app/core/workers/enum/web-worker-type.enum.js +5 -0
- package/esm2015/app/development/components/selected-child-material-texture.component.js +467 -0
- package/esm2015/app/development/components/selected-child-material.component.js +863 -0
- package/esm2015/app/development/components/selected-child.component.js +64 -0
- package/esm2015/app/development/components/selected-object-base.js +127 -0
- package/esm2015/app/development/components/selected-object.component.js +98 -0
- package/esm2015/app/development/development.module.js +74 -0
- package/esm2015/app/development/directive/development.directive.js +92 -0
- package/esm2015/app/development/service/development.service.js +212 -0
- package/esm2015/app/homedecorator.component.js +285 -0
- package/esm2015/app/homedecorator.module.js +60 -0
- package/esm2015/app/plugins/core3d/collision-manager/collision-manager.service.js +119 -0
- package/esm2015/app/plugins/core3d/collision-manager/floorplan-collision-detection.js +158 -0
- package/esm2015/app/plugins/core3d/collision-manager/snapping-collision.service.js +234 -0
- package/esm2015/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-buttons/ar-gui-buttons.component.js +36 -0
- package/esm2015/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-configurator/ar-gui-configurator.component.js +49 -0
- package/esm2015/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-context-menu/ar-gui-context-menu.component.js +77 -0
- package/esm2015/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-notifications/ar-gui-notifications.component.js +26 -0
- package/esm2015/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-root.component.js +46 -0
- package/esm2015/app/plugins/core3d/components/lightplan/edit-light/edit-light.component.js +197 -0
- package/esm2015/app/plugins/core3d/components/lightplan/edit-lightplan/edit-lightplan.component.js +197 -0
- package/esm2015/app/plugins/core3d/components/lightplan/lightplan.component.js +512 -0
- package/esm2015/app/plugins/core3d/components/scene-options/scene-options.component.js +88 -0
- package/esm2015/app/plugins/core3d/core/angles.js +19 -0
- package/esm2015/app/plugins/core3d/core/corner-utils.js +9 -0
- package/esm2015/app/plugins/core3d/core/dimensioning.js +79 -0
- package/esm2015/app/plugins/core3d/core/utils.js +606 -0
- package/esm2015/app/plugins/core3d/core3d/components/scenecontrol/scene-control.component.js +289 -0
- package/esm2015/app/plugins/core3d/core3d/core3d.component.js +243 -0
- package/esm2015/app/plugins/core3d/core3d.module.js +201 -0
- package/esm2015/app/plugins/core3d/directive/scene.directive.js +41 -0
- package/esm2015/app/plugins/core3d/enum/ar-feature.enum.js +14 -0
- package/esm2015/app/plugins/core3d/enum/direction.enum.js +10 -0
- package/esm2015/app/plugins/core3d/enum/result-type.enum.js +21 -0
- package/esm2015/app/plugins/core3d/hud/bounding-measurement-box/bounding-box-measurement.js +99 -0
- package/esm2015/app/plugins/core3d/hud/bounding-measurement-box/box-measurement.js +35 -0
- package/esm2015/app/plugins/core3d/hud/bounding-measurement-box/door-or-window-box-measurement.js +95 -0
- package/esm2015/app/plugins/core3d/hud/bounding-measurement-box/measurable.js +2 -0
- package/esm2015/app/plugins/core3d/hud/bounding-measurement-box/measurement-utils.js +22 -0
- package/esm2015/app/plugins/core3d/hud/custom-shape-name-label.js +31 -0
- package/esm2015/app/plugins/core3d/hud/floor-indicator.js +80 -0
- package/esm2015/app/plugins/core3d/hud/furniture-measurements.js +44 -0
- package/esm2015/app/plugins/core3d/hud/indicator-factory.js +49 -0
- package/esm2015/app/plugins/core3d/hud/measurements.js +165 -0
- package/esm2015/app/plugins/core3d/hud/on-wall-measurements.js +80 -0
- package/esm2015/app/plugins/core3d/hud/opening-symbol.js +74 -0
- package/esm2015/app/plugins/core3d/hud/rotation-helper.js +263 -0
- package/esm2015/app/plugins/core3d/hud/utils.js +30 -0
- package/esm2015/app/plugins/core3d/interface/dragged-data.interface.js +2 -0
- package/esm2015/app/plugins/core3d/interface/edge-visibility-changes.js +2 -0
- package/esm2015/app/plugins/core3d/interface/model.interface.js +2 -0
- package/esm2015/app/plugins/core3d/interface/opening.interface.js +2 -0
- package/esm2015/app/plugins/core3d/interface/scene-option-button.interface.js +6 -0
- package/esm2015/app/plugins/core3d/interface/scene-update.interface.js +2 -0
- package/esm2015/app/plugins/core3d/items/base-item.js +233 -0
- package/esm2015/app/plugins/core3d/items/custom-cylinder-floor-item.js +41 -0
- package/esm2015/app/plugins/core3d/items/custom-cylinder-wall-item.js +45 -0
- package/esm2015/app/plugins/core3d/items/custom-floor-item.js +11 -0
- package/esm2015/app/plugins/core3d/items/custom-objects.js +295 -0
- package/esm2015/app/plugins/core3d/items/custom-shape-floor-item.js +45 -0
- package/esm2015/app/plugins/core3d/items/custom-shape-wall-item.js +37 -0
- package/esm2015/app/plugins/core3d/items/custom-wall-floor-item.js +84 -0
- package/esm2015/app/plugins/core3d/items/custom-wall-item.js +11 -0
- package/esm2015/app/plugins/core3d/items/factory.js +130 -0
- package/esm2015/app/plugins/core3d/items/floor-item.js +29 -0
- package/esm2015/app/plugins/core3d/items/floor-pin.js +31 -0
- package/esm2015/app/plugins/core3d/items/floor-plane-item.js +95 -0
- package/esm2015/app/plugins/core3d/items/furniture.js +2 -0
- package/esm2015/app/plugins/core3d/items/in-wall-floor-item.js +14 -0
- package/esm2015/app/plugins/core3d/items/item-group.js +160 -0
- package/esm2015/app/plugins/core3d/items/item-type.js +23 -0
- package/esm2015/app/plugins/core3d/items/item.js +388 -0
- package/esm2015/app/plugins/core3d/items/metadata.js +2 -0
- package/esm2015/app/plugins/core3d/items/on-floor-item.js +10 -0
- package/esm2015/app/plugins/core3d/items/pin.js +2 -0
- package/esm2015/app/plugins/core3d/items/three-mesh.js +17 -0
- package/esm2015/app/plugins/core3d/items/wall-floor-item.js +9 -0
- package/esm2015/app/plugins/core3d/items/wall-objects.js +2381 -0
- package/esm2015/app/plugins/core3d/items/wall-pin.js +25 -0
- package/esm2015/app/plugins/core3d/model/ar-parameters.js +12 -0
- package/esm2015/app/plugins/core3d/model/box-skin-default.js +17 -0
- package/esm2015/app/plugins/core3d/model/collision-info.js +2 -0
- package/esm2015/app/plugins/core3d/model/custom-floor-group-result.js +13 -0
- package/esm2015/app/plugins/core3d/model/cylinder-skin-default.js +14 -0
- package/esm2015/app/plugins/core3d/model/dragged-status.js +51 -0
- package/esm2015/app/plugins/core3d/model/face.js +18 -0
- package/esm2015/app/plugins/core3d/model/geometry.js +52 -0
- package/esm2015/app/plugins/core3d/model/scene-event.enum.js +12 -0
- package/esm2015/app/plugins/core3d/model/skin.js +2 -0
- package/esm2015/app/plugins/core3d/model/threed-model.js +49 -0
- package/esm2015/app/plugins/core3d/service/ar.service.js +844 -0
- package/esm2015/app/plugins/core3d/service/camera.service.js +340 -0
- package/esm2015/app/plugins/core3d/service/ceiling.service.js +104 -0
- package/esm2015/app/plugins/core3d/service/controls.js +763 -0
- package/esm2015/app/plugins/core3d/service/drag-and-drop.service.js +369 -0
- package/esm2015/app/plugins/core3d/service/error-glow.service.js +131 -0
- package/esm2015/app/plugins/core3d/service/floor.service.js +229 -0
- package/esm2015/app/plugins/core3d/service/font.service.js +27 -0
- package/esm2015/app/plugins/core3d/service/hud.service.js +404 -0
- package/esm2015/app/plugins/core3d/service/intersection.service.js +55 -0
- package/esm2015/app/plugins/core3d/service/item-group.service.js +117 -0
- package/esm2015/app/plugins/core3d/service/item.service.js +205 -0
- package/esm2015/app/plugins/core3d/service/light-presets.service.js +296 -0
- package/esm2015/app/plugins/core3d/service/lights.service.js +190 -0
- package/esm2015/app/plugins/core3d/service/message-board.service.js +60 -0
- package/esm2015/app/plugins/core3d/service/models.service.js +146 -0
- package/esm2015/app/plugins/core3d/service/outline.service.js +150 -0
- package/esm2015/app/plugins/core3d/service/rotation.service.js +183 -0
- package/esm2015/app/plugins/core3d/service/scene-event.service.js +1000 -0
- package/esm2015/app/plugins/core3d/service/scene-options.service.js +24 -0
- package/esm2015/app/plugins/core3d/service/scene.service.js +351 -0
- package/esm2015/app/plugins/core3d/service/vr.service.js +198 -0
- package/esm2015/app/plugins/core3d/service/wall-measurements.service.js +79 -0
- package/esm2015/app/plugins/core3d/service/xr.service.js +397 -0
- package/esm2015/app/plugins/core3d/textures/DepthDataTexture.js +17 -0
- package/esm2015/app/plugins/core3d/walkthrough-camera-controls/walkthrough-camera-controls.component.js +54 -0
- package/esm2015/app/plugins/furniture-manager/furniture-library/furniture-library.component.js +92 -0
- package/esm2015/app/plugins/furniture-manager/furniture-manager/furniture-manager.component.js +458 -0
- package/esm2015/app/plugins/furniture-manager/furniture-manager.module.js +100 -0
- package/esm2015/app/plugins/help/help/help.component.js +71 -0
- package/esm2015/app/plugins/help/help-dialog/help-dialog.component.js +83 -0
- package/esm2015/app/plugins/help/help.module.js +35 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/animation/animation.component.js +36 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/answer-card/answer-card.component.js +187 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/answers-slideout/answers-slideout.component.js +417 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/color-filter/color-filter.component.js +44 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/customizer/customizer.component.js +82 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/image-zoom/image-zoom.component.js +27 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary-line.component.js +148 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary.component.js +167 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/tag-filter/tag-filter.component.js +25 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/lite-selector.component.js +150 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/service/customizer.service.js +222 -0
- package/esm2015/app/plugins/lite-selector/lite-selector.module.js +108 -0
- package/esm2015/app/plugins/model-uploader/model-previewer/model-preview.component.js +470 -0
- package/esm2015/app/plugins/model-uploader/model-uploader/model-uploader.component.js +132 -0
- package/esm2015/app/plugins/model-uploader/model-uploader.module.js +60 -0
- package/esm2015/app/plugins/plugin-interface.js +2 -0
- package/esm2015/app/plugins/plugins.module.js +80 -0
- package/esm2015/app/plugins/presets/presets/presets.component.js +72 -0
- package/esm2015/app/plugins/presets/presets.module.js +33 -0
- package/esm2015/app/plugins/product-catalog/own-collection-catalog/product-own-collection.component.js +57 -0
- package/esm2015/app/plugins/product-catalog/own-collection-catalog/product-own-collection.module.js +34 -0
- package/esm2015/app/plugins/product-catalog/product-catalog/product-catalog.component.js +428 -0
- package/esm2015/app/plugins/product-catalog/product-catalog.module.js +61 -0
- package/esm2015/app/plugins/render/enum/connection-status.js +8 -0
- package/esm2015/app/plugins/render/enum/render-modes.js +7 -0
- package/esm2015/app/plugins/render/enum/render-status.js +9 -0
- package/esm2015/app/plugins/render/model/camera-position.js +6 -0
- package/esm2015/app/plugins/render/model/image-size.js +3 -0
- package/esm2015/app/plugins/render/model/lightning.js +3 -0
- package/esm2015/app/plugins/render/model/render-data.js +6 -0
- package/esm2015/app/plugins/render/model/render-environment.js +3 -0
- package/esm2015/app/plugins/render/model/render-parameters.js +15 -0
- package/esm2015/app/plugins/render/model/render-queue-item.js +11 -0
- package/esm2015/app/plugins/render/model/render-settings.js +12 -0
- package/esm2015/app/plugins/render/model/render.js +10 -0
- package/esm2015/app/plugins/render/render-controls/render-controls.component.js +89 -0
- package/esm2015/app/plugins/render/render-dialog/render-dialog.component.js +318 -0
- package/esm2015/app/plugins/render/render.module.js +85 -0
- package/esm2015/app/plugins/render/service/new-render.service.js +302 -0
- package/esm2015/app/plugins/render/service/render.service.js +650 -0
- package/esm2015/app/plugins/room-planner/components/appearance-section/appearance-section.component.js +190 -0
- package/esm2015/app/plugins/room-planner/components/color-picker/color-picker.component.js +32 -0
- package/esm2015/app/plugins/room-planner/components/custom-cylinder-creator/custom-cylinder-creator.component.js +219 -0
- package/esm2015/app/plugins/room-planner/components/custome-shape-creator/custom-shape-creator.component.js +257 -0
- package/esm2015/app/plugins/room-planner/components/dimension-input/dimension-input.component.js +66 -0
- package/esm2015/app/plugins/room-planner/components/edit-apply/edit-apply.component.js +57 -0
- package/esm2015/app/plugins/room-planner/components/edit-parameter/edit-parameter.component.js +79 -0
- package/esm2015/app/plugins/room-planner/components/file-drop/file-drop.component.js +107 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/const/defaults.js +57 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/floorplanner-mode.js +11 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/floorplanner.component.js +1303 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/service/floorplan.service.js +536 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/service/room.service.js +330 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/snap-indicator-mode.js +7 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/utils/context.utils.js +53 -0
- package/esm2015/app/plugins/room-planner/components/object-library/object-library.component.js +63 -0
- package/esm2015/app/plugins/room-planner/components/ral-color-picker/ral-color-picker.component.js +128 -0
- package/esm2015/app/plugins/room-planner/components/rgb-color-picker/rgb-color-picker.component.js +37 -0
- package/esm2015/app/plugins/room-planner/components/selected-floor/selected-floor.component.js +36 -0
- package/esm2015/app/plugins/room-planner/components/selected-object/selected-object.component.js +203 -0
- package/esm2015/app/plugins/room-planner/components/selected-threed-object/selected-threed-object.component.js +139 -0
- package/esm2015/app/plugins/room-planner/components/selected-wall/selected-wall.component.js +102 -0
- package/esm2015/app/plugins/room-planner/components/settings/settings-options.component.js +152 -0
- package/esm2015/app/plugins/room-planner/components/settings/settings.component.js +188 -0
- package/esm2015/app/plugins/room-planner/components/texture-editor/texture-editor.component.js +617 -0
- package/esm2015/app/plugins/room-planner/components/texture-picker/texture-picker.component.js +74 -0
- package/esm2015/app/plugins/room-planner/components/wall-length-input/wall-length-input.component.js +48 -0
- package/esm2015/app/plugins/room-planner/const/key.js +12 -0
- package/esm2015/app/plugins/room-planner/room-planner/room-planner.component.js +1681 -0
- package/esm2015/app/plugins/room-planner/room-planner.module.js +233 -0
- package/esm2015/app/plugins/threed-in-photo/components/threed-in-photo-scene/threed-in-photo-scene.component.js +43 -0
- package/esm2015/app/plugins/threed-in-photo/components/upload-image/upload-image.component.js +61 -0
- package/esm2015/app/plugins/threed-in-photo/components/view-control/view-control.component.js +164 -0
- package/esm2015/app/plugins/threed-in-photo/models/model-output.js +18 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-build.service.js +243 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-connection.service.js +50 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-control.service.js +33 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-event-listeners.service.js +36 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-event.service.js +19 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-initializer.service.js +53 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-render.service.js +61 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-scene.service.js +37 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-view.service.js +21 -0
- package/esm2015/app/plugins/threed-in-photo/threed-in-photo.module.js +67 -0
- package/esm2015/app/plugins/threed-in-photo/utils/utils.js +21 -0
- package/esm2015/app/plugins/threedselector/element-buttons/element-buttons.component.js +95 -0
- package/esm2015/app/plugins/threedselector/element-slider/element-slider.component.js +28 -0
- package/esm2015/app/plugins/threedselector/element-toolbar/element-toolbar.component.js +80 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/furniture-connected-part-integration.js +3 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/furniture-integration.js +13 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/furniture-part-integration.js +6 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/furniture-part-variation.js +3 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/material.js +11 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/variation-settings.js +11 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/variation.js +3 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/animation.service.js +65 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/build-furniture.service.js +1343 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/dimensions.service.js +183 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/element.service.js +373 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/light-creation.service.js +35 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/load-furniture.service.js +291 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/resize.service.js +70 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/third-party-model.service.js +156 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/threedselector.service.js +101 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/variation-cache.service.js +133 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/variation.service.js +436 -0
- package/esm2015/app/plugins/threedselector/threedselector/threedselector.component.js +1116 -0
- package/esm2015/app/plugins/threedselector/threedselector/utils/asset.utils.js +128 -0
- package/esm2015/app/plugins/threedselector/threedselector/utils/image.utils.js +33 -0
- package/esm2015/app/plugins/threedselector/threedselector/utils/json-parser.utils.js +188 -0
- package/esm2015/app/plugins/threedselector/threedselector/utils/scene-3d.utils.js +159 -0
- package/esm2015/app/plugins/threedselector/threedselector.module.js +129 -0
- package/esm2015/app/plugins/toolbar/download-dialog/download-dialog.component.js +33 -0
- package/esm2015/app/plugins/toolbar/draw-dialog/draw-dialog.component.js +279 -0
- package/esm2015/app/plugins/toolbar/edit-preset-dialog/edit-preset-dialog.component.js +22 -0
- package/esm2015/app/plugins/toolbar/landing-screen-modal/landing-screen-modal.component.js +123 -0
- package/esm2015/app/plugins/toolbar/load-from-cloud-dialog/load-from-cloud-dialog.component.js +140 -0
- package/esm2015/app/plugins/toolbar/open-dialog/open-dialog.component.js +83 -0
- package/esm2015/app/plugins/toolbar/pdf-crop-dialog/pdf-crop-dialog.component.js +92 -0
- package/esm2015/app/plugins/toolbar/save-dialog/save-dialog.component.js +146 -0
- package/esm2015/app/plugins/toolbar/saved-dialog/saved-dialog.component.js +66 -0
- package/esm2015/app/plugins/toolbar/toolbar/limited-mode-message-component/limited-mode-message.component.js +26 -0
- package/esm2015/app/plugins/toolbar/toolbar/toolbar.component.js +676 -0
- package/esm2015/app/plugins/toolbar/toolbar.module.js +177 -0
- package/esm2015/app/service/dynamic-script.service.js +56 -0
- package/esm2015/app/service/google-tag-manager.service.js +89 -0
- package/esm2015/app/service/local-storage.service.js +93 -0
- package/esm2015/app/service/service-locator.service.js +4 -0
- package/esm2015/app/shared/base64-images.js +6 -0
- package/esm2015/app/shared/button-elevation/button-elevation.component.js +279 -0
- package/esm2015/app/shared/button-elevation/button-elevation.module.js +60 -0
- package/esm2015/app/shared/camera-settings-dialog/camera-settings-dialog.component.js +197 -0
- package/esm2015/app/shared/camera-settings-dialog/camera-settings-dialog.module.js +58 -0
- package/esm2015/app/shared/category-library/category-library.component.js +27 -0
- package/esm2015/app/shared/category-library/category-library.module.js +39 -0
- package/esm2015/app/shared/context-menu/context-menu.component.js +35 -0
- package/esm2015/app/shared/context-menu/context-menu.module.js +49 -0
- package/esm2015/app/shared/context-menu/item-context-menu/item-context-menu.component.js +93 -0
- package/esm2015/app/shared/dialog/dialog.component.js +119 -0
- package/esm2015/app/shared/dialog/dialog.module.js +45 -0
- package/esm2015/app/shared/dialog/enum/dialog-type.enum.js +8 -0
- package/esm2015/app/shared/dialog/interface/dialog-config.interface.js +2 -0
- package/esm2015/app/shared/dialog/service/dialog.service.js +21 -0
- package/esm2015/app/shared/error-dialog/error-dialog.component.js +24 -0
- package/esm2015/app/shared/error-dialog/error-dialog.module.js +30 -0
- package/esm2015/app/shared/export-dialog/export-dialog.component.js +68 -0
- package/esm2015/app/shared/export-dialog/export-dialog.module.js +35 -0
- package/esm2015/app/shared/info-dialog/info-dialog.component.js +54 -0
- package/esm2015/app/shared/info-dialog/info-dialog.module.js +37 -0
- package/esm2015/app/shared/loader/hd-loader.component.js +24 -0
- package/esm2015/app/shared/loader/hd-loader.module.js +33 -0
- package/esm2015/app/shared/loading-overlay/dialog/loading-overlay-dialog.component.js +26 -0
- package/esm2015/app/shared/loading-overlay/loading-overlay.component.js +55 -0
- package/esm2015/app/shared/loading-overlay/loading-overlay.module.js +42 -0
- package/esm2015/app/shared/model-dialog/model-dialog-furniture-list.component.js +325 -0
- package/esm2015/app/shared/model-dialog/model-dialog.component.js +104 -0
- package/esm2015/app/shared/model-dialog/model-dialog.module.js +64 -0
- package/esm2015/app/shared/progress-bar/progress-bar.component.js +39 -0
- package/esm2015/app/shared/progress-bar/progress-bar.module.js +33 -0
- package/esm2015/app/shared/register-dialog/register-dialog.component.js +112 -0
- package/esm2015/app/shared/screen-size-analysis/device-size-type.js +7 -0
- package/esm2015/app/shared/screen-size-analysis/navigator-type.enum.js +6 -0
- package/esm2015/app/shared/screen-size-analysis/screen-size-analysis.service.js +93 -0
- package/esm2015/app/shared/screen-size-analysis/screen-size-config.js +7 -0
- package/esm2015/app/shared/screen-size-analysis/screen-size-info.js +2 -0
- package/esm2015/app/shared/slider-input/slider-input.component.js +35 -0
- package/esm2015/app/shared/slider-input/slider-input.module.js +46 -0
- package/esm2015/app/shared/toolbar-icon/toolbar-icon.component.js +95 -0
- package/esm2015/app/shared/toolbar-icon/toolbar-icon.module.js +38 -0
- package/esm2015/app/shared/zoom-controls/zoom-controls.component.js +47 -0
- package/esm2015/app/shared/zoom-controls/zoom-controls.module.js +34 -0
- package/esm2015/colijnit-homedecorator.js +5 -0
- package/esm2015/environments/environment.js +17 -0
- package/esm2015/public_api.js +4 -0
- package/fesm2015/colijnit-homedecorator.js +45086 -0
- package/fesm2015/colijnit-homedecorator.js.map +1 -0
- package/homedecorator-globals.scss +361 -0
- package/package.json +48 -0
- package/palette.scss +32 -0
- package/public_api.d.ts +3 -0
- package/styles.scss +377 -0
|
@@ -0,0 +1,1083 @@
|
|
|
1
|
+
# Blender v2.76 (sub 0) OBJ File: ''
|
|
2
|
+
# www.blender.org
|
|
3
|
+
mtllib pin.mtl
|
|
4
|
+
o Pointer_Location_Map
|
|
5
|
+
v 0.305187 0.685762 0.030032
|
|
6
|
+
v 0.312447 0.748457 0.032694
|
|
7
|
+
v 0.085073 0.667753 0.029271
|
|
8
|
+
v 0.046041 0.641674 0.028172
|
|
9
|
+
v -0.288339 0.629524 0.027661
|
|
10
|
+
v -0.265784 0.565535 0.024985
|
|
11
|
+
v 0.000000 0.565189 0.024971
|
|
12
|
+
v 0.000000 0.599228 0.026392
|
|
13
|
+
v -0.238071 0.495138 0.022066
|
|
14
|
+
v 0.000000 0.494758 0.022050
|
|
15
|
+
v -0.193772 0.393791 0.017911
|
|
16
|
+
v 0.000000 0.393383 0.017894
|
|
17
|
+
v -0.133849 0.266051 0.012752
|
|
18
|
+
v 0.000000 0.265618 0.012734
|
|
19
|
+
v -0.000625 0.001066 0.002330
|
|
20
|
+
v 0.000000 0.001066 0.002330
|
|
21
|
+
v 0.288339 0.629524 0.027661
|
|
22
|
+
v -0.046062 0.641682 0.028173
|
|
23
|
+
v -0.000000 0.632516 0.027787
|
|
24
|
+
v 0.080867 1.050264 0.045808
|
|
25
|
+
v 0.000000 1.060910 0.046279
|
|
26
|
+
v 0.000011 0.873145 0.038053
|
|
27
|
+
v 0.046051 0.863983 0.037656
|
|
28
|
+
v -0.046031 0.863992 0.037657
|
|
29
|
+
v -0.080867 1.050264 0.045808
|
|
30
|
+
v -0.156223 1.019050 0.044429
|
|
31
|
+
v -0.085065 0.837916 0.036530
|
|
32
|
+
v -0.220933 0.969397 0.042246
|
|
33
|
+
v -0.111150 0.798887 0.034852
|
|
34
|
+
v -0.270586 0.904687 0.039421
|
|
35
|
+
v -0.120315 0.752847 0.032882
|
|
36
|
+
v -0.301799 0.829331 0.036160
|
|
37
|
+
v -0.111163 0.706805 0.030923
|
|
38
|
+
v -0.312447 0.748457 0.032694
|
|
39
|
+
v -0.085089 0.667769 0.029272
|
|
40
|
+
v -0.305187 0.685762 0.030032
|
|
41
|
+
v 0.156722 1.019915 -0.044203
|
|
42
|
+
v 0.156223 1.019050 -0.044165
|
|
43
|
+
v 0.080867 1.050264 -0.045544
|
|
44
|
+
v 0.081125 1.051228 -0.045587
|
|
45
|
+
v 0.220933 0.969397 0.042246
|
|
46
|
+
v 0.156223 1.019050 0.044429
|
|
47
|
+
v 0.085081 0.837900 0.036530
|
|
48
|
+
v 0.111159 0.798867 0.034851
|
|
49
|
+
v 0.265784 0.565535 0.024985
|
|
50
|
+
v 0.238071 0.495138 0.022066
|
|
51
|
+
v 0.193772 0.393791 0.017911
|
|
52
|
+
v 0.133849 0.266051 0.012752
|
|
53
|
+
v 0.000625 0.001066 0.002330
|
|
54
|
+
v 0.270586 0.904687 0.039421
|
|
55
|
+
v 0.120315 0.752825 0.032881
|
|
56
|
+
v 0.301799 0.829331 0.036160
|
|
57
|
+
v 0.111155 0.706784 0.030922
|
|
58
|
+
v 0.084360 0.668467 0.029301
|
|
59
|
+
v 0.081238 0.671588 0.029433
|
|
60
|
+
v 0.043966 0.646685 0.028383
|
|
61
|
+
v 0.045655 0.642606 0.028211
|
|
62
|
+
v 0.000000 0.637940 0.028015
|
|
63
|
+
v 0.000000 0.633525 0.027830
|
|
64
|
+
v 0.110222 0.707171 0.030939
|
|
65
|
+
v 0.106144 0.708860 0.031010
|
|
66
|
+
v -0.043985 0.646693 0.028383
|
|
67
|
+
v -0.045675 0.642615 0.028212
|
|
68
|
+
v 0.119305 0.752825 0.032881
|
|
69
|
+
v 0.114891 0.752825 0.032881
|
|
70
|
+
v -0.081253 0.671604 0.029433
|
|
71
|
+
v -0.084375 0.668483 0.029302
|
|
72
|
+
v 0.110227 0.798481 0.034834
|
|
73
|
+
v 0.106148 0.796791 0.034762
|
|
74
|
+
v -0.106152 0.708880 0.031011
|
|
75
|
+
v -0.110231 0.707191 0.030940
|
|
76
|
+
v 0.084368 0.837187 0.036499
|
|
77
|
+
v 0.081246 0.834065 0.036364
|
|
78
|
+
v -0.114891 0.752847 0.032882
|
|
79
|
+
v -0.119305 0.752847 0.032882
|
|
80
|
+
v 0.045665 0.863051 0.037616
|
|
81
|
+
v 0.043976 0.858973 0.037439
|
|
82
|
+
v -0.106140 0.796811 0.034762
|
|
83
|
+
v -0.110218 0.798501 0.034835
|
|
84
|
+
v 0.000011 0.872136 0.038009
|
|
85
|
+
v 0.000011 0.867722 0.037818
|
|
86
|
+
v -0.081231 0.834080 0.036365
|
|
87
|
+
v -0.084352 0.837202 0.036500
|
|
88
|
+
v -0.045645 0.863059 0.037616
|
|
89
|
+
v -0.043956 0.858981 0.037440
|
|
90
|
+
v 0.305187 0.685762 -0.029768
|
|
91
|
+
v 0.288339 0.629524 -0.027398
|
|
92
|
+
v 0.000000 0.599228 -0.026128
|
|
93
|
+
v 0.046041 0.641674 -0.027908
|
|
94
|
+
v -0.046062 0.641682 -0.027909
|
|
95
|
+
v -0.000000 0.632516 -0.027523
|
|
96
|
+
v -0.288339 0.629524 -0.027398
|
|
97
|
+
v -0.305187 0.685762 -0.029768
|
|
98
|
+
v 0.045665 0.863051 -0.037352
|
|
99
|
+
v 0.046051 0.863983 -0.037392
|
|
100
|
+
v 0.085081 0.837900 -0.036266
|
|
101
|
+
v 0.084368 0.837187 -0.036235
|
|
102
|
+
v 0.085073 0.667753 -0.029007
|
|
103
|
+
v 0.312447 0.748457 -0.032431
|
|
104
|
+
v 0.000000 0.565189 -0.024707
|
|
105
|
+
v -0.265784 0.565535 -0.024721
|
|
106
|
+
v 0.000000 0.494758 -0.021787
|
|
107
|
+
v -0.238071 0.495138 -0.021802
|
|
108
|
+
v 0.000000 0.393383 -0.017630
|
|
109
|
+
v -0.193772 0.393791 -0.017647
|
|
110
|
+
v 0.000000 0.265618 -0.012471
|
|
111
|
+
v -0.133849 0.266051 -0.012488
|
|
112
|
+
v 0.000000 0.001066 -0.002066
|
|
113
|
+
v -0.000625 0.001066 -0.002066
|
|
114
|
+
v 0.000011 0.873145 -0.037789
|
|
115
|
+
v 0.000000 1.060910 -0.046016
|
|
116
|
+
v -0.085065 0.837916 -0.036267
|
|
117
|
+
v -0.156223 1.019050 -0.044165
|
|
118
|
+
v -0.080867 1.050264 -0.045544
|
|
119
|
+
v -0.046031 0.863992 -0.037393
|
|
120
|
+
v -0.111150 0.798887 -0.034588
|
|
121
|
+
v -0.220933 0.969397 -0.041982
|
|
122
|
+
v -0.120315 0.752847 -0.032618
|
|
123
|
+
v -0.270586 0.904687 -0.039158
|
|
124
|
+
v -0.111163 0.706805 -0.030659
|
|
125
|
+
v -0.301799 0.829331 -0.035897
|
|
126
|
+
v -0.085089 0.667769 -0.029008
|
|
127
|
+
v -0.312447 0.748457 -0.032431
|
|
128
|
+
v 0.111159 0.798867 -0.034587
|
|
129
|
+
v 0.220933 0.969397 -0.041982
|
|
130
|
+
v 0.265784 0.565535 -0.024721
|
|
131
|
+
v 0.238071 0.495138 -0.021802
|
|
132
|
+
v 0.193772 0.393791 -0.017647
|
|
133
|
+
v 0.133849 0.266051 -0.012488
|
|
134
|
+
v 0.000625 0.001066 -0.002066
|
|
135
|
+
v 0.120315 0.752825 -0.032617
|
|
136
|
+
v 0.270586 0.904687 -0.039158
|
|
137
|
+
v 0.111155 0.706784 -0.030659
|
|
138
|
+
v 0.301799 0.829331 -0.035897
|
|
139
|
+
v 0.045655 0.642606 -0.027948
|
|
140
|
+
v 0.043966 0.646685 -0.028119
|
|
141
|
+
v 0.081238 0.671588 -0.029169
|
|
142
|
+
v 0.084360 0.668467 -0.029037
|
|
143
|
+
v 0.000000 0.633525 -0.027566
|
|
144
|
+
v 0.000000 0.637940 -0.027751
|
|
145
|
+
v 0.106144 0.708860 -0.030747
|
|
146
|
+
v 0.110222 0.707171 -0.030675
|
|
147
|
+
v -0.045675 0.642615 -0.027948
|
|
148
|
+
v -0.043985 0.646693 -0.028120
|
|
149
|
+
v 0.114891 0.752825 -0.032617
|
|
150
|
+
v 0.119305 0.752825 -0.032617
|
|
151
|
+
v -0.084375 0.668483 -0.029038
|
|
152
|
+
v -0.081253 0.671604 -0.029170
|
|
153
|
+
v 0.106148 0.796791 -0.034498
|
|
154
|
+
v 0.110227 0.798481 -0.034570
|
|
155
|
+
v -0.110231 0.707191 -0.030676
|
|
156
|
+
v -0.106152 0.708880 -0.030747
|
|
157
|
+
v 0.081246 0.834065 -0.036101
|
|
158
|
+
v -0.119305 0.752847 -0.032618
|
|
159
|
+
v -0.114891 0.752847 -0.032618
|
|
160
|
+
v 0.043976 0.858973 -0.037176
|
|
161
|
+
v -0.110218 0.798501 -0.034571
|
|
162
|
+
v -0.106140 0.796811 -0.034499
|
|
163
|
+
v 0.000011 0.867722 -0.037554
|
|
164
|
+
v 0.000011 0.872136 -0.037745
|
|
165
|
+
v -0.084352 0.837202 -0.036236
|
|
166
|
+
v -0.081231 0.834080 -0.036101
|
|
167
|
+
v -0.043956 0.858981 -0.037176
|
|
168
|
+
v -0.045645 0.863059 -0.037352
|
|
169
|
+
v 0.306160 0.685562 -0.026344
|
|
170
|
+
v 0.306160 0.685562 0.026607
|
|
171
|
+
v 0.289281 0.629217 0.024504
|
|
172
|
+
v 0.289281 0.629217 -0.024240
|
|
173
|
+
v -0.289281 0.629217 -0.024240
|
|
174
|
+
v -0.289281 0.629217 0.024504
|
|
175
|
+
v -0.306160 0.685562 0.026607
|
|
176
|
+
v -0.306160 0.685562 -0.026344
|
|
177
|
+
v 0.313444 0.748464 -0.028710
|
|
178
|
+
v 0.313444 0.748464 0.028973
|
|
179
|
+
v -0.266711 0.565189 -0.021868
|
|
180
|
+
v -0.266711 0.565189 0.022132
|
|
181
|
+
v -0.238986 0.494758 -0.019282
|
|
182
|
+
v -0.238986 0.494758 0.019545
|
|
183
|
+
v -0.194674 0.393383 -0.015600
|
|
184
|
+
v -0.194674 0.393383 0.015864
|
|
185
|
+
v -0.134739 0.265618 -0.011031
|
|
186
|
+
v -0.134739 0.265618 0.011294
|
|
187
|
+
v -0.001235 0.000076 -0.001781
|
|
188
|
+
v -0.001235 0.000076 0.002045
|
|
189
|
+
v 0.000000 0.000076 -0.001781
|
|
190
|
+
v 0.000000 0.000076 0.002045
|
|
191
|
+
v 0.000000 1.061909 -0.040781
|
|
192
|
+
v 0.000000 1.061909 0.041045
|
|
193
|
+
v 0.081125 1.051228 0.040626
|
|
194
|
+
v 0.081125 1.051228 -0.040362
|
|
195
|
+
v -0.156722 1.019915 -0.039136
|
|
196
|
+
v -0.156722 1.019915 0.039400
|
|
197
|
+
v -0.081125 1.051228 0.040626
|
|
198
|
+
v -0.081125 1.051228 -0.040362
|
|
199
|
+
v -0.221638 0.970103 -0.037197
|
|
200
|
+
v -0.221638 0.970103 0.037460
|
|
201
|
+
v -0.271451 0.905187 -0.034687
|
|
202
|
+
v -0.271451 0.905187 0.034950
|
|
203
|
+
v -0.302764 0.829590 -0.031789
|
|
204
|
+
v -0.302764 0.829590 0.032053
|
|
205
|
+
v -0.313444 0.748464 -0.028710
|
|
206
|
+
v -0.313444 0.748464 0.028973
|
|
207
|
+
v 0.156722 1.019915 -0.039136
|
|
208
|
+
v 0.156722 1.019915 0.039400
|
|
209
|
+
v 0.221638 0.970103 0.037460
|
|
210
|
+
v 0.221638 0.970103 -0.037197
|
|
211
|
+
v 0.266711 0.565189 0.022132
|
|
212
|
+
v 0.266711 0.565189 -0.021868
|
|
213
|
+
v 0.238986 0.494758 0.019545
|
|
214
|
+
v 0.238986 0.494758 -0.019282
|
|
215
|
+
v 0.194674 0.393383 0.015864
|
|
216
|
+
v 0.194674 0.393383 -0.015600
|
|
217
|
+
v 0.134739 0.265618 0.011294
|
|
218
|
+
v 0.134739 0.265618 -0.011031
|
|
219
|
+
v 0.001235 0.000076 -0.001781
|
|
220
|
+
v 0.001235 0.000076 0.002045
|
|
221
|
+
v 0.271451 0.905187 0.034950
|
|
222
|
+
v 0.271451 0.905187 -0.034687
|
|
223
|
+
v 0.302764 0.829590 0.032053
|
|
224
|
+
v 0.302764 0.829590 -0.031789
|
|
225
|
+
v 0.043966 0.646685 -0.024891
|
|
226
|
+
v 0.043966 0.646685 0.025154
|
|
227
|
+
v 0.081238 0.671588 0.026084
|
|
228
|
+
v 0.081238 0.671588 -0.025820
|
|
229
|
+
v 0.000000 0.637940 -0.024565
|
|
230
|
+
v 0.000000 0.637940 0.024828
|
|
231
|
+
v 0.106144 0.708860 0.027481
|
|
232
|
+
v 0.106144 0.708860 -0.027218
|
|
233
|
+
v -0.043985 0.646693 -0.024891
|
|
234
|
+
v -0.043985 0.646693 0.025155
|
|
235
|
+
v 0.114891 0.752825 0.029138
|
|
236
|
+
v 0.114891 0.752825 -0.028874
|
|
237
|
+
v -0.081253 0.671604 -0.025821
|
|
238
|
+
v -0.081253 0.671604 0.026085
|
|
239
|
+
v 0.106148 0.796791 0.030804
|
|
240
|
+
v 0.106148 0.796791 -0.030540
|
|
241
|
+
v -0.106152 0.708880 -0.027218
|
|
242
|
+
v -0.106152 0.708880 0.027482
|
|
243
|
+
v 0.081246 0.834065 0.032223
|
|
244
|
+
v 0.081246 0.834065 -0.031960
|
|
245
|
+
v -0.114891 0.752847 -0.028875
|
|
246
|
+
v -0.114891 0.752847 0.029139
|
|
247
|
+
v 0.043976 0.858973 0.033176
|
|
248
|
+
v 0.043976 0.858973 -0.032912
|
|
249
|
+
v -0.106140 0.796811 -0.030541
|
|
250
|
+
v -0.106140 0.796811 0.030805
|
|
251
|
+
v 0.000011 0.867722 0.033511
|
|
252
|
+
v 0.000011 0.867722 -0.033247
|
|
253
|
+
v -0.081231 0.834080 -0.031960
|
|
254
|
+
v -0.081231 0.834080 0.032224
|
|
255
|
+
v -0.043956 0.858981 0.033176
|
|
256
|
+
v -0.043956 0.858981 -0.032912
|
|
257
|
+
v 0.306160 0.685562 -0.029760
|
|
258
|
+
v 0.306160 0.685562 -0.028158
|
|
259
|
+
v 0.289281 0.629217 -0.025911
|
|
260
|
+
v 0.289281 0.629217 -0.027385
|
|
261
|
+
v 0.289281 0.629217 0.027649
|
|
262
|
+
v 0.289281 0.629217 0.026174
|
|
263
|
+
v 0.306160 0.685562 0.028422
|
|
264
|
+
v 0.306160 0.685562 0.030023
|
|
265
|
+
v -0.289281 0.629217 -0.027385
|
|
266
|
+
v -0.289281 0.629217 -0.025911
|
|
267
|
+
v -0.306160 0.685562 -0.028158
|
|
268
|
+
v -0.306160 0.685562 -0.029760
|
|
269
|
+
v -0.306160 0.685562 0.030023
|
|
270
|
+
v -0.306160 0.685562 0.028422
|
|
271
|
+
v -0.289281 0.629217 0.026174
|
|
272
|
+
v -0.289281 0.629217 0.027649
|
|
273
|
+
v 0.313444 0.748464 -0.032431
|
|
274
|
+
v 0.313444 0.748464 -0.030687
|
|
275
|
+
v 0.313444 0.748464 0.030950
|
|
276
|
+
v 0.313444 0.748464 0.032695
|
|
277
|
+
v -0.266711 0.565189 -0.024707
|
|
278
|
+
v -0.266711 0.565189 -0.023376
|
|
279
|
+
v -0.266711 0.565189 0.023640
|
|
280
|
+
v -0.266711 0.565189 0.024971
|
|
281
|
+
v -0.238986 0.494758 -0.021787
|
|
282
|
+
v -0.238986 0.494758 -0.020613
|
|
283
|
+
v -0.238986 0.494758 0.020876
|
|
284
|
+
v -0.238986 0.494758 0.022050
|
|
285
|
+
v -0.194674 0.393383 -0.017630
|
|
286
|
+
v -0.194674 0.393383 -0.016679
|
|
287
|
+
v -0.194674 0.393383 0.016943
|
|
288
|
+
v -0.194674 0.393383 0.017894
|
|
289
|
+
v -0.134739 0.265618 -0.012471
|
|
290
|
+
v -0.134739 0.265618 -0.011796
|
|
291
|
+
v -0.134739 0.265618 0.012059
|
|
292
|
+
v -0.134739 0.265618 0.012734
|
|
293
|
+
v -0.001235 0.000076 -0.002028
|
|
294
|
+
v -0.001235 0.000076 -0.001913
|
|
295
|
+
v -0.001235 0.000076 0.002176
|
|
296
|
+
v -0.001235 0.000076 0.002292
|
|
297
|
+
v 0.000000 0.000076 -0.002028
|
|
298
|
+
v 0.000000 0.000076 -0.001913
|
|
299
|
+
v 0.000000 0.000076 0.002176
|
|
300
|
+
v 0.000000 0.000076 0.002292
|
|
301
|
+
v 0.000000 1.061909 -0.046060
|
|
302
|
+
v 0.000000 1.061909 -0.043585
|
|
303
|
+
v 0.081125 1.051228 -0.043138
|
|
304
|
+
v 0.081125 1.051228 0.045851
|
|
305
|
+
v 0.081125 1.051228 0.043401
|
|
306
|
+
v 0.000000 1.061909 0.043849
|
|
307
|
+
v 0.000000 1.061909 0.046324
|
|
308
|
+
v -0.156722 1.019915 -0.044203
|
|
309
|
+
v -0.156722 1.019915 -0.041828
|
|
310
|
+
v -0.081125 1.051228 -0.043138
|
|
311
|
+
v -0.081125 1.051228 -0.045587
|
|
312
|
+
v -0.081125 1.051228 0.045851
|
|
313
|
+
v -0.081125 1.051228 0.043401
|
|
314
|
+
v -0.156722 1.019915 0.042092
|
|
315
|
+
v -0.156722 1.019915 0.044467
|
|
316
|
+
v -0.221638 0.970103 -0.042013
|
|
317
|
+
v -0.221638 0.970103 -0.039756
|
|
318
|
+
v -0.221638 0.970103 0.040019
|
|
319
|
+
v -0.221638 0.970103 0.042277
|
|
320
|
+
v -0.271451 0.905187 -0.039179
|
|
321
|
+
v -0.271451 0.905187 -0.037073
|
|
322
|
+
v -0.271451 0.905187 0.037337
|
|
323
|
+
v -0.271451 0.905187 0.039443
|
|
324
|
+
v -0.302764 0.829590 -0.035908
|
|
325
|
+
v -0.302764 0.829590 -0.033977
|
|
326
|
+
v -0.302764 0.829590 0.034241
|
|
327
|
+
v -0.302764 0.829590 0.036171
|
|
328
|
+
v -0.313444 0.748464 -0.032431
|
|
329
|
+
v -0.313444 0.748464 -0.030687
|
|
330
|
+
v -0.313444 0.748464 0.030950
|
|
331
|
+
v -0.313444 0.748464 0.032695
|
|
332
|
+
v 0.156722 1.019915 -0.041828
|
|
333
|
+
v 0.221638 0.970103 -0.039756
|
|
334
|
+
v 0.221638 0.970103 -0.042013
|
|
335
|
+
v 0.221638 0.970103 0.042277
|
|
336
|
+
v 0.221638 0.970103 0.040019
|
|
337
|
+
v 0.156722 1.019915 0.042092
|
|
338
|
+
v 0.156722 1.019915 0.044467
|
|
339
|
+
v 0.266711 0.565189 -0.023376
|
|
340
|
+
v 0.266711 0.565189 -0.024707
|
|
341
|
+
v 0.266711 0.565189 0.024971
|
|
342
|
+
v 0.266711 0.565189 0.023640
|
|
343
|
+
v 0.238986 0.494758 -0.020613
|
|
344
|
+
v 0.238986 0.494758 -0.021787
|
|
345
|
+
v 0.238986 0.494758 0.022050
|
|
346
|
+
v 0.238986 0.494758 0.020876
|
|
347
|
+
v 0.194674 0.393383 -0.016679
|
|
348
|
+
v 0.194674 0.393383 -0.017630
|
|
349
|
+
v 0.194674 0.393383 0.017894
|
|
350
|
+
v 0.194674 0.393383 0.016943
|
|
351
|
+
v 0.134739 0.265618 -0.011796
|
|
352
|
+
v 0.134739 0.265618 -0.012471
|
|
353
|
+
v 0.134739 0.265618 0.012734
|
|
354
|
+
v 0.134739 0.265618 0.012059
|
|
355
|
+
v 0.001235 0.000076 -0.002028
|
|
356
|
+
v 0.001235 0.000076 -0.001913
|
|
357
|
+
v 0.001235 0.000076 0.002176
|
|
358
|
+
v 0.001235 0.000076 0.002292
|
|
359
|
+
v 0.271451 0.905187 -0.037073
|
|
360
|
+
v 0.271451 0.905187 -0.039179
|
|
361
|
+
v 0.271451 0.905187 0.039443
|
|
362
|
+
v 0.271451 0.905187 0.037337
|
|
363
|
+
v 0.302764 0.829590 -0.033977
|
|
364
|
+
v 0.302764 0.829590 -0.035908
|
|
365
|
+
v 0.302764 0.829590 0.036171
|
|
366
|
+
v 0.302764 0.829590 0.034241
|
|
367
|
+
v 0.043966 0.646685 -0.026606
|
|
368
|
+
v 0.081238 0.671588 -0.027599
|
|
369
|
+
v 0.081238 0.671588 0.027863
|
|
370
|
+
v 0.043966 0.646685 0.026870
|
|
371
|
+
v 0.000000 0.637940 -0.026258
|
|
372
|
+
v 0.000000 0.637940 0.026521
|
|
373
|
+
v 0.106144 0.708860 -0.029092
|
|
374
|
+
v 0.106144 0.708860 0.029356
|
|
375
|
+
v -0.043985 0.646693 -0.026606
|
|
376
|
+
v -0.043985 0.646693 0.026870
|
|
377
|
+
v 0.114891 0.752825 -0.030863
|
|
378
|
+
v 0.114891 0.752825 0.031126
|
|
379
|
+
v -0.081253 0.671604 -0.027600
|
|
380
|
+
v -0.081253 0.671604 0.027864
|
|
381
|
+
v 0.106148 0.796791 -0.032643
|
|
382
|
+
v 0.106148 0.796791 0.032906
|
|
383
|
+
v -0.106152 0.708880 -0.029093
|
|
384
|
+
v -0.106152 0.708880 0.029357
|
|
385
|
+
v 0.081246 0.834065 -0.034160
|
|
386
|
+
v 0.081246 0.834065 0.034423
|
|
387
|
+
v -0.114891 0.752847 -0.030864
|
|
388
|
+
v -0.114891 0.752847 0.031127
|
|
389
|
+
v 0.043976 0.858973 -0.035177
|
|
390
|
+
v 0.043976 0.858973 0.035441
|
|
391
|
+
v -0.106140 0.796811 -0.032644
|
|
392
|
+
v -0.106140 0.796811 0.032907
|
|
393
|
+
v 0.000011 0.867722 -0.035535
|
|
394
|
+
v 0.000011 0.867722 0.035799
|
|
395
|
+
v -0.081231 0.834080 -0.034160
|
|
396
|
+
v -0.081231 0.834080 0.034424
|
|
397
|
+
v -0.043956 0.858981 -0.035177
|
|
398
|
+
v -0.043956 0.858981 0.035441
|
|
399
|
+
vt 0.083706 0.002051
|
|
400
|
+
vt 0.000268 0.001597
|
|
401
|
+
vt 0.021130 0.498609
|
|
402
|
+
vt 0.063025 0.499841
|
|
403
|
+
vt 0.159568 0.002679
|
|
404
|
+
vt 0.244572 0.003753
|
|
405
|
+
vt 0.244894 1.000000
|
|
406
|
+
vt 0.159339 1.000000
|
|
407
|
+
vt 0.245159 0.002819
|
|
408
|
+
vt 0.338610 0.004180
|
|
409
|
+
vt 0.339004 1.000000
|
|
410
|
+
vt 0.339349 0.002552
|
|
411
|
+
vt 0.473795 0.004919
|
|
412
|
+
vt 0.474462 1.000000
|
|
413
|
+
vt 0.474846 0.002252
|
|
414
|
+
vt 0.644252 0.005441
|
|
415
|
+
vt 0.645181 1.000000
|
|
416
|
+
vt 0.645387 0.000581
|
|
417
|
+
vt 0.998943 0.002979
|
|
418
|
+
vt 0.998759 0.996502
|
|
419
|
+
vt 0.159152 0.002832
|
|
420
|
+
vt 0.084208 0.002383
|
|
421
|
+
vt 0.084436 0.500731
|
|
422
|
+
vt 0.121695 0.999983
|
|
423
|
+
vt 0.371359 0.981876
|
|
424
|
+
vt 0.499559 0.998806
|
|
425
|
+
vt 0.499516 0.751184
|
|
426
|
+
vt 0.435436 0.742586
|
|
427
|
+
vt 0.434454 0.742587
|
|
428
|
+
vt 0.370480 0.981767
|
|
429
|
+
vt 0.251052 0.932138
|
|
430
|
+
vt 0.374876 0.717421
|
|
431
|
+
vt 0.373878 0.717375
|
|
432
|
+
vt 0.250190 0.931904
|
|
433
|
+
vt 0.147697 0.852977
|
|
434
|
+
vt 0.322941 0.677449
|
|
435
|
+
vt 0.321975 0.677300
|
|
436
|
+
vt 0.146886 0.852600
|
|
437
|
+
vt 0.068325 0.749771
|
|
438
|
+
vt 0.283159 0.625432
|
|
439
|
+
vt 0.282300 0.625162
|
|
440
|
+
vt 0.067614 0.749246
|
|
441
|
+
vt 0.018345 0.629530
|
|
442
|
+
vt 0.258216 0.564935
|
|
443
|
+
vt 0.257529 0.564579
|
|
444
|
+
vt 0.017786 0.628880
|
|
445
|
+
vt 0.001174 0.500434
|
|
446
|
+
vt 0.249783 0.500089
|
|
447
|
+
vt 0.000000 0.000000
|
|
448
|
+
vt 1.000000 0.000000
|
|
449
|
+
vt 1.000000 1.000000
|
|
450
|
+
vt 0.000000 1.000000
|
|
451
|
+
vt 0.997166 0.002532
|
|
452
|
+
vt 0.941774 0.652416
|
|
453
|
+
vt 0.150875 0.498677
|
|
454
|
+
vt 0.849057 0.498580
|
|
455
|
+
vt 0.000013 0.602740
|
|
456
|
+
vt 0.058226 0.652416
|
|
457
|
+
vt 0.002834 0.002532
|
|
458
|
+
vt 0.000319 0.000319
|
|
459
|
+
vt 0.997219 0.002781
|
|
460
|
+
vt 0.996806 0.996806
|
|
461
|
+
vt 0.004103 0.995897
|
|
462
|
+
vt 0.996247 0.996247
|
|
463
|
+
vt 0.002679 0.997321
|
|
464
|
+
vt 0.995820 0.995820
|
|
465
|
+
vt 0.002819 0.997181
|
|
466
|
+
vt 0.995081 0.995081
|
|
467
|
+
vt 0.002552 0.997448
|
|
468
|
+
vt 0.994559 0.994559
|
|
469
|
+
vt 0.002251 0.997749
|
|
470
|
+
vt 0.996502 0.003498
|
|
471
|
+
vt 0.997021 0.997021
|
|
472
|
+
vt 0.000581 0.999419
|
|
473
|
+
vt 0.004346 0.004346
|
|
474
|
+
vt 0.995009 0.004991
|
|
475
|
+
vt 0.995458 0.995458
|
|
476
|
+
vt 0.004752 0.995248
|
|
477
|
+
vt 0.003602 0.003602
|
|
478
|
+
vt 0.995117 0.004883
|
|
479
|
+
vt 0.995713 0.995713
|
|
480
|
+
vt 0.005421 0.994579
|
|
481
|
+
vt 0.002845 0.002845
|
|
482
|
+
vt 0.995986 0.995986
|
|
483
|
+
vt 0.005534 0.994466
|
|
484
|
+
vt 0.002129 0.002130
|
|
485
|
+
vt 0.995154 0.004846
|
|
486
|
+
vt 0.996253 0.996253
|
|
487
|
+
vt 0.005282 0.994718
|
|
488
|
+
vt 0.001483 0.001483
|
|
489
|
+
vt 0.995311 0.004689
|
|
490
|
+
vt 0.996502 0.996502
|
|
491
|
+
vt 0.004699 0.995301
|
|
492
|
+
vt 0.000914 0.000914
|
|
493
|
+
vt 0.995530 0.004470
|
|
494
|
+
vt 0.996724 0.996724
|
|
495
|
+
vt 0.003892 0.996108
|
|
496
|
+
vt 0.995897 0.004103
|
|
497
|
+
vt 0.004990 0.995010
|
|
498
|
+
vt 0.994466 0.005534
|
|
499
|
+
vt 0.004916 0.995084
|
|
500
|
+
vt 0.997321 0.002679
|
|
501
|
+
vt 0.997448 0.002552
|
|
502
|
+
vt 0.997749 0.002252
|
|
503
|
+
vt 0.999419 0.000581
|
|
504
|
+
vt 0.003498 0.996502
|
|
505
|
+
vt 0.994719 0.005281
|
|
506
|
+
vt 0.996109 0.003891
|
|
507
|
+
vt 0.004469 0.995531
|
|
508
|
+
vt 0.994579 0.005421
|
|
509
|
+
vt 0.100814 0.040300
|
|
510
|
+
vt 0.942937 0.959700
|
|
511
|
+
vt 0.023537 0.959700
|
|
512
|
+
vt 0.173068 0.040300
|
|
513
|
+
vt 0.945971 0.959700
|
|
514
|
+
vt 0.026571 0.959700
|
|
515
|
+
vt 0.038497 0.038497
|
|
516
|
+
vt 0.961503 0.038497
|
|
517
|
+
vt 0.961503 0.961503
|
|
518
|
+
vt 0.038497 0.961503
|
|
519
|
+
vt 0.036708 0.036708
|
|
520
|
+
vt 0.963292 0.036708
|
|
521
|
+
vt 0.963292 0.963292
|
|
522
|
+
vt 0.036708 0.963292
|
|
523
|
+
vt 0.033774 0.033774
|
|
524
|
+
vt 0.966226 0.033774
|
|
525
|
+
vt 0.966226 0.966226
|
|
526
|
+
vt 0.033774 0.966226
|
|
527
|
+
vt 0.023064 0.023064
|
|
528
|
+
vt 0.976936 0.023064
|
|
529
|
+
vt 0.976936 0.976936
|
|
530
|
+
vt 0.023064 0.976936
|
|
531
|
+
vt 0.016789 0.016789
|
|
532
|
+
vt 0.983211 0.016789
|
|
533
|
+
vt 0.983211 0.983211
|
|
534
|
+
vt 0.016789 0.983211
|
|
535
|
+
vt 0.004903 0.004903
|
|
536
|
+
vt 0.057132 0.057132
|
|
537
|
+
vt 0.942868 0.057132
|
|
538
|
+
vt 0.942868 0.942868
|
|
539
|
+
vt 0.057132 0.942868
|
|
540
|
+
vt 0.495911 0.999462
|
|
541
|
+
vt 0.374679 0.983501
|
|
542
|
+
vt 0.253810 0.934591
|
|
543
|
+
vt 0.366780 0.981385
|
|
544
|
+
vt 0.149719 0.856064
|
|
545
|
+
vt 0.246728 0.930502
|
|
546
|
+
vt 0.069498 0.753272
|
|
547
|
+
vt 0.143936 0.850281
|
|
548
|
+
vt 0.018615 0.633220
|
|
549
|
+
vt 0.065409 0.746190
|
|
550
|
+
vt 0.000538 0.504089
|
|
551
|
+
vt 0.016499 0.625321
|
|
552
|
+
vt 0.080815 0.000000
|
|
553
|
+
vt 0.003236 0.000000
|
|
554
|
+
vt 0.031596 0.031597
|
|
555
|
+
vt 0.968404 0.031597
|
|
556
|
+
vt 0.968404 0.968404
|
|
557
|
+
vt 0.031596 0.968404
|
|
558
|
+
vt 0.045979 0.045979
|
|
559
|
+
vt 0.954021 0.045979
|
|
560
|
+
vt 0.954021 0.954021
|
|
561
|
+
vt 0.045979 0.954021
|
|
562
|
+
vt 0.977011 0.045979
|
|
563
|
+
vt 0.977011 0.954021
|
|
564
|
+
vt 0.068968 0.954021
|
|
565
|
+
vt 0.068956 0.045971
|
|
566
|
+
vt 0.084051 0.000000
|
|
567
|
+
vt 0.063038 0.500000
|
|
568
|
+
vt 0.159339 0.000000
|
|
569
|
+
vt 0.084051 0.500000
|
|
570
|
+
vt 0.500000 0.750000
|
|
571
|
+
vt 0.435295 0.741481
|
|
572
|
+
vt 0.370590 0.982963
|
|
573
|
+
vt 0.500000 1.000000
|
|
574
|
+
vt 0.250000 0.933013
|
|
575
|
+
vt 0.146447 0.853553
|
|
576
|
+
vt 0.323223 0.676777
|
|
577
|
+
vt 0.375000 0.716506
|
|
578
|
+
vt 0.244894 0.000000
|
|
579
|
+
vt 0.339004 0.000000
|
|
580
|
+
vt 0.474462 0.000000
|
|
581
|
+
vt 0.645181 0.000000
|
|
582
|
+
vt 0.066987 0.750000
|
|
583
|
+
vt 0.283494 0.625000
|
|
584
|
+
vt 0.017037 0.629410
|
|
585
|
+
vt 0.258519 0.564705
|
|
586
|
+
vt 0.000000 0.500000
|
|
587
|
+
vt 0.250000 0.500000
|
|
588
|
+
vt 0.149121 0.497554
|
|
589
|
+
vn 0.000000 -0.042300 0.999100
|
|
590
|
+
vn 0.000000 -0.041800 0.999100
|
|
591
|
+
vn -0.000000 -0.041400 0.999100
|
|
592
|
+
vn -0.000000 -0.041000 0.999200
|
|
593
|
+
vn -0.000000 -0.040400 0.999200
|
|
594
|
+
vn 0.000000 -0.039300 0.999200
|
|
595
|
+
vn -0.000000 -0.042000 0.999100
|
|
596
|
+
vn -0.000000 -0.041900 0.999100
|
|
597
|
+
vn 0.000000 -0.043700 0.999000
|
|
598
|
+
vn -0.000000 -0.043600 0.999000
|
|
599
|
+
vn -0.000000 -0.043500 0.999100
|
|
600
|
+
vn -0.000000 -0.043200 0.999100
|
|
601
|
+
vn -0.000100 -0.042900 0.999100
|
|
602
|
+
vn -0.000000 -0.042600 0.999100
|
|
603
|
+
vn -0.000000 -0.044100 -0.999000
|
|
604
|
+
vn 0.000100 -0.042900 0.999100
|
|
605
|
+
vn -0.000000 -0.042100 0.999100
|
|
606
|
+
vn -0.000000 -0.042500 0.999100
|
|
607
|
+
vn -0.000000 -0.042700 0.999100
|
|
608
|
+
vn -0.000000 -0.043000 0.999100
|
|
609
|
+
vn -0.000000 -0.043100 0.999100
|
|
610
|
+
vn -0.000000 -0.042000 -0.999100
|
|
611
|
+
vn 0.000000 -0.041900 -0.999100
|
|
612
|
+
vn -0.000000 -0.043100 -0.999100
|
|
613
|
+
vn 0.000000 -0.042300 -0.999100
|
|
614
|
+
vn 0.000000 -0.041800 -0.999100
|
|
615
|
+
vn -0.000000 -0.041400 -0.999100
|
|
616
|
+
vn -0.000000 -0.041000 -0.999200
|
|
617
|
+
vn -0.000000 -0.040400 -0.999200
|
|
618
|
+
vn 0.000000 -0.039300 -0.999200
|
|
619
|
+
vn 0.000000 -0.043700 -0.999000
|
|
620
|
+
vn -0.000000 -0.043600 -0.999000
|
|
621
|
+
vn -0.000000 -0.043500 -0.999100
|
|
622
|
+
vn -0.000000 -0.043200 -0.999100
|
|
623
|
+
vn -0.000100 -0.042900 -0.999100
|
|
624
|
+
vn -0.000000 -0.042600 -0.999100
|
|
625
|
+
vn 0.000100 -0.042900 -0.999100
|
|
626
|
+
vn -0.000000 -0.042100 -0.999100
|
|
627
|
+
vn -0.000000 -0.042500 -0.999100
|
|
628
|
+
vn -0.000000 -0.042700 -0.999100
|
|
629
|
+
vn -0.000000 -0.043000 -0.999100
|
|
630
|
+
vn 0.957900 -0.287000 0.000000
|
|
631
|
+
vn -0.957900 -0.287000 0.000000
|
|
632
|
+
vn 0.993400 -0.115000 0.000000
|
|
633
|
+
vn -0.943100 -0.332400 0.000000
|
|
634
|
+
vn -0.930500 -0.366300 0.000000
|
|
635
|
+
vn -0.916300 -0.400500 0.000000
|
|
636
|
+
vn -0.905300 -0.424700 0.000000
|
|
637
|
+
vn -0.893400 -0.449200 0.000000
|
|
638
|
+
vn 0.000000 -1.000000 -0.000000
|
|
639
|
+
vn 0.130500 0.991400 0.000000
|
|
640
|
+
vn -0.382700 0.923900 0.000000
|
|
641
|
+
vn -0.608800 0.793400 0.000000
|
|
642
|
+
vn -0.793400 0.608800 0.000000
|
|
643
|
+
vn -0.923900 0.382700 0.000000
|
|
644
|
+
vn -0.991400 0.130500 0.000000
|
|
645
|
+
vn -0.993400 -0.115000 0.000000
|
|
646
|
+
vn -0.130500 0.991400 0.000000
|
|
647
|
+
vn 0.608800 0.793400 0.000000
|
|
648
|
+
vn 0.943100 -0.332400 0.000000
|
|
649
|
+
vn 0.930500 -0.366300 0.000000
|
|
650
|
+
vn 0.916300 -0.400500 0.000000
|
|
651
|
+
vn 0.905300 -0.424700 0.000000
|
|
652
|
+
vn 0.893400 -0.449200 0.000000
|
|
653
|
+
vn 0.793400 0.608800 0.000000
|
|
654
|
+
vn 0.923900 0.382700 0.000000
|
|
655
|
+
vn 0.991400 0.130500 0.000000
|
|
656
|
+
vn 0.382700 0.923900 0.000000
|
|
657
|
+
vn -0.555600 0.831500 0.000000
|
|
658
|
+
vn -0.195100 0.980800 0.000000
|
|
659
|
+
vn -0.831500 0.555600 0.000000
|
|
660
|
+
vn 0.195200 0.980800 0.000000
|
|
661
|
+
vn -0.980800 0.195100 0.000000
|
|
662
|
+
vn 0.555700 0.831400 0.000000
|
|
663
|
+
vn -0.980800 -0.195000 0.000000
|
|
664
|
+
vn 0.831600 0.555400 0.000000
|
|
665
|
+
vn -0.831500 -0.555500 0.000000
|
|
666
|
+
vn 0.980800 0.194900 0.000000
|
|
667
|
+
vn -0.555600 -0.831400 0.000000
|
|
668
|
+
vn 0.980800 -0.195200 0.000000
|
|
669
|
+
vn -0.195200 -0.980800 0.000000
|
|
670
|
+
vn 0.831400 -0.555700 0.000000
|
|
671
|
+
vn 0.195000 -0.980800 0.000000
|
|
672
|
+
vn 0.555500 -0.831500 0.000000
|
|
673
|
+
vn -0.000000 -0.042400 0.999100
|
|
674
|
+
vn 0.000200 -0.039200 0.999200
|
|
675
|
+
vn 0.000000 -0.038600 0.999300
|
|
676
|
+
vn -0.000000 -0.044300 0.999000
|
|
677
|
+
vn 0.000000 -0.044100 0.999000
|
|
678
|
+
vn 0.000000 -0.043900 0.999000
|
|
679
|
+
vn 0.000000 -0.042800 0.999100
|
|
680
|
+
vn -0.000200 -0.039200 0.999200
|
|
681
|
+
vn -0.000000 -0.042400 -0.999100
|
|
682
|
+
vn 0.000000 -0.038600 -0.999300
|
|
683
|
+
vn 0.000200 -0.039200 -0.999200
|
|
684
|
+
vn -0.000000 -0.044200 -0.999000
|
|
685
|
+
vn 0.000000 -0.043900 -0.999000
|
|
686
|
+
vn 0.000000 -0.042800 -0.999100
|
|
687
|
+
vn -0.000200 -0.039200 -0.999200
|
|
688
|
+
usemtl Mat
|
|
689
|
+
s off
|
|
690
|
+
f 1/1/1 2/2/1 3/3/1 4/4/1
|
|
691
|
+
f 5/5/2 6/6/2 7/7/2 8/8/2
|
|
692
|
+
f 6/9/3 9/10/3 10/11/3 7/7/3
|
|
693
|
+
f 9/12/4 11/13/4 12/14/4 10/11/4
|
|
694
|
+
f 11/15/5 13/16/5 14/17/5 12/14/5
|
|
695
|
+
f 13/18/6 15/19/6 16/20/6 14/17/6
|
|
696
|
+
f 8/8/7 17/21/7 1/22/7 4/23/7
|
|
697
|
+
f 18/23/8 8/8/8 4/23/8 19/24/8
|
|
698
|
+
f 20/25/9 21/26/9 22/27/9 23/28/9
|
|
699
|
+
f 24/29/10 25/30/10 26/31/10 27/32/10
|
|
700
|
+
f 27/33/11 26/34/11 28/35/11 29/36/11
|
|
701
|
+
f 29/37/12 28/38/12 30/39/12 31/40/12
|
|
702
|
+
f 31/41/13 30/42/13 32/43/13 33/44/13
|
|
703
|
+
f 33/45/14 32/46/14 34/47/14 35/48/14
|
|
704
|
+
f 35/3/1 34/2/1 36/1/1 18/4/1
|
|
705
|
+
f 37/49/15 38/50/15 39/51/15 40/52/15
|
|
706
|
+
f 36/22/7 5/21/7 8/8/7 18/23/7
|
|
707
|
+
f 22/27/9 21/26/9 25/25/9 24/28/9
|
|
708
|
+
f 41/35/11 42/34/11 43/33/11 44/36/11
|
|
709
|
+
f 7/7/2 45/6/2 17/5/2 8/8/2
|
|
710
|
+
f 10/11/3 46/10/3 45/9/3 7/7/3
|
|
711
|
+
f 12/14/4 47/13/4 46/12/4 10/11/4
|
|
712
|
+
f 14/17/5 48/16/5 47/15/5 12/14/5
|
|
713
|
+
f 16/20/6 49/19/6 48/18/6 14/17/6
|
|
714
|
+
f 50/39/12 41/38/12 44/37/12 51/40/12
|
|
715
|
+
f 52/43/16 50/42/16 51/41/16 53/44/16
|
|
716
|
+
f 2/47/14 52/46/14 53/45/14 3/48/14
|
|
717
|
+
f 42/31/10 20/30/10 23/29/10 43/32/10
|
|
718
|
+
f 54/49/17 55/50/17 56/51/17 57/52/17
|
|
719
|
+
f 57/49/7 56/50/7 58/51/7 59/52/7
|
|
720
|
+
f 60/49/1 61/50/1 55/51/1 54/52/1
|
|
721
|
+
f 59/49/7 58/50/7 62/51/7 63/52/7
|
|
722
|
+
f 64/49/18 65/50/18 61/51/18 60/52/18
|
|
723
|
+
f 63/49/17 62/50/17 66/51/17 67/52/17
|
|
724
|
+
f 68/49/19 69/50/19 65/51/19 64/52/19
|
|
725
|
+
f 67/49/1 66/50/1 70/51/1 71/52/1
|
|
726
|
+
f 72/49/20 73/50/20 69/51/20 68/52/20
|
|
727
|
+
f 71/49/18 70/50/18 74/51/18 75/52/18
|
|
728
|
+
f 76/49/21 77/50/21 73/51/21 72/52/21
|
|
729
|
+
f 75/49/19 74/50/19 78/51/19 79/52/19
|
|
730
|
+
f 80/49/12 81/50/12 77/51/12 76/52/12
|
|
731
|
+
f 79/49/20 78/50/20 82/51/20 83/52/20
|
|
732
|
+
f 84/49/12 85/50/12 81/51/12 80/52/12
|
|
733
|
+
f 83/49/21 82/50/21 85/51/21 84/52/21
|
|
734
|
+
f 86/53/22 87/54/22 88/52/22 89/55/22
|
|
735
|
+
f 90/56/23 91/57/23 89/55/23 88/52/23
|
|
736
|
+
f 88/51/22 92/58/22 93/59/22 90/56/22
|
|
737
|
+
f 94/49/24 95/50/24 96/51/24 97/52/24
|
|
738
|
+
f 89/60/25 98/61/25 99/62/25 86/63/25
|
|
739
|
+
f 88/49/26 100/50/26 101/64/26 92/65/26
|
|
740
|
+
f 100/49/27 102/50/27 103/66/27 101/67/27
|
|
741
|
+
f 102/49/28 104/50/28 105/68/28 103/69/28
|
|
742
|
+
f 104/49/29 106/50/29 107/70/29 105/71/29
|
|
743
|
+
f 106/49/30 108/72/30 109/73/30 107/74/30
|
|
744
|
+
f 95/75/31 110/76/31 111/77/31 39/78/31
|
|
745
|
+
f 112/79/32 113/80/32 114/81/32 115/82/32
|
|
746
|
+
f 116/83/33 117/80/33 113/84/33 112/85/33
|
|
747
|
+
f 118/86/34 119/87/34 117/88/34 116/89/34
|
|
748
|
+
f 120/90/35 121/91/35 119/92/35 118/93/35
|
|
749
|
+
f 122/94/36 123/95/36 121/96/36 120/97/36
|
|
750
|
+
f 90/60/25 93/98/25 123/62/25 122/67/25
|
|
751
|
+
f 115/75/31 114/87/31 111/77/31 110/99/31
|
|
752
|
+
f 124/83/33 96/100/33 38/84/33 125/101/33
|
|
753
|
+
f 88/49/26 87/102/26 126/64/26 100/52/26
|
|
754
|
+
f 100/49/27 126/61/27 127/66/27 102/52/27
|
|
755
|
+
f 102/49/28 127/103/28 128/68/28 104/52/28
|
|
756
|
+
f 104/49/29 128/104/29 129/70/29 106/52/29
|
|
757
|
+
f 106/49/30 129/105/30 130/73/30 108/106/30
|
|
758
|
+
f 131/86/34 124/107/34 125/88/34 132/78/34
|
|
759
|
+
f 133/90/37 131/91/37 132/92/37 134/93/37
|
|
760
|
+
f 98/94/36 133/108/36 134/96/36 99/109/36
|
|
761
|
+
f 96/79/32 95/110/32 39/81/32 38/101/32
|
|
762
|
+
f 135/49/38 136/50/38 137/51/38 138/52/38
|
|
763
|
+
f 139/49/22 140/50/22 136/51/22 135/52/22
|
|
764
|
+
f 138/49/25 137/50/25 141/51/25 142/52/25
|
|
765
|
+
f 143/49/22 144/50/22 140/51/22 139/52/22
|
|
766
|
+
f 142/49/39 141/50/39 145/51/39 146/52/39
|
|
767
|
+
f 147/49/38 148/50/38 144/51/38 143/52/38
|
|
768
|
+
f 146/49/40 145/50/40 149/51/40 150/52/40
|
|
769
|
+
f 151/49/25 152/50/25 148/51/25 147/52/25
|
|
770
|
+
f 150/49/41 149/50/41 153/51/41 97/52/41
|
|
771
|
+
f 154/49/39 155/50/39 152/51/39 151/52/39
|
|
772
|
+
f 97/49/24 153/50/24 156/51/24 94/52/24
|
|
773
|
+
f 157/49/40 158/50/40 155/51/40 154/52/40
|
|
774
|
+
f 94/49/34 156/50/34 159/51/34 160/52/34
|
|
775
|
+
f 161/49/41 162/50/41 158/51/41 157/52/41
|
|
776
|
+
f 160/49/34 159/50/34 163/51/34 164/52/34
|
|
777
|
+
f 164/49/24 163/50/24 162/51/24 161/52/24
|
|
778
|
+
f 165/111/42 166/111/42 167/112/42 168/113/42
|
|
779
|
+
f 169/114/43 170/114/43 171/115/43 172/116/43
|
|
780
|
+
f 173/117/44 174/118/44 166/119/44 165/120/44
|
|
781
|
+
f 175/121/45 176/122/45 170/123/45 169/124/45
|
|
782
|
+
f 177/125/46 178/126/46 176/127/46 175/128/46
|
|
783
|
+
f 179/129/47 180/130/47 178/131/47 177/132/47
|
|
784
|
+
f 181/133/48 182/134/48 180/135/48 179/136/48
|
|
785
|
+
f 183/137/49 184/80/49 182/68/49 181/101/49
|
|
786
|
+
f 185/138/50 186/139/50 184/140/50 183/141/50
|
|
787
|
+
f 187/142/51 188/142/51 189/143/51 190/143/51
|
|
788
|
+
f 191/144/52 192/144/52 193/145/52 194/145/52
|
|
789
|
+
f 195/146/53 196/146/53 192/147/53 191/147/53
|
|
790
|
+
f 197/148/54 198/148/54 196/149/54 195/149/54
|
|
791
|
+
f 199/150/55 200/150/55 198/151/55 197/151/55
|
|
792
|
+
f 201/152/56 202/152/56 200/153/56 199/153/56
|
|
793
|
+
f 172/154/57 171/154/57 202/155/57 201/155/57
|
|
794
|
+
f 194/156/58 193/157/58 188/158/58 187/159/58
|
|
795
|
+
f 203/156/59 204/157/59 205/158/59 206/159/59
|
|
796
|
+
f 168/121/60 167/122/60 207/123/60 208/124/60
|
|
797
|
+
f 208/125/61 207/126/61 209/127/61 210/128/61
|
|
798
|
+
f 210/129/62 209/130/62 211/131/62 212/132/62
|
|
799
|
+
f 212/133/63 211/134/63 213/135/63 214/136/63
|
|
800
|
+
f 215/138/50 216/139/50 186/140/50 185/141/50
|
|
801
|
+
f 214/137/64 213/80/64 216/68/64 215/101/64
|
|
802
|
+
f 206/156/65 205/157/65 217/158/65 218/159/65
|
|
803
|
+
f 218/156/66 217/157/66 219/158/66 220/159/66
|
|
804
|
+
f 220/156/67 219/157/67 174/158/67 173/159/67
|
|
805
|
+
f 190/156/68 189/157/68 204/158/68 203/159/68
|
|
806
|
+
f 221/160/69 222/161/69 223/162/69 224/163/69
|
|
807
|
+
f 225/160/70 226/161/70 222/162/70 221/163/70
|
|
808
|
+
f 224/164/71 223/164/71 227/165/71 228/166/71
|
|
809
|
+
f 229/167/72 230/164/72 226/165/72 225/165/72
|
|
810
|
+
f 228/164/73 227/164/73 231/165/73 232/166/73
|
|
811
|
+
f 233/167/74 234/164/74 230/165/74 229/165/74
|
|
812
|
+
f 232/164/75 231/164/75 235/165/75 236/166/75
|
|
813
|
+
f 237/167/76 238/164/76 234/165/76 233/165/76
|
|
814
|
+
f 236/164/77 235/164/77 239/165/77 240/166/77
|
|
815
|
+
f 241/167/78 242/164/78 238/165/78 237/165/78
|
|
816
|
+
f 240/164/79 239/164/79 243/165/79 244/166/79
|
|
817
|
+
f 245/167/80 246/164/80 242/165/80 241/165/80
|
|
818
|
+
f 244/164/81 243/164/81 247/165/81 248/166/81
|
|
819
|
+
f 249/167/82 250/164/82 246/165/82 245/165/82
|
|
820
|
+
f 248/164/83 247/164/83 251/165/83 252/166/83
|
|
821
|
+
f 252/167/84 251/164/84 250/165/84 249/165/84
|
|
822
|
+
f 253/49/42 254/50/42 255/51/42 256/52/42
|
|
823
|
+
f 257/49/42 258/50/42 259/51/42 260/52/42
|
|
824
|
+
f 261/49/43 262/50/43 263/51/43 264/52/43
|
|
825
|
+
f 265/49/43 266/50/43 267/51/43 268/52/43
|
|
826
|
+
f 269/49/44 270/50/44 254/51/44 253/52/44
|
|
827
|
+
f 260/49/44 259/50/44 271/51/44 272/52/44
|
|
828
|
+
f 273/49/45 274/50/45 262/51/45 261/52/45
|
|
829
|
+
f 268/49/45 267/50/45 275/51/45 276/52/45
|
|
830
|
+
f 277/49/46 278/50/46 274/51/46 273/52/46
|
|
831
|
+
f 276/49/46 275/50/46 279/51/46 280/52/46
|
|
832
|
+
f 281/49/47 282/50/47 278/51/47 277/52/47
|
|
833
|
+
f 280/49/47 279/50/47 283/51/47 284/52/47
|
|
834
|
+
f 285/49/48 286/50/48 282/51/48 281/52/48
|
|
835
|
+
f 284/49/48 283/50/48 287/51/48 288/52/48
|
|
836
|
+
f 289/49/49 290/50/49 286/51/49 285/52/49
|
|
837
|
+
f 288/49/49 287/50/49 291/51/49 292/52/49
|
|
838
|
+
f 293/49/50 294/50/50 290/51/50 289/52/50
|
|
839
|
+
f 292/49/50 291/50/50 295/51/50 296/52/50
|
|
840
|
+
f 297/49/51 298/50/51 299/51/51 40/52/51
|
|
841
|
+
f 300/49/51 301/50/51 302/51/51 303/52/51
|
|
842
|
+
f 304/49/52 305/50/52 306/51/52 307/52/52
|
|
843
|
+
f 308/49/52 309/50/52 310/51/52 311/52/52
|
|
844
|
+
f 312/49/53 313/50/53 305/51/53 304/52/53
|
|
845
|
+
f 311/49/53 310/50/53 314/51/53 315/52/53
|
|
846
|
+
f 316/49/54 317/50/54 313/51/54 312/52/54
|
|
847
|
+
f 315/49/54 314/50/54 318/51/54 319/52/54
|
|
848
|
+
f 320/49/55 321/50/55 317/51/55 316/52/55
|
|
849
|
+
f 319/49/55 318/50/55 322/51/55 323/52/55
|
|
850
|
+
f 324/49/56 325/50/56 321/51/56 320/52/56
|
|
851
|
+
f 323/49/56 322/50/56 326/51/56 327/52/56
|
|
852
|
+
f 264/49/57 263/50/57 325/51/57 324/52/57
|
|
853
|
+
f 327/49/57 326/50/57 266/51/57 265/52/57
|
|
854
|
+
f 307/49/58 306/50/58 298/51/58 297/52/58
|
|
855
|
+
f 303/49/58 302/50/58 309/51/58 308/52/58
|
|
856
|
+
f 37/49/59 328/50/59 329/51/59 330/52/59
|
|
857
|
+
f 331/49/59 332/50/59 333/51/59 334/52/59
|
|
858
|
+
f 256/49/60 255/50/60 335/51/60 336/52/60
|
|
859
|
+
f 337/49/60 338/50/60 258/51/60 257/52/60
|
|
860
|
+
f 336/49/61 335/50/61 339/51/61 340/52/61
|
|
861
|
+
f 341/49/61 342/50/61 338/51/61 337/52/61
|
|
862
|
+
f 340/49/62 339/50/62 343/51/62 344/52/62
|
|
863
|
+
f 345/49/62 346/50/62 342/51/62 341/52/62
|
|
864
|
+
f 344/49/63 343/50/63 347/51/63 348/52/63
|
|
865
|
+
f 349/49/63 350/50/63 346/51/63 345/52/63
|
|
866
|
+
f 351/49/50 352/50/50 294/51/50 293/52/50
|
|
867
|
+
f 296/49/50 295/50/50 353/51/50 354/52/50
|
|
868
|
+
f 348/49/64 347/50/64 352/51/64 351/52/64
|
|
869
|
+
f 354/49/64 353/50/64 350/51/64 349/52/64
|
|
870
|
+
f 330/49/65 329/50/65 355/51/65 356/52/65
|
|
871
|
+
f 357/49/65 358/50/65 332/51/65 331/52/65
|
|
872
|
+
f 356/49/66 355/50/66 359/51/66 360/52/66
|
|
873
|
+
f 361/49/66 362/50/66 358/51/66 357/52/66
|
|
874
|
+
f 360/49/67 359/50/67 270/51/67 269/52/67
|
|
875
|
+
f 272/49/67 271/50/67 362/51/67 361/52/67
|
|
876
|
+
f 40/49/68 299/50/68 328/51/68 37/52/68
|
|
877
|
+
f 334/49/68 333/50/68 301/51/68 300/52/68
|
|
878
|
+
f 136/49/69 363/50/69 364/51/69 137/52/69
|
|
879
|
+
f 55/49/69 365/50/69 366/51/69 56/52/69
|
|
880
|
+
f 140/49/70 367/50/70 363/51/70 136/52/70
|
|
881
|
+
f 56/49/70 366/50/70 368/51/70 58/52/70
|
|
882
|
+
f 137/49/71 364/50/71 369/51/71 141/52/71
|
|
883
|
+
f 61/49/71 370/50/71 365/51/71 55/52/71
|
|
884
|
+
f 144/49/72 371/50/72 367/51/72 140/52/72
|
|
885
|
+
f 58/49/72 368/50/72 372/51/72 62/52/72
|
|
886
|
+
f 141/49/73 369/50/73 373/51/73 145/52/73
|
|
887
|
+
f 65/49/73 374/50/73 370/51/73 61/52/73
|
|
888
|
+
f 148/49/74 375/50/74 371/51/74 144/52/74
|
|
889
|
+
f 62/49/74 372/50/74 376/51/74 66/52/74
|
|
890
|
+
f 145/49/75 373/50/75 377/51/75 149/52/75
|
|
891
|
+
f 69/49/75 378/50/75 374/51/75 65/52/75
|
|
892
|
+
f 152/49/76 379/50/76 375/51/76 148/52/76
|
|
893
|
+
f 66/49/76 376/50/76 380/51/76 70/52/76
|
|
894
|
+
f 149/49/77 377/50/77 381/51/77 153/52/77
|
|
895
|
+
f 73/49/77 382/50/77 378/51/77 69/52/77
|
|
896
|
+
f 155/49/78 383/50/78 379/51/78 152/52/78
|
|
897
|
+
f 70/49/78 380/50/78 384/51/78 74/52/78
|
|
898
|
+
f 153/49/79 381/50/79 385/51/79 156/52/79
|
|
899
|
+
f 77/49/79 386/50/79 382/51/79 73/52/79
|
|
900
|
+
f 158/49/80 387/50/80 383/51/80 155/52/80
|
|
901
|
+
f 74/49/80 384/50/80 388/51/80 78/52/80
|
|
902
|
+
f 156/49/81 385/50/81 389/51/81 159/52/81
|
|
903
|
+
f 81/49/81 390/50/81 386/51/81 77/52/81
|
|
904
|
+
f 162/49/82 391/50/82 387/51/82 158/52/82
|
|
905
|
+
f 78/49/82 388/50/82 392/51/82 82/52/82
|
|
906
|
+
f 159/49/83 389/50/83 393/51/83 163/52/83
|
|
907
|
+
f 85/49/83 394/50/83 390/51/83 81/52/83
|
|
908
|
+
f 163/49/84 393/50/84 391/51/84 162/52/84
|
|
909
|
+
f 82/49/84 392/50/84 394/51/84 85/52/84
|
|
910
|
+
f 254/49/42 165/50/42 168/51/42 255/52/42
|
|
911
|
+
f 258/49/42 167/50/42 166/51/42 259/52/42
|
|
912
|
+
f 262/49/43 169/50/43 172/51/43 263/52/43
|
|
913
|
+
f 266/49/43 171/50/43 170/51/43 267/52/43
|
|
914
|
+
f 270/49/44 173/50/44 165/51/44 254/52/44
|
|
915
|
+
f 259/49/44 166/50/44 174/51/44 271/52/44
|
|
916
|
+
f 274/49/45 175/50/45 169/51/45 262/52/45
|
|
917
|
+
f 267/49/45 170/50/45 176/51/45 275/52/45
|
|
918
|
+
f 278/49/46 177/50/46 175/51/46 274/52/46
|
|
919
|
+
f 275/49/46 176/50/46 178/51/46 279/52/46
|
|
920
|
+
f 282/49/47 179/50/47 177/51/47 278/52/47
|
|
921
|
+
f 279/49/47 178/50/47 180/51/47 283/52/47
|
|
922
|
+
f 286/49/48 181/50/48 179/51/48 282/52/48
|
|
923
|
+
f 283/49/48 180/50/48 182/51/48 287/52/48
|
|
924
|
+
f 290/49/49 183/50/49 181/51/49 286/52/49
|
|
925
|
+
f 287/49/49 182/50/49 184/51/49 291/52/49
|
|
926
|
+
f 294/49/50 185/50/50 183/51/50 290/52/50
|
|
927
|
+
f 291/49/50 184/50/50 186/51/50 295/52/50
|
|
928
|
+
f 298/49/51 187/50/51 190/51/51 299/52/51
|
|
929
|
+
f 301/49/51 189/50/51 188/51/51 302/52/51
|
|
930
|
+
f 305/49/52 191/50/52 194/51/52 306/52/52
|
|
931
|
+
f 309/49/52 193/50/52 192/51/52 310/52/52
|
|
932
|
+
f 313/49/53 195/50/53 191/51/53 305/52/53
|
|
933
|
+
f 310/49/53 192/50/53 196/51/53 314/52/53
|
|
934
|
+
f 317/49/54 197/50/54 195/51/54 313/52/54
|
|
935
|
+
f 314/49/54 196/50/54 198/51/54 318/52/54
|
|
936
|
+
f 321/49/55 199/50/55 197/51/55 317/52/55
|
|
937
|
+
f 318/49/55 198/50/55 200/51/55 322/52/55
|
|
938
|
+
f 325/49/56 201/50/56 199/51/56 321/52/56
|
|
939
|
+
f 322/49/56 200/50/56 202/51/56 326/52/56
|
|
940
|
+
f 263/49/57 172/50/57 201/51/57 325/52/57
|
|
941
|
+
f 326/49/57 202/50/57 171/51/57 266/52/57
|
|
942
|
+
f 306/49/58 194/50/58 187/51/58 298/52/58
|
|
943
|
+
f 302/49/58 188/50/58 193/51/58 309/52/58
|
|
944
|
+
f 328/49/59 203/50/59 206/51/59 329/52/59
|
|
945
|
+
f 332/49/59 205/50/59 204/51/59 333/52/59
|
|
946
|
+
f 255/49/60 168/50/60 208/51/60 335/52/60
|
|
947
|
+
f 338/49/60 207/50/60 167/51/60 258/52/60
|
|
948
|
+
f 335/49/61 208/50/61 210/51/61 339/52/61
|
|
949
|
+
f 342/49/61 209/50/61 207/51/61 338/52/61
|
|
950
|
+
f 339/49/62 210/50/62 212/51/62 343/52/62
|
|
951
|
+
f 346/49/62 211/50/62 209/51/62 342/52/62
|
|
952
|
+
f 343/49/63 212/50/63 214/51/63 347/52/63
|
|
953
|
+
f 350/49/63 213/50/63 211/51/63 346/52/63
|
|
954
|
+
f 352/49/50 215/50/50 185/51/50 294/52/50
|
|
955
|
+
f 295/49/50 186/50/50 216/51/50 353/52/50
|
|
956
|
+
f 347/49/64 214/50/64 215/51/64 352/52/64
|
|
957
|
+
f 353/49/64 216/50/64 213/51/64 350/52/64
|
|
958
|
+
f 329/49/65 206/50/65 218/51/65 355/52/65
|
|
959
|
+
f 358/49/65 217/50/65 205/51/65 332/52/65
|
|
960
|
+
f 355/49/66 218/50/66 220/51/66 359/52/66
|
|
961
|
+
f 362/49/66 219/50/66 217/51/66 358/52/66
|
|
962
|
+
f 359/49/67 220/50/67 173/51/67 270/52/67
|
|
963
|
+
f 271/49/67 174/50/67 219/51/67 362/52/67
|
|
964
|
+
f 299/49/68 190/50/68 203/51/68 328/52/68
|
|
965
|
+
f 333/49/68 204/50/68 189/51/68 301/52/68
|
|
966
|
+
f 363/49/69 221/50/69 224/51/69 364/52/69
|
|
967
|
+
f 365/49/69 223/50/69 222/51/69 366/52/69
|
|
968
|
+
f 367/49/70 225/50/70 221/51/70 363/52/70
|
|
969
|
+
f 366/49/70 222/50/70 226/51/70 368/52/70
|
|
970
|
+
f 364/49/71 224/50/71 228/51/71 369/52/71
|
|
971
|
+
f 370/49/71 227/50/71 223/51/71 365/52/71
|
|
972
|
+
f 371/49/72 229/50/72 225/51/72 367/52/72
|
|
973
|
+
f 368/49/72 226/50/72 230/51/72 372/52/72
|
|
974
|
+
f 369/49/73 228/50/73 232/51/73 373/52/73
|
|
975
|
+
f 374/49/73 231/50/73 227/51/73 370/52/73
|
|
976
|
+
f 375/49/74 233/50/74 229/51/74 371/52/74
|
|
977
|
+
f 372/49/74 230/50/74 234/51/74 376/52/74
|
|
978
|
+
f 373/49/75 232/50/75 236/51/75 377/52/75
|
|
979
|
+
f 378/49/75 235/50/75 231/51/75 374/52/75
|
|
980
|
+
f 379/49/76 237/50/76 233/51/76 375/52/76
|
|
981
|
+
f 376/49/76 234/50/76 238/51/76 380/52/76
|
|
982
|
+
f 377/49/77 236/50/77 240/51/77 381/52/77
|
|
983
|
+
f 382/49/77 239/50/77 235/51/77 378/52/77
|
|
984
|
+
f 383/49/78 241/50/78 237/51/78 379/52/78
|
|
985
|
+
f 380/49/78 238/50/78 242/51/78 384/52/78
|
|
986
|
+
f 381/49/79 240/50/79 244/51/79 385/52/79
|
|
987
|
+
f 386/49/79 243/50/79 239/51/79 382/52/79
|
|
988
|
+
f 387/49/80 245/50/80 241/51/80 383/52/80
|
|
989
|
+
f 384/49/80 242/50/80 246/51/80 388/52/80
|
|
990
|
+
f 385/49/81 244/50/81 248/51/81 389/52/81
|
|
991
|
+
f 390/49/81 247/50/81 243/51/81 386/52/81
|
|
992
|
+
f 391/49/82 249/50/82 245/51/82 387/52/82
|
|
993
|
+
f 388/49/82 246/50/82 250/51/82 392/52/82
|
|
994
|
+
f 389/49/83 248/50/83 252/51/83 393/52/83
|
|
995
|
+
f 394/49/83 251/50/83 247/51/83 390/52/83
|
|
996
|
+
f 393/49/84 252/50/84 249/51/84 391/52/84
|
|
997
|
+
f 392/49/84 250/50/84 251/51/84 394/52/84
|
|
998
|
+
f 260/168/17 1/1/17 17/51/17 257/52/17
|
|
999
|
+
f 59/49/7 19/50/7 4/4/7 57/169/7
|
|
1000
|
+
f 63/49/7 18/50/7 19/51/7 59/52/7
|
|
1001
|
+
f 268/170/17 5/5/17 36/51/17 265/52/17
|
|
1002
|
+
f 272/49/85 2/50/85 1/51/85 260/52/85
|
|
1003
|
+
f 57/49/17 4/50/17 3/51/17 54/52/17
|
|
1004
|
+
f 276/49/2 6/50/2 5/51/2 268/52/2
|
|
1005
|
+
f 280/49/3 9/50/3 6/51/3 276/52/3
|
|
1006
|
+
f 284/49/4 11/50/4 9/51/4 280/52/4
|
|
1007
|
+
f 288/49/5 13/50/5 11/51/5 284/52/5
|
|
1008
|
+
f 292/49/86 15/50/86 13/51/86 288/52/86
|
|
1009
|
+
f 296/49/87 16/50/87 15/51/87 292/52/87
|
|
1010
|
+
f 303/49/88 21/50/88 20/51/88 300/52/88
|
|
1011
|
+
f 76/49/12 23/50/12 22/51/12 80/52/12
|
|
1012
|
+
f 84/49/12 24/50/12 27/51/12 83/52/12
|
|
1013
|
+
f 311/49/89 26/50/89 25/51/89 308/52/89
|
|
1014
|
+
f 83/49/20 27/50/20 29/51/20 79/52/20
|
|
1015
|
+
f 315/49/90 28/50/90 26/51/90 311/52/90
|
|
1016
|
+
f 79/49/91 29/50/91 31/51/91 75/52/91
|
|
1017
|
+
f 319/49/10 30/50/10 28/51/10 315/52/10
|
|
1018
|
+
f 75/49/18 31/50/18 33/51/18 71/52/18
|
|
1019
|
+
f 323/49/12 32/50/12 30/51/12 319/52/12
|
|
1020
|
+
f 71/49/1 33/50/1 35/51/1 67/52/1
|
|
1021
|
+
f 327/49/91 34/50/91 32/51/91 323/52/91
|
|
1022
|
+
f 67/49/17 35/50/17 18/23/17 63/171/17
|
|
1023
|
+
f 265/168/85 36/22/85 34/51/85 327/52/85
|
|
1024
|
+
f 80/172/12 22/27/12 24/28/12 84/173/12
|
|
1025
|
+
f 308/174/88 25/25/88 21/26/88 303/175/88
|
|
1026
|
+
f 334/176/90 42/34/90 41/35/90 331/177/90
|
|
1027
|
+
f 68/178/20 44/36/20 43/33/20 72/179/20
|
|
1028
|
+
f 257/170/2 17/5/2 45/6/2 337/180/2
|
|
1029
|
+
f 337/180/3 45/9/3 46/10/3 341/181/3
|
|
1030
|
+
f 341/181/4 46/12/4 47/13/4 345/182/4
|
|
1031
|
+
f 345/182/5 47/15/5 48/16/5 349/183/5
|
|
1032
|
+
f 354/50/87 49/19/87 16/20/87 296/51/87
|
|
1033
|
+
f 349/183/92 48/18/92 49/19/92 354/50/92
|
|
1034
|
+
f 331/177/10 41/38/10 50/39/10 357/184/10
|
|
1035
|
+
f 64/185/91 51/40/91 44/37/91 68/178/91
|
|
1036
|
+
f 357/184/12 50/42/12 52/43/12 361/186/12
|
|
1037
|
+
f 60/187/18 53/44/18 51/41/18 64/185/18
|
|
1038
|
+
f 361/186/91 52/46/91 2/47/91 272/188/91
|
|
1039
|
+
f 54/189/1 3/48/1 53/45/1 60/187/1
|
|
1040
|
+
f 300/174/89 20/30/89 42/31/89 334/176/89
|
|
1041
|
+
f 72/179/12 43/32/12 23/29/12 76/173/12
|
|
1042
|
+
f 135/49/22 89/50/22 91/51/22 139/52/22
|
|
1043
|
+
f 256/49/38 87/50/38 86/51/38 253/52/38
|
|
1044
|
+
f 139/49/22 91/50/22 90/51/22 143/52/22
|
|
1045
|
+
f 264/49/38 93/50/38 92/51/38 261/52/38
|
|
1046
|
+
f 138/49/38 98/50/38 89/55/38 135/190/38
|
|
1047
|
+
f 253/50/93 86/53/93 99/51/93 269/52/93
|
|
1048
|
+
f 261/49/26 92/50/26 101/51/26 273/52/26
|
|
1049
|
+
f 273/49/27 101/50/27 103/51/27 277/52/27
|
|
1050
|
+
f 277/49/28 103/50/28 105/51/28 281/52/28
|
|
1051
|
+
f 281/49/29 105/50/29 107/51/29 285/52/29
|
|
1052
|
+
f 289/49/94 109/50/94 108/51/94 293/52/94
|
|
1053
|
+
f 285/49/95 107/50/95 109/51/95 289/52/95
|
|
1054
|
+
f 160/49/34 110/50/34 95/51/34 94/52/34
|
|
1055
|
+
f 40/49/96 39/50/96 111/51/96 297/52/96
|
|
1056
|
+
f 161/49/34 112/50/34 115/51/34 164/52/34
|
|
1057
|
+
f 307/49/15 114/50/15 113/51/15 304/52/15
|
|
1058
|
+
f 157/49/41 116/50/41 112/51/41 161/52/41
|
|
1059
|
+
f 304/49/97 113/50/97 117/51/97 312/52/97
|
|
1060
|
+
f 154/49/98 118/50/98 116/51/98 157/52/98
|
|
1061
|
+
f 312/49/32 117/50/32 119/51/32 316/52/32
|
|
1062
|
+
f 151/49/39 120/50/39 118/51/39 154/52/39
|
|
1063
|
+
f 316/49/34 119/50/34 121/51/34 320/52/34
|
|
1064
|
+
f 147/49/25 122/50/25 120/51/25 151/52/25
|
|
1065
|
+
f 320/49/98 121/50/98 123/51/98 324/52/98
|
|
1066
|
+
f 143/49/38 90/50/38 122/51/38 147/52/38
|
|
1067
|
+
f 324/49/93 123/50/93 93/51/93 264/52/93
|
|
1068
|
+
f 164/49/34 115/50/34 110/51/34 160/52/34
|
|
1069
|
+
f 297/49/96 111/50/96 114/51/96 307/52/96
|
|
1070
|
+
f 97/49/41 96/50/41 124/51/41 150/52/41
|
|
1071
|
+
f 330/49/97 125/50/97 38/51/97 37/52/97
|
|
1072
|
+
f 336/49/26 126/50/26 87/51/26 256/52/26
|
|
1073
|
+
f 340/49/27 127/50/27 126/51/27 336/52/27
|
|
1074
|
+
f 344/49/28 128/50/28 127/51/28 340/52/28
|
|
1075
|
+
f 348/49/29 129/50/29 128/51/29 344/52/29
|
|
1076
|
+
f 351/49/99 130/50/99 129/51/99 348/52/99
|
|
1077
|
+
f 293/49/94 108/50/94 130/51/94 351/52/94
|
|
1078
|
+
f 150/49/98 124/50/98 131/51/98 146/52/98
|
|
1079
|
+
f 356/49/32 132/50/32 125/51/32 330/52/32
|
|
1080
|
+
f 146/49/39 131/50/39 133/51/39 142/52/39
|
|
1081
|
+
f 360/49/34 134/50/34 132/51/34 356/52/34
|
|
1082
|
+
f 142/49/25 133/50/25 98/51/25 138/52/25
|
|
1083
|
+
f 269/49/98 99/50/98 134/51/98 360/52/98
|