@realsee/dnalogel 0.1.7 → 2.0.0-alpha.3
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/README.md +6 -89
- package/dist/dnalogel.cjs.js +2 -0
- package/dist/dnalogel.es.js +37288 -0
- package/dist/dnalogel.umd.js +2 -0
- package/dist/style.css +1 -0
- package/{plugins → libs}/CSS3DRenderPlugin/index.d.ts +1 -1
- package/libs/CSS3DRenderPlugin/index.js +181 -0
- package/libs/CSS3DRenderPlugin/utils/createResizeObserver.d.ts +7 -0
- package/libs/CSS3DRenderPlugin/utils/createResizeObserver.js +18 -0
- package/{plugins → libs}/CameraMovementPlugin/index.d.ts +0 -0
- package/libs/CameraMovementPlugin/index.js +159 -0
- package/{plugins → libs}/CameraMovementPlugin/typing.d.ts +0 -0
- package/libs/CameraMovementPlugin/typing.js +17 -0
- package/{plugins → libs}/ModelChassisCompassPlugin/index.d.ts +1 -1
- package/libs/ModelChassisCompassPlugin/index.js +75 -0
- package/{plugins → libs}/ModelEntryDoorGuidePlugin/index.d.ts +6 -2
- package/libs/ModelEntryDoorGuidePlugin/index.js +136 -0
- package/libs/ModelRoomLabelPlugin/Assets/roomLabelBg.d.ts +1 -0
- package/libs/ModelRoomLabelPlugin/Assets/roomLabelBg.js +1 -0
- package/{plugins → libs}/ModelRoomLabelPlugin/Controller.d.ts +3 -2
- package/libs/ModelRoomLabelPlugin/Controller.js +100 -0
- package/libs/ModelRoomLabelPlugin/RoomLabelItem.svelte +63 -0
- package/libs/ModelRoomLabelPlugin/RoomLabelItem.svelte.map +1 -0
- package/libs/ModelRoomLabelPlugin/RoomLabelItems.svelte +80 -0
- package/libs/ModelRoomLabelPlugin/RoomLabelItems.svelte.map +1 -0
- package/libs/ModelRoomLabelPlugin/index.d.ts +12 -0
- package/libs/ModelRoomLabelPlugin/index.js +9 -0
- package/{plugins → libs}/ModelRoomLabelPlugin/typings.d.ts +2 -2
- package/libs/ModelRoomLabelPlugin/typings.js +1 -0
- package/{plugins → libs}/ModelRoomLabelPlugin/utils/parseData.d.ts +0 -0
- package/libs/ModelRoomLabelPlugin/utils/parseData.js +14 -0
- package/{plugins → libs}/ModelViewPlugin/index.d.ts +0 -0
- package/libs/ModelViewPlugin/index.js +160 -0
- package/libs/PanoCompassPlugin/index.d.ts +25 -0
- package/libs/PanoCompassPlugin/index.js +89 -0
- package/{plugins → libs}/PanoCursorRaycasterPlugin/index.d.ts +2 -3
- package/libs/PanoCursorRaycasterPlugin/index.js +74 -0
- package/libs/floorplan/Assets/camera.d.ts +1 -0
- package/libs/floorplan/Assets/camera.js +1 -0
- package/libs/floorplan/Assets/floorplanExtraObject.d.ts +1 -0
- package/libs/floorplan/Assets/floorplanExtraObject.js +1 -0
- package/libs/floorplan/Components/BaseImage.svelte +25 -0
- package/libs/floorplan/Components/BaseImage.svelte.map +1 -0
- package/libs/floorplan/Components/Normalmage.svelte +11 -0
- package/libs/floorplan/Components/Normalmage.svelte.map +1 -0
- package/libs/floorplan/Components/RoomHighlight/Room.svelte +21 -0
- package/libs/floorplan/Components/RoomHighlight/Room.svelte.map +1 -0
- package/libs/floorplan/Components/RoomHighlight/RoomHighlight.svelte +60 -0
- package/libs/floorplan/Components/RoomHighlight/RoomHighlight.svelte.map +1 -0
- package/libs/floorplan/Components/RoomMaterials/RoomMaterial.svelte +35 -0
- package/libs/floorplan/Components/RoomMaterials/RoomMaterial.svelte.map +1 -0
- package/libs/floorplan/Components/RoomMaterials/RoomMaterial_0.svelte +7 -0
- package/libs/floorplan/Components/RoomMaterials/RoomMaterial_0.svelte.map +1 -0
- package/libs/floorplan/Components/RoomMaterials/RoomMaterial_1.svelte +16 -0
- package/libs/floorplan/Components/RoomMaterials/RoomMaterial_1.svelte.map +1 -0
- package/libs/floorplan/Components/RoomMaterials/RoomMaterial_2.svelte +17 -0
- package/libs/floorplan/Components/RoomMaterials/RoomMaterial_2.svelte.map +1 -0
- package/libs/floorplan/Components/SvgImage.svelte +25 -0
- package/libs/floorplan/Components/SvgImage.svelte.map +1 -0
- package/libs/floorplan/ModelFloorplanPlugin/Assets/compass.d.ts +1 -0
- package/libs/floorplan/ModelFloorplanPlugin/Assets/compass.js +1 -0
- package/libs/floorplan/ModelFloorplanPlugin/Components/Camera.svelte +46 -0
- package/libs/floorplan/ModelFloorplanPlugin/Components/Camera.svelte.map +1 -0
- package/libs/floorplan/ModelFloorplanPlugin/Components/Compass.svelte +48 -0
- package/libs/floorplan/ModelFloorplanPlugin/Components/Compass.svelte.map +1 -0
- package/libs/floorplan/ModelFloorplanPlugin/Components/CurrentFloor/CurrentFloor.svelte +37 -0
- package/libs/floorplan/ModelFloorplanPlugin/Components/CurrentFloor/CurrentFloor.svelte.map +1 -0
- package/libs/floorplan/ModelFloorplanPlugin/Components/Main.svelte +50 -0
- package/libs/floorplan/ModelFloorplanPlugin/Components/Main.svelte.map +1 -0
- package/libs/floorplan/ModelFloorplanPlugin/Components/RoomLabels/RoomLabel.svelte +41 -0
- package/libs/floorplan/ModelFloorplanPlugin/Components/RoomLabels/RoomLabel.svelte.map +1 -0
- package/libs/floorplan/ModelFloorplanPlugin/Components/RoomLabels/RoomLabels.svelte +25 -0
- package/libs/floorplan/ModelFloorplanPlugin/Components/RoomLabels/RoomLabels.svelte.map +1 -0
- package/libs/floorplan/ModelFloorplanPlugin/Components/RuleLabels/RuleItem.svelte +148 -0
- package/libs/floorplan/ModelFloorplanPlugin/Components/RuleLabels/RuleItem.svelte.map +1 -0
- package/libs/floorplan/ModelFloorplanPlugin/Components/RuleLabels/RuleLabels.svelte +15 -0
- package/libs/floorplan/ModelFloorplanPlugin/Components/RuleLabels/RuleLabels.svelte.map +1 -0
- package/{plugins → libs}/floorplan/ModelFloorplanPlugin/Controller.d.ts +16 -14
- package/libs/floorplan/ModelFloorplanPlugin/Controller.js +357 -0
- package/{plugins → libs}/floorplan/ModelFloorplanPlugin/index.d.ts +1 -1
- package/libs/floorplan/ModelFloorplanPlugin/index.js +5 -0
- package/{plugins → libs}/floorplan/ModelFloorplanPlugin/typings/events.type.d.ts +0 -0
- package/libs/floorplan/ModelFloorplanPlugin/typings/events.type.js +1 -0
- package/{plugins → libs}/floorplan/ModelFloorplanPlugin/utils/constant.d.ts +1 -1
- package/libs/floorplan/ModelFloorplanPlugin/utils/constant.js +16 -0
- package/{plugins → libs}/floorplan/ModelFloorplanPlugin/utils/correctFiveState.d.ts +0 -0
- package/libs/floorplan/ModelFloorplanPlugin/utils/correctFiveState.js +46 -0
- package/libs/floorplan/PanoFloorplanRadarPlugin/Components/Camera.svelte +84 -0
- package/libs/floorplan/PanoFloorplanRadarPlugin/Components/Camera.svelte.map +1 -0
- package/libs/floorplan/PanoFloorplanRadarPlugin/Components/CurrentFloor/CurrentFloor.svelte +18 -0
- package/libs/floorplan/PanoFloorplanRadarPlugin/Components/CurrentFloor/CurrentFloor.svelte.map +1 -0
- package/libs/floorplan/PanoFloorplanRadarPlugin/Components/CurrentFloor/ExtraObjects.svelte +40 -0
- package/libs/floorplan/PanoFloorplanRadarPlugin/Components/CurrentFloor/ExtraObjects.svelte.map +1 -0
- package/libs/floorplan/PanoFloorplanRadarPlugin/Components/Main.svelte +61 -0
- package/libs/floorplan/PanoFloorplanRadarPlugin/Components/Main.svelte.map +1 -0
- package/{plugins → libs}/floorplan/PanoFloorplanRadarPlugin/Controller.d.ts +6 -11
- package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +88 -0
- package/{plugins → libs}/floorplan/PanoFloorplanRadarPlugin/index.d.ts +0 -0
- package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +5 -0
- package/{plugins → libs}/floorplan/TopviewFloorplanPlugin/Controller.d.ts +15 -11
- package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +189 -0
- package/{plugins → libs}/floorplan/TopviewFloorplanPlugin/index.d.ts +0 -0
- package/libs/floorplan/TopviewFloorplanPlugin/index.js +5 -0
- package/{plugins → libs}/floorplan/TopviewFloorplanPlugin/style.d.ts +0 -0
- package/libs/floorplan/TopviewFloorplanPlugin/style.js +8 -0
- package/{plugins → libs}/floorplan/typings/floorplanData.d.ts +6 -0
- package/libs/floorplan/typings/floorplanData.js +6 -0
- package/{plugins → libs}/floorplan/typings/floorplanServerData.d.ts +4 -2
- package/libs/floorplan/typings/floorplanServerData.js +101 -0
- package/libs/floorplan/typings/utility.d.ts +2 -0
- package/libs/floorplan/typings/utility.js +1 -0
- package/{plugins → libs}/floorplan/utils/formatData.d.ts +3 -3
- package/libs/floorplan/utils/formatData.js +94 -0
- package/{plugins → libs}/floorplan/utils/formatPosition.d.ts +3 -4
- package/libs/floorplan/utils/formatPosition.js +50 -0
- package/libs/index.d.ts +19 -0
- package/libs/index.js +11 -0
- package/{shared-utils → libs/shared-utils}/Preloader.d.ts +0 -0
- package/libs/shared-utils/Preloader.js +38 -0
- package/{shared-utils → libs/shared-utils}/Subscribe.d.ts +3 -3
- package/libs/shared-utils/Subscribe.js +101 -0
- package/{shared-utils → libs/shared-utils}/animationFrame/BetterTween.d.ts +0 -0
- package/libs/shared-utils/animationFrame/BetterTween.js +30 -0
- package/{shared-utils → libs/shared-utils}/animationFrame/calculateProgress.d.ts +0 -0
- package/libs/shared-utils/animationFrame/calculateProgress.js +23 -0
- package/{shared-utils → libs/shared-utils}/animationFrame/formatRad.d.ts +0 -0
- package/libs/shared-utils/animationFrame/formatRad.js +20 -0
- package/{shared-utils → libs/shared-utils}/animationFrame/index.d.ts +0 -0
- package/libs/shared-utils/animationFrame/index.js +48 -0
- package/{shared-utils → libs/shared-utils}/animationFrame/tween.d.ts +0 -0
- package/libs/shared-utils/animationFrame/tween.js +44 -0
- package/libs/shared-utils/changeModelCanvasOpacity.d.ts +2 -0
- package/libs/shared-utils/changeModelCanvasOpacity.js +15 -0
- package/{shared-utils → libs/shared-utils}/createCanvasTextTexture.d.ts +0 -0
- package/libs/shared-utils/createCanvasTextTexture.js +19 -0
- package/{shared-utils → libs/shared-utils}/createLine/index.d.ts +1 -1
- package/libs/shared-utils/createLine/index.js +8 -0
- package/{shared-utils → libs/shared-utils}/debounce.d.ts +1 -1
- package/libs/shared-utils/debounce.js +14 -0
- package/{shared-utils → libs/shared-utils}/equal.d.ts +0 -0
- package/libs/shared-utils/equal.js +84 -0
- package/{shared-utils → libs/shared-utils}/filter.d.ts +0 -0
- package/libs/shared-utils/filter.js +53 -0
- package/{shared-utils → libs/shared-utils}/five/changeMode.d.ts +0 -0
- package/libs/shared-utils/five/changeMode.js +15 -0
- package/{shared-utils → libs/shared-utils}/five/useFivePlugin.d.ts +0 -0
- package/libs/shared-utils/five/useFivePlugin.js +8 -0
- package/{shared-utils → libs/shared-utils}/formatRad.d.ts +0 -0
- package/libs/shared-utils/formatRad.js +10 -0
- package/{shared-utils → libs/shared-utils}/getPxmm.d.ts +0 -0
- package/libs/shared-utils/getPxmm.js +20 -0
- package/{shared-utils → libs/shared-utils}/getRandomColor.d.ts +0 -0
- package/libs/shared-utils/getRandomColor.js +10 -0
- package/{shared-utils → libs/shared-utils}/isNil.d.ts +0 -0
- package/libs/shared-utils/isNil.js +14 -0
- package/{shared-utils → libs/shared-utils}/isTruelyObject.d.ts +0 -0
- package/libs/shared-utils/isTruelyObject.js +20 -0
- package/libs/shared-utils/math/evenNumber.d.ts +3 -0
- package/libs/shared-utils/math/evenNumber.js +4 -0
- package/{shared-utils → libs/shared-utils}/math/planimetry.d.ts +4 -4
- package/libs/shared-utils/math/planimetry.js +288 -0
- package/{shared-utils → libs/shared-utils}/math/rad2Deg.d.ts +0 -0
- package/libs/shared-utils/math/rad2Deg.js +3 -0
- package/{shared-utils → libs/shared-utils}/nearlyEqual.d.ts +0 -0
- package/libs/shared-utils/nearlyEqual.js +9 -0
- package/{shared-utils → libs/shared-utils}/nextFrame.d.ts +0 -0
- package/libs/shared-utils/nextFrame.js +6 -0
- package/{shared-utils → libs/shared-utils}/noop.d.ts +0 -0
- package/libs/shared-utils/noop.js +7 -0
- package/{shared-utils → libs/shared-utils}/object3d2LocalMatrix.d.ts +0 -0
- package/libs/shared-utils/object3d2LocalMatrix.js +29 -0
- package/{shared-utils → libs/shared-utils}/px2rem.d.ts +0 -0
- package/libs/shared-utils/px2rem.js +4 -0
- package/libs/shared-utils/removeArrayItem.d.ts +7 -0
- package/libs/shared-utils/removeArrayItem.js +12 -0
- package/{shared-utils → libs/shared-utils}/tap.d.ts +0 -0
- package/{shared-utils → libs/shared-utils}/tap.js +4 -13
- package/{shared-utils → libs/shared-utils}/three/centerPoint.d.ts +0 -0
- package/libs/shared-utils/three/centerPoint.js +4 -0
- package/{shared-utils → libs/shared-utils}/three/getExtraModelLoader.d.ts +0 -0
- package/libs/shared-utils/three/getExtraModelLoader.js +18 -0
- package/{shared-utils → libs/shared-utils}/three/getNormal.d.ts +0 -0
- package/libs/shared-utils/three/getNormal.js +6 -0
- package/{shared-utils → libs/shared-utils}/three/getTextureLoader.d.ts +0 -0
- package/libs/shared-utils/three/getTextureLoader.js +17 -0
- package/{shared-utils → libs/shared-utils}/three/loadFbxObj.d.ts +0 -0
- package/libs/shared-utils/three/loadFbxObj.js +13 -0
- package/libs/shared-utils/three/loadTexture.d.ts +2 -0
- package/libs/shared-utils/three/loadTexture.js +10 -0
- package/{shared-utils → libs/shared-utils}/three/transformPositionToVector3.d.ts +0 -0
- package/libs/shared-utils/three/transformPositionToVector3.js +3 -0
- package/{shared-utils → libs/shared-utils}/three/transfromToMeshBasicMaterial.d.ts +0 -0
- package/libs/shared-utils/three/transfromToMeshBasicMaterial.js +14 -0
- package/{shared-utils → libs/shared-utils}/throttle.d.ts +1 -1
- package/libs/shared-utils/throttle.js +18 -0
- package/{shared-utils → libs/shared-utils}/to.d.ts +0 -0
- package/libs/shared-utils/to.js +18 -0
- package/{shared-utils → libs/shared-utils}/useDebounce.d.ts +0 -0
- package/libs/shared-utils/useDebounce.js +22 -0
- package/{shared-utils → libs/shared-utils}/useThrottle.d.ts +0 -0
- package/libs/shared-utils/useThrottle.js +25 -0
- package/libs/{gltf-viewer → shared-utils}/uuid.d.ts +0 -0
- package/libs/shared-utils/uuid.js +11 -0
- package/{shared-utils → libs/shared-utils}/vectorTocoordinates.d.ts +0 -0
- package/libs/shared-utils/vectorTocoordinates.js +9 -0
- package/{typings → libs/typings}/math.type.d.ts +0 -0
- package/libs/typings/math.type.js +1 -0
- package/{typings → libs/typings}/utils.type.d.ts +0 -0
- package/libs/typings/utils.type.js +1 -0
- package/package.json +45 -17
- package/TERMS.txt +0 -56
- package/components/ARVideoFigure/ARVideoFigureMesh.d.ts +0 -44
- package/components/ARVideoFigure/ARVideoFigureMesh.js +0 -371
- package/components/ARVideoFigure/ARVideoFigureScene.d.ts +0 -11
- package/components/ARVideoFigure/ARVideoFigureScene.js +0 -85
- package/components/ARVideoFigure/ImgBgTransparent.d.ts +0 -16
- package/components/ARVideoFigure/ImgBgTransparent.js +0 -65
- package/components/ARVideoFigure/ImgBgTransparentMesh.d.ts +0 -30
- package/components/ARVideoFigure/ImgBgTransparentMesh.js +0 -183
- package/components/ARVideoFigure/fragmentShader.d.ts +0 -5
- package/components/ARVideoFigure/fragmentShader.js +0 -18
- package/components/ARVideoFigure/index.d.ts +0 -15
- package/components/ARVideoFigure/index.js +0 -80
- package/components/ARVideoFigure/vertexShader.d.ts +0 -1
- package/components/ARVideoFigure/vertexShader.js +0 -10
- package/components/GLTFView/index.d.ts +0 -72
- package/components/GLTFView/index.js +0 -149
- package/components/GlassFilters/index.d.ts +0 -32
- package/components/GlassFilters/index.js +0 -78
- package/components/ModelView/ModelViewController.d.ts +0 -18
- package/components/ModelView/ModelViewController.js +0 -157
- package/components/ModelView/index.d.ts +0 -10
- package/components/ModelView/index.js +0 -24
- package/components/PaintBrush/index.d.ts +0 -16
- package/components/PaintBrush/index.js +0 -47
- package/components/PanoTag/index.d.ts +0 -4
- package/components/PanoTag/index.js +0 -13
- package/custom.d.js +0 -3
- package/data/1aGKl9JmrlXMXx8d.d.ts +0 -104
- package/data/1aGKl9JmrlXMXx8d.js +0 -537
- package/data/54djM0oR6ky3Ey8e.d.ts +0 -55
- package/data/54djM0oR6ky3Ey8e.js +0 -350
- package/data/6gyq3v1verxD7JO1.d.ts +0 -104
- package/data/6gyq3v1verxD7JO1.js +0 -462
- package/data/8054djM0oR6ky3Ey8e.d.ts +0 -55
- package/data/8054djM0oR6ky3Ey8e.js +0 -350
- package/data/KpokNd82rwjhackhQTBEoYKHg8zGbPXe.d.ts +0 -84
- package/data/KpokNd82rwjhackhQTBEoYKHg8zGbPXe.js +0 -600
- package/data/PrXel3aqGbp34JQn.d.ts +0 -389
- package/data/PrXel3aqGbp34JQn.js +0 -4649
- package/data/XJ6NMLWnkAY3Rdx8.d.ts +0 -843
- package/data/XJ6NMLWnkAY3Rdx8.js +0 -7989
- package/data/YdoNP9K4rwQDwjJr.d.ts +0 -83
- package/data/YdoNP9K4rwQDwjJr.js +0 -1453
- package/data/ZLvK29zj4L29Jowd.d.ts +0 -55
- package/data/ZLvK29zj4L29Jowd.js +0 -372
- package/data/auto3d-njL5J99VwCmnjtQElOmXQr.d.ts +0 -86
- package/data/auto3d-njL5J99VwCmnjtQElOmXQr.js +0 -711
- package/data/extrude-walls/ZLvK29zj4L29Jowd.d.ts +0 -5
- package/data/extrude-walls/ZLvK29zj4L29Jowd.js +0 -14
- package/data/extrude-walls/lo024DEgzanMj5BE.d.ts +0 -5
- package/data/extrude-walls/lo024DEgzanMj5BE.js +0 -14
- package/data/jd6oMOzPxnQ3BvxY_B7yw51J9rXlhYhjhGTOgRVqu6WeEqjNX.d.ts +0 -85
- package/data/jd6oMOzPxnQ3BvxY_B7yw51J9rXlhYhjhGTOgRVqu6WeEqjNX.js +0 -511
- package/data/lo024DEgzanMj5BE.d.ts +0 -55
- package/data/lo024DEgzanMj5BE.js +0 -966
- package/data/oPzy3ApbjjpD8YdR.d.ts +0 -83
- package/data/oPzy3ApbjjpD8YdR.js +0 -283
- package/data/qjAxMG4XbPn96wKG.d.ts +0 -104
- package/data/qjAxMG4XbPn96wKG.js +0 -637
- package/data/rXel3aPQRRBD4JQn.d.ts +0 -86
- package/data/rXel3aPQRRBD4JQn.js +0 -622
- package/data/vLykj3NWrllMrG06.d.ts +0 -91
- package/data/vLykj3NWrllMrG06.js +0 -2729
- package/data/wz0QV9KA4ugyo9ME.d.ts +0 -39
- package/data/wz0QV9KA4ugyo9ME.js +0 -136
- package/data/zxMawr9raSg8LYjG.d.ts +0 -53
- package/data/zxMawr9raSg8LYjG.js +0 -590
- package/examples/FiveStateController/index.js +0 -134
- package/examples/VRHouse/Mobile.js +0 -36
- package/examples/VRHouse/PC.js +0 -36
- package/examples/VRHouse/index.js +0 -36
- package/index.d.ts +0 -15
- package/index.js +0 -45
- package/libs/gltf-viewer/Subscribe.d.ts +0 -76
- package/libs/gltf-viewer/Subscribe.js +0 -231
- package/libs/gltf-viewer/coordsMoveByOffset.d.ts +0 -13
- package/libs/gltf-viewer/coordsMoveByOffset.js +0 -22
- package/libs/gltf-viewer/coordsToDirection.d.ts +0 -5
- package/libs/gltf-viewer/coordsToDirection.js +0 -41
- package/libs/gltf-viewer/formatRad.d.ts +0 -1
- package/libs/gltf-viewer/formatRad.js +0 -13
- package/libs/gltf-viewer/getFrameTime.d.ts +0 -1
- package/libs/gltf-viewer/getFrameTime.js +0 -28
- package/libs/gltf-viewer/index.d.ts +0 -55
- package/libs/gltf-viewer/index.js +0 -650
- package/libs/gltf-viewer/mouseWheel.d.ts +0 -2
- package/libs/gltf-viewer/mouseWheel.js +0 -59
- package/libs/gltf-viewer/requestAnimationFrame.d.ts +0 -1
- package/libs/gltf-viewer/requestAnimationFrame.js +0 -18
- package/libs/gltf-viewer/requestAnimationFrameInterval.d.ts +0 -1
- package/libs/gltf-viewer/requestAnimationFrameInterval.js +0 -31
- package/libs/gltf-viewer/uuid.js +0 -28
- package/plugins/AutoPreloadPlugin/index.d.ts +0 -23
- package/plugins/AutoPreloadPlugin/index.js +0 -111
- package/plugins/CSS3DRenderPlugin/components/Marker/index.d.ts +0 -12
- package/plugins/CSS3DRenderPlugin/components/Marker/index.js +0 -121
- package/plugins/CSS3DRenderPlugin/index.js +0 -298
- package/plugins/CameraMovementPlugin/index.js +0 -362
- package/plugins/CameraMovementPlugin/typing.js +0 -37
- package/plugins/ModelChassisCompassPlugin/index.js +0 -157
- package/plugins/ModelEntryDoorGuidePlugin/index.js +0 -247
- package/plugins/ModelExtrudeWallsPlugin/index.d.ts +0 -16
- package/plugins/ModelExtrudeWallsPlugin/index.js +0 -252
- package/plugins/ModelRoomLabelPlugin/Controller.js +0 -153
- package/plugins/ModelRoomLabelPlugin/RoomLabelItem.d.ts +0 -8
- package/plugins/ModelRoomLabelPlugin/RoomLabelItem.js +0 -66
- package/plugins/ModelRoomLabelPlugin/RoomLabelItems.d.ts +0 -7
- package/plugins/ModelRoomLabelPlugin/RoomLabelItems.js +0 -159
- package/plugins/ModelRoomLabelPlugin/index.d.ts +0 -8
- package/plugins/ModelRoomLabelPlugin/index.js +0 -18
- package/plugins/ModelRoomLabelPlugin/typings.js +0 -7
- package/plugins/ModelRoomLabelPlugin/utils/parseData.js +0 -35
- package/plugins/ModelTVVideoPlugin/index.d.ts +0 -21
- package/plugins/ModelTVVideoPlugin/index.js +0 -397
- package/plugins/ModelViewPlugin/index.js +0 -223
- package/plugins/PanoCursorRaycasterPlugin/PanoCursorRaycasterPluginUsage.d.ts +0 -48
- package/plugins/PanoCursorRaycasterPlugin/components/MovePointTowardsCamera.d.ts +0 -9
- package/plugins/PanoCursorRaycasterPlugin/components/MovePointTowardsCamera.js +0 -117
- package/plugins/PanoCursorRaycasterPlugin/components/PointAxesHelper.d.ts +0 -11
- package/plugins/PanoCursorRaycasterPlugin/components/PointAxesHelper.js +0 -39
- package/plugins/PanoCursorRaycasterPlugin/index.js +0 -126
- package/plugins/PanoCursorRaycasterPlugin/utils/addLineToFive.d.ts +0 -5
- package/plugins/PanoCursorRaycasterPlugin/utils/addLineToFive.js +0 -27
- package/plugins/PanoCursorRaycasterPlugin/utils/createLine.d.ts +0 -3
- package/plugins/PanoCursorRaycasterPlugin/utils/createLine.js +0 -48
- package/plugins/PanoDoorLabelPlugin/index.d.ts +0 -4
- package/plugins/PanoDoorLabelPlugin/index.js +0 -14
- package/plugins/PanoIRobotPlugin/index.d.ts +0 -10
- package/plugins/PanoIRobotPlugin/index.js +0 -18
- package/plugins/PanoMaskSelectorPlugin/compare.d.ts +0 -1
- package/plugins/PanoMaskSelectorPlugin/compare.js +0 -17
- package/plugins/PanoMaskSelectorPlugin/createBox.d.ts +0 -7
- package/plugins/PanoMaskSelectorPlugin/createBox.js +0 -79
- package/plugins/PanoMaskSelectorPlugin/createTextures.d.ts +0 -3
- package/plugins/PanoMaskSelectorPlugin/createTextures.js +0 -45
- package/plugins/PanoMaskSelectorPlugin/fragmentShader.d.ts +0 -1
- package/plugins/PanoMaskSelectorPlugin/fragmentShader.js +0 -10
- package/plugins/PanoMaskSelectorPlugin/index.d.ts +0 -49
- package/plugins/PanoMaskSelectorPlugin/index.js +0 -348
- package/plugins/PanoMaskSelectorPlugin/vertexShader.d.ts +0 -1
- package/plugins/PanoMaskSelectorPlugin/vertexShader.js +0 -10
- package/plugins/PanoRulerPlugin/data/roomInfo.d.ts +0 -3
- package/plugins/PanoRulerPlugin/data/roomInfo.js +0 -51
- package/plugins/PanoRulerPlugin/data/roomRules.d.ts +0 -3
- package/plugins/PanoRulerPlugin/data/roomRules.js +0 -235
- package/plugins/PanoRulerPlugin/index.d.ts +0 -27
- package/plugins/PanoRulerPlugin/index.js +0 -637
- package/plugins/PanoRulerPlugin/typings.d.ts +0 -21
- package/plugins/PanoRulerPlugin/typings.js +0 -7
- package/plugins/PanoTVVideoPlugin/index.d.ts +0 -26
- package/plugins/PanoTVVideoPlugin/index.js +0 -433
- package/plugins/TreasurePlugin/Controller.d.ts +0 -73
- package/plugins/TreasurePlugin/Controller.js +0 -250
- package/plugins/TreasurePlugin/TreasureFaceAnime.d.ts +0 -25
- package/plugins/TreasurePlugin/TreasureFaceAnime.js +0 -143
- package/plugins/TreasurePlugin/TreasureObject.d.ts +0 -53
- package/plugins/TreasurePlugin/TreasureObject.js +0 -406
- package/plugins/TreasurePlugin/TreasureOpenAnime.d.ts +0 -25
- package/plugins/TreasurePlugin/TreasureOpenAnime.js +0 -127
- package/plugins/TreasurePlugin/constants.d.ts +0 -33
- package/plugins/TreasurePlugin/constants.js +0 -67
- package/plugins/TreasurePlugin/index.d.ts +0 -11
- package/plugins/TreasurePlugin/index.js +0 -26
- package/plugins/TreasurePlugin/typings.d.ts +0 -2
- package/plugins/TreasurePlugin/typings.js +0 -7
- package/plugins/floorplan/Assets/floorplanExtraObject.d.ts +0 -1
- package/plugins/floorplan/Assets/floorplanExtraObject.js +0 -10
- package/plugins/floorplan/ModelFloorplanPlugin/Controller.js +0 -626
- package/plugins/floorplan/ModelFloorplanPlugin/components/Camera.d.ts +0 -13
- package/plugins/floorplan/ModelFloorplanPlugin/components/Camera.js +0 -78
- package/plugins/floorplan/ModelFloorplanPlugin/components/Compass.d.ts +0 -5
- package/plugins/floorplan/ModelFloorplanPlugin/components/Compass.js +0 -84
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomHighlight.d.ts +0 -10
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomHighlight.js +0 -129
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomLabels.d.ts +0 -13
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomLabels.js +0 -118
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/index.d.ts +0 -13
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/index.js +0 -62
- package/plugins/floorplan/ModelFloorplanPlugin/components/index.d.ts +0 -20
- package/plugins/floorplan/ModelFloorplanPlugin/components/index.js +0 -88
- package/plugins/floorplan/ModelFloorplanPlugin/controller.style.d.ts +0 -1
- package/plugins/floorplan/ModelFloorplanPlugin/controller.style.js +0 -16
- package/plugins/floorplan/ModelFloorplanPlugin/index.js +0 -20
- package/plugins/floorplan/ModelFloorplanPlugin/typings/events.type.js +0 -7
- package/plugins/floorplan/ModelFloorplanPlugin/utils/constant.js +0 -33
- package/plugins/floorplan/ModelFloorplanPlugin/utils/correctFiveState.js +0 -154
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.d.ts +0 -13
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.js +0 -113
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.style.d.ts +0 -3
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.style.js +0 -39
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/ExtraObjects.d.ts +0 -5
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/ExtraObjects.js +0 -66
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/RoomHighlight.d.ts +0 -9
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/RoomHighlight.js +0 -126
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/index.d.ts +0 -11
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/index.js +0 -58
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/index.d.ts +0 -17
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/index.js +0 -85
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/index.style.d.ts +0 -2
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/index.style.js +0 -15
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Controller.js +0 -211
- package/plugins/floorplan/PanoFloorplanRadarPlugin/index.js +0 -20
- package/plugins/floorplan/TopviewFloorplanPlugin/Controller.js +0 -262
- package/plugins/floorplan/TopviewFloorplanPlugin/index.js +0 -18
- package/plugins/floorplan/TopviewFloorplanPlugin/style.js +0 -16
- package/plugins/floorplan/components/FloorplanImage.d.ts +0 -7
- package/plugins/floorplan/components/FloorplanImage.js +0 -90
- package/plugins/floorplan/typings/floorplanData.js +0 -7
- package/plugins/floorplan/typings/floorplanServerData.js +0 -382
- package/plugins/floorplan/utils/formatData.js +0 -217
- package/plugins/floorplan/utils/formatPosition.js +0 -89
- package/shared-utils/Preloader.js +0 -57
- package/shared-utils/Subscribe.js +0 -230
- package/shared-utils/animationFrame/BetterTween.js +0 -103
- package/shared-utils/animationFrame/calculateProgress.js +0 -40
- package/shared-utils/animationFrame/formatRad.js +0 -36
- package/shared-utils/animationFrame/index.js +0 -81
- package/shared-utils/animationFrame/tween.js +0 -92
- package/shared-utils/changeModelCanvansOpacity.d.ts +0 -2
- package/shared-utils/changeModelCanvansOpacity.js +0 -38
- package/shared-utils/createCanvasTextTexture.js +0 -31
- package/shared-utils/createFiveContainer.d.ts +0 -10
- package/shared-utils/createFiveContainer.js +0 -171
- package/shared-utils/createLine/index.js +0 -43
- package/shared-utils/debounce.js +0 -30
- package/shared-utils/equal.js +0 -107
- package/shared-utils/filter.js +0 -127
- package/shared-utils/five/changeMode.js +0 -82
- package/shared-utils/five/useFivePlugin.js +0 -17
- package/shared-utils/formatRad.js +0 -18
- package/shared-utils/getPxmm.js +0 -51
- package/shared-utils/getRandomColor.js +0 -23
- package/shared-utils/isNil.js +0 -26
- package/shared-utils/isTruelyObject.js +0 -31
- package/shared-utils/math/evenNumber.d.ts +0 -1
- package/shared-utils/math/evenNumber.js +0 -13
- package/shared-utils/math/planimetry.js +0 -352
- package/shared-utils/math/rad2Deg.js +0 -12
- package/shared-utils/nearlyEqual.js +0 -19
- package/shared-utils/nextFrame.js +0 -15
- package/shared-utils/noop.js +0 -19
- package/shared-utils/object3d2LocalMatrix.js +0 -79
- package/shared-utils/px2rem.js +0 -22
- package/shared-utils/three/centerPoint.js +0 -14
- package/shared-utils/three/getExtraModelLoader.js +0 -45
- package/shared-utils/three/getNormal.js +0 -17
- package/shared-utils/three/getTextureLoader.js +0 -50
- package/shared-utils/three/loadFbxObj.js +0 -54
- package/shared-utils/three/loadTexture.d.ts +0 -2
- package/shared-utils/three/loadTexture.js +0 -46
- package/shared-utils/three/transformPositionToVector3.js +0 -20
- package/shared-utils/three/transfromToMeshBasicMaterial.js +0 -33
- package/shared-utils/throttle.js +0 -29
- package/shared-utils/to.js +0 -67
- package/shared-utils/useDebounce.js +0 -49
- package/shared-utils/useThrottle.js +0 -47
- package/shared-utils/uuid.d.ts +0 -4
- package/shared-utils/uuid.js +0 -28
- package/shared-utils/vectorTocoordinates.js +0 -18
- package/typedoc/components.d.ts +0 -6
- package/typedoc/components.js +0 -7
- package/typedoc/plugins.d.ts +0 -19
- package/typedoc/plugins.js +0 -165
- package/typedoc/shared-utils.d.ts +0 -3
- package/typedoc/shared-utils.js +0 -7
- package/typedoc/typings.d.ts +0 -3
- package/typedoc/typings.js +0 -7
- package/typings/math.type.js +0 -7
- package/typings/utils.type.js +0 -7
|
@@ -1,843 +0,0 @@
|
|
|
1
|
-
export declare const work: {
|
|
2
|
-
basic_code: string;
|
|
3
|
-
business_id: string;
|
|
4
|
-
file_map: {
|
|
5
|
-
'all.json': boolean;
|
|
6
|
-
'animation.jpg': boolean;
|
|
7
|
-
'animation.mp4': boolean;
|
|
8
|
-
'before_floorplan.json': boolean;
|
|
9
|
-
'config.json': boolean;
|
|
10
|
-
'floor_animations.json': boolean;
|
|
11
|
-
'floorplan.json': boolean;
|
|
12
|
-
'frame_image.png': boolean;
|
|
13
|
-
'gltf_file.json': boolean;
|
|
14
|
-
'house_papers.json': boolean;
|
|
15
|
-
'initial.json': boolean;
|
|
16
|
-
'manifest.json': boolean;
|
|
17
|
-
'material_textures.json': boolean;
|
|
18
|
-
'model.at3d': boolean;
|
|
19
|
-
'model.dome': boolean;
|
|
20
|
-
'model.domez': boolean;
|
|
21
|
-
'observer_images.json': boolean;
|
|
22
|
-
'observers.json': boolean;
|
|
23
|
-
'outline_floor_plan.json': boolean;
|
|
24
|
-
'picture.jpg': boolean;
|
|
25
|
-
'trade_pro_snapshot.jpg': boolean;
|
|
26
|
-
};
|
|
27
|
-
frame_code: string;
|
|
28
|
-
house_id: string;
|
|
29
|
-
is_ai: boolean;
|
|
30
|
-
outer_edge_group_id: string;
|
|
31
|
-
panorama: {
|
|
32
|
-
list: {
|
|
33
|
-
index: number;
|
|
34
|
-
right: string;
|
|
35
|
-
left: string;
|
|
36
|
-
up: string;
|
|
37
|
-
down: string;
|
|
38
|
-
front: string;
|
|
39
|
-
back: string;
|
|
40
|
-
}[];
|
|
41
|
-
};
|
|
42
|
-
prefix_path: string;
|
|
43
|
-
render_code: string;
|
|
44
|
-
render_type: string;
|
|
45
|
-
resolution_ratio: string;
|
|
46
|
-
source: string;
|
|
47
|
-
status: string;
|
|
48
|
-
style: string;
|
|
49
|
-
union_plan_code: string;
|
|
50
|
-
urls: {
|
|
51
|
-
'animation.jpg': string;
|
|
52
|
-
'animation.mp4': string;
|
|
53
|
-
frame_image: string;
|
|
54
|
-
model: string;
|
|
55
|
-
picture: string;
|
|
56
|
-
};
|
|
57
|
-
work_code: string;
|
|
58
|
-
initial: {
|
|
59
|
-
pano_index: number;
|
|
60
|
-
heading: number;
|
|
61
|
-
longitude: number;
|
|
62
|
-
latitude: number;
|
|
63
|
-
fov: number;
|
|
64
|
-
flag_position: number[];
|
|
65
|
-
};
|
|
66
|
-
observers: {
|
|
67
|
-
index: number;
|
|
68
|
-
id: number;
|
|
69
|
-
create_time: string;
|
|
70
|
-
floor_index: number;
|
|
71
|
-
visible_nodes: number[];
|
|
72
|
-
accessible_nodes: number[];
|
|
73
|
-
quaternion: {
|
|
74
|
-
w: number;
|
|
75
|
-
x: number;
|
|
76
|
-
y: number;
|
|
77
|
-
z: number;
|
|
78
|
-
};
|
|
79
|
-
standing_position: number[];
|
|
80
|
-
position: number[];
|
|
81
|
-
}[];
|
|
82
|
-
model: {
|
|
83
|
-
file_url: string;
|
|
84
|
-
material_textures: string[];
|
|
85
|
-
};
|
|
86
|
-
config: {
|
|
87
|
-
Description: {
|
|
88
|
-
virtual_light: {
|
|
89
|
-
'u-57a9731b-4ceb-451a-9fad-007b29dbebf7': {
|
|
90
|
-
id: string;
|
|
91
|
-
lid: string;
|
|
92
|
-
scene: string;
|
|
93
|
-
balcony: null;
|
|
94
|
-
type: string;
|
|
95
|
-
flag: number;
|
|
96
|
-
hei: number;
|
|
97
|
-
center: number[];
|
|
98
|
-
bbox: number[][];
|
|
99
|
-
area: number;
|
|
100
|
-
pts: number[][];
|
|
101
|
-
size: number[];
|
|
102
|
-
areaid: string;
|
|
103
|
-
};
|
|
104
|
-
'u-ac0f4c99-a3a9-4c71-b63c-dcf94cda9faf': {
|
|
105
|
-
id: string;
|
|
106
|
-
lid: string;
|
|
107
|
-
scene: string;
|
|
108
|
-
balcony: null;
|
|
109
|
-
type: string;
|
|
110
|
-
flag: number;
|
|
111
|
-
hei: number;
|
|
112
|
-
center: number[];
|
|
113
|
-
bbox: number[][];
|
|
114
|
-
area: number;
|
|
115
|
-
pts: number[][];
|
|
116
|
-
size: number[];
|
|
117
|
-
areaid: string;
|
|
118
|
-
};
|
|
119
|
-
'u-a410a3f4-f207-42f7-b8be-2fb72be0eb66': {
|
|
120
|
-
id: string;
|
|
121
|
-
lid: string;
|
|
122
|
-
scene: string;
|
|
123
|
-
balcony: null;
|
|
124
|
-
type: string;
|
|
125
|
-
flag: number;
|
|
126
|
-
hei: number;
|
|
127
|
-
center: number[];
|
|
128
|
-
bbox: number[][];
|
|
129
|
-
area: number;
|
|
130
|
-
pts: number[][];
|
|
131
|
-
size: number[];
|
|
132
|
-
areaid: string;
|
|
133
|
-
};
|
|
134
|
-
'u-5203612c-eb2f-4fa0-b413-6c51de68912f': {
|
|
135
|
-
id: string;
|
|
136
|
-
lid: string;
|
|
137
|
-
scene: string;
|
|
138
|
-
balcony: null;
|
|
139
|
-
type: string;
|
|
140
|
-
flag: number;
|
|
141
|
-
hei: number;
|
|
142
|
-
center: number[];
|
|
143
|
-
bbox: number[][];
|
|
144
|
-
area: number;
|
|
145
|
-
pts: number[][];
|
|
146
|
-
size: number[];
|
|
147
|
-
areaid: string;
|
|
148
|
-
};
|
|
149
|
-
'u-482bdac1-fcb3-4772-9409-fdc3ef55205e': {
|
|
150
|
-
id: string;
|
|
151
|
-
lid: string;
|
|
152
|
-
scene: string;
|
|
153
|
-
balcony: null;
|
|
154
|
-
type: string;
|
|
155
|
-
flag: number;
|
|
156
|
-
hei: number;
|
|
157
|
-
center: number[];
|
|
158
|
-
bbox: number[][];
|
|
159
|
-
area: number;
|
|
160
|
-
pts: number[][];
|
|
161
|
-
size: number[];
|
|
162
|
-
areaid: string;
|
|
163
|
-
};
|
|
164
|
-
'u-c9df6914-26a1-4689-a231-7094ca5ad770': {
|
|
165
|
-
id: string;
|
|
166
|
-
lid: string;
|
|
167
|
-
scene: string;
|
|
168
|
-
balcony: null;
|
|
169
|
-
type: string;
|
|
170
|
-
flag: number;
|
|
171
|
-
hei: number;
|
|
172
|
-
center: number[];
|
|
173
|
-
bbox: number[][];
|
|
174
|
-
area: number;
|
|
175
|
-
pts: number[][];
|
|
176
|
-
size: number[];
|
|
177
|
-
areaid: string;
|
|
178
|
-
};
|
|
179
|
-
'u-1b9c3d86-060d-499e-97bb-1c065c5052a3': {
|
|
180
|
-
id: string;
|
|
181
|
-
lid: string;
|
|
182
|
-
scene: string;
|
|
183
|
-
balcony: null;
|
|
184
|
-
type: string;
|
|
185
|
-
flag: number;
|
|
186
|
-
hei: number;
|
|
187
|
-
center: number[];
|
|
188
|
-
bbox: number[][];
|
|
189
|
-
area: number;
|
|
190
|
-
pts: number[][];
|
|
191
|
-
size: number[];
|
|
192
|
-
areaid: string;
|
|
193
|
-
};
|
|
194
|
-
'u-cefbb673-2cc9-4e84-8fe1-be438b772e12': {
|
|
195
|
-
id: string;
|
|
196
|
-
lid: string;
|
|
197
|
-
scene: string;
|
|
198
|
-
balcony: null;
|
|
199
|
-
type: string;
|
|
200
|
-
flag: number;
|
|
201
|
-
hei: number;
|
|
202
|
-
center: number[];
|
|
203
|
-
bbox: number[][];
|
|
204
|
-
area: number;
|
|
205
|
-
pts: number[][];
|
|
206
|
-
size: number[];
|
|
207
|
-
areaid: string;
|
|
208
|
-
};
|
|
209
|
-
'u-d9f43a99-79d7-447c-93a2-f2b040fcc300': {
|
|
210
|
-
id: string;
|
|
211
|
-
lid: string;
|
|
212
|
-
scene: string;
|
|
213
|
-
balcony: null;
|
|
214
|
-
type: string;
|
|
215
|
-
flag: number;
|
|
216
|
-
hei: number;
|
|
217
|
-
center: number[];
|
|
218
|
-
bbox: number[][];
|
|
219
|
-
area: number;
|
|
220
|
-
pts: number[][];
|
|
221
|
-
size: number[];
|
|
222
|
-
areaid: string;
|
|
223
|
-
};
|
|
224
|
-
'u-268449cd-b522-408f-8414-8b8e23d034d0': {
|
|
225
|
-
id: string;
|
|
226
|
-
lid: string;
|
|
227
|
-
scene: string;
|
|
228
|
-
balcony: null;
|
|
229
|
-
type: string;
|
|
230
|
-
flag: number;
|
|
231
|
-
hei: number;
|
|
232
|
-
center: number[];
|
|
233
|
-
bbox: number[][];
|
|
234
|
-
area: number;
|
|
235
|
-
pts: number[][];
|
|
236
|
-
size: number[];
|
|
237
|
-
areaid: string;
|
|
238
|
-
};
|
|
239
|
-
'u-07478681-bcd6-4933-9f8c-821686c75677': {
|
|
240
|
-
id: string;
|
|
241
|
-
lid: string;
|
|
242
|
-
scene: string;
|
|
243
|
-
balcony: null;
|
|
244
|
-
type: string;
|
|
245
|
-
flag: number;
|
|
246
|
-
hei: number;
|
|
247
|
-
center: number[];
|
|
248
|
-
bbox: number[][];
|
|
249
|
-
area: number;
|
|
250
|
-
pts: number[][];
|
|
251
|
-
size: number[];
|
|
252
|
-
areaid: string;
|
|
253
|
-
};
|
|
254
|
-
'u-203552f1-907e-4c04-99e1-7eaaa7be3efb': {
|
|
255
|
-
id: string;
|
|
256
|
-
lid: string;
|
|
257
|
-
scene: string;
|
|
258
|
-
balcony: null;
|
|
259
|
-
type: string;
|
|
260
|
-
flag: number;
|
|
261
|
-
hei: number;
|
|
262
|
-
center: number[];
|
|
263
|
-
bbox: number[][];
|
|
264
|
-
area: number;
|
|
265
|
-
pts: number[][];
|
|
266
|
-
size: number[];
|
|
267
|
-
areaid: string;
|
|
268
|
-
};
|
|
269
|
-
'u-f88113cd-5d8c-4a1c-8c12-876723149f47': {
|
|
270
|
-
id: string;
|
|
271
|
-
lid: string;
|
|
272
|
-
scene: string;
|
|
273
|
-
balcony: null;
|
|
274
|
-
type: string;
|
|
275
|
-
flag: number;
|
|
276
|
-
hei: number;
|
|
277
|
-
center: number[];
|
|
278
|
-
bbox: number[][];
|
|
279
|
-
area: number;
|
|
280
|
-
pts: number[][];
|
|
281
|
-
size: number[];
|
|
282
|
-
areaid: string;
|
|
283
|
-
};
|
|
284
|
-
'u-14a37785-aeb2-44d1-b3f3-d0c6e164c3b6': {
|
|
285
|
-
id: string;
|
|
286
|
-
lid: string;
|
|
287
|
-
scene: string;
|
|
288
|
-
balcony: boolean;
|
|
289
|
-
type: string;
|
|
290
|
-
flag: number;
|
|
291
|
-
hei: number;
|
|
292
|
-
center: number[];
|
|
293
|
-
bbox: number[][];
|
|
294
|
-
area: number;
|
|
295
|
-
pts: number[][];
|
|
296
|
-
size: number[];
|
|
297
|
-
areaid: string;
|
|
298
|
-
};
|
|
299
|
-
};
|
|
300
|
-
custom_version: string[];
|
|
301
|
-
abstract_version: string[];
|
|
302
|
-
style: string;
|
|
303
|
-
main_color: null;
|
|
304
|
-
house_info: {
|
|
305
|
-
room_info: {
|
|
306
|
-
'u-U6bxh0kw93B7W2': {
|
|
307
|
-
function_name: string;
|
|
308
|
-
item_categories: string[];
|
|
309
|
-
};
|
|
310
|
-
'u-iQKYT9kw93bCz7': {
|
|
311
|
-
function_name: string;
|
|
312
|
-
item_categories: string[];
|
|
313
|
-
};
|
|
314
|
-
'u-Jkh36EKW93BFEr': {
|
|
315
|
-
function_name: string;
|
|
316
|
-
item_categories: string[];
|
|
317
|
-
};
|
|
318
|
-
'u-VFwP50Kw93C0d9': {
|
|
319
|
-
function_name: string;
|
|
320
|
-
item_categories: string[];
|
|
321
|
-
};
|
|
322
|
-
'u-eunc6nKW93DcV2': {
|
|
323
|
-
function_name: string;
|
|
324
|
-
item_categories: string[];
|
|
325
|
-
};
|
|
326
|
-
};
|
|
327
|
-
profile_label: string[];
|
|
328
|
-
family_info: {
|
|
329
|
-
members: {
|
|
330
|
-
Father: {
|
|
331
|
-
Name: string;
|
|
332
|
-
Age: string;
|
|
333
|
-
Gender: string;
|
|
334
|
-
Hobby1: string;
|
|
335
|
-
Hobby2: string;
|
|
336
|
-
Hobby3: string;
|
|
337
|
-
Hobby: string;
|
|
338
|
-
Style: string;
|
|
339
|
-
};
|
|
340
|
-
Mother: {
|
|
341
|
-
Name: string;
|
|
342
|
-
Age: string;
|
|
343
|
-
Gender: string;
|
|
344
|
-
Hobby1: string;
|
|
345
|
-
Hobby2: string;
|
|
346
|
-
Hobby3: string;
|
|
347
|
-
Hobby: string;
|
|
348
|
-
Style: string;
|
|
349
|
-
};
|
|
350
|
-
};
|
|
351
|
-
composition: string;
|
|
352
|
-
};
|
|
353
|
-
house_labels: string[];
|
|
354
|
-
};
|
|
355
|
-
};
|
|
356
|
-
Structure: {
|
|
357
|
-
floorHeight: number;
|
|
358
|
-
floorNumber: number;
|
|
359
|
-
combinedWallFace: boolean;
|
|
360
|
-
withPillar: boolean;
|
|
361
|
-
withBeam: boolean;
|
|
362
|
-
};
|
|
363
|
-
CustomFurniture: {
|
|
364
|
-
__type: string;
|
|
365
|
-
position: number[];
|
|
366
|
-
quaternion: number[];
|
|
367
|
-
components: ({
|
|
368
|
-
__type: string;
|
|
369
|
-
library: number;
|
|
370
|
-
adsorption: null;
|
|
371
|
-
position: number[];
|
|
372
|
-
quaternion: number[];
|
|
373
|
-
scale: number[];
|
|
374
|
-
size: number[];
|
|
375
|
-
matrix: number[];
|
|
376
|
-
matrixWorld: (number | {
|
|
377
|
-
x: number;
|
|
378
|
-
y: number;
|
|
379
|
-
z: number;
|
|
380
|
-
} | null)[];
|
|
381
|
-
name: string;
|
|
382
|
-
type: string[];
|
|
383
|
-
path: string;
|
|
384
|
-
material: number;
|
|
385
|
-
is: string;
|
|
386
|
-
id: string;
|
|
387
|
-
} | {
|
|
388
|
-
__type: string;
|
|
389
|
-
library: number;
|
|
390
|
-
adsorption: null;
|
|
391
|
-
position: number[];
|
|
392
|
-
quaternion: number[];
|
|
393
|
-
scale: number[];
|
|
394
|
-
size: number[];
|
|
395
|
-
matrix: number[];
|
|
396
|
-
matrixWorld: (number | {
|
|
397
|
-
x: number;
|
|
398
|
-
y: number;
|
|
399
|
-
z: number;
|
|
400
|
-
} | null)[];
|
|
401
|
-
name: string;
|
|
402
|
-
type: string[];
|
|
403
|
-
path: string;
|
|
404
|
-
material: null;
|
|
405
|
-
is: string;
|
|
406
|
-
id: string;
|
|
407
|
-
})[];
|
|
408
|
-
componentGroups: never[];
|
|
409
|
-
id: string;
|
|
410
|
-
adsorption: string;
|
|
411
|
-
library: number;
|
|
412
|
-
type: string[];
|
|
413
|
-
scale: number[];
|
|
414
|
-
flipX: boolean;
|
|
415
|
-
roomName: string;
|
|
416
|
-
}[];
|
|
417
|
-
Item: {
|
|
418
|
-
__type: string;
|
|
419
|
-
materials: null;
|
|
420
|
-
library: number;
|
|
421
|
-
adsorption: null;
|
|
422
|
-
position: number[];
|
|
423
|
-
quaternion: number[];
|
|
424
|
-
size: number[];
|
|
425
|
-
matrix: number[];
|
|
426
|
-
matrixWorld: number[];
|
|
427
|
-
name: string;
|
|
428
|
-
type: string[];
|
|
429
|
-
path: string;
|
|
430
|
-
center: number[];
|
|
431
|
-
id: string;
|
|
432
|
-
roomName: string;
|
|
433
|
-
}[];
|
|
434
|
-
Floor: {
|
|
435
|
-
__type: string;
|
|
436
|
-
target: {
|
|
437
|
-
__type: string;
|
|
438
|
-
id: string;
|
|
439
|
-
roomName: string;
|
|
440
|
-
roomType: string;
|
|
441
|
-
};
|
|
442
|
-
material: {
|
|
443
|
-
__type: string;
|
|
444
|
-
type: string;
|
|
445
|
-
value: number;
|
|
446
|
-
};
|
|
447
|
-
}[];
|
|
448
|
-
Ceiling: ({
|
|
449
|
-
__type: string;
|
|
450
|
-
target: {
|
|
451
|
-
__type: string;
|
|
452
|
-
id: string;
|
|
453
|
-
roomName: string;
|
|
454
|
-
roomType: string;
|
|
455
|
-
};
|
|
456
|
-
material: {
|
|
457
|
-
__type: string;
|
|
458
|
-
type: string;
|
|
459
|
-
value: number;
|
|
460
|
-
};
|
|
461
|
-
drop: null;
|
|
462
|
-
roomName: string;
|
|
463
|
-
id: string;
|
|
464
|
-
} | {
|
|
465
|
-
__type: string;
|
|
466
|
-
target: {
|
|
467
|
-
__type: string;
|
|
468
|
-
id: string;
|
|
469
|
-
roomName: string;
|
|
470
|
-
roomType: string;
|
|
471
|
-
};
|
|
472
|
-
material: {
|
|
473
|
-
__type: string;
|
|
474
|
-
type: string;
|
|
475
|
-
value: number;
|
|
476
|
-
};
|
|
477
|
-
drop: {
|
|
478
|
-
__type: string;
|
|
479
|
-
data: {
|
|
480
|
-
polygons: ({
|
|
481
|
-
polygon: number[][];
|
|
482
|
-
holes: {
|
|
483
|
-
id: string;
|
|
484
|
-
value: number[][];
|
|
485
|
-
}[];
|
|
486
|
-
height: number;
|
|
487
|
-
lightray: boolean;
|
|
488
|
-
cornerFlower: null;
|
|
489
|
-
material: {
|
|
490
|
-
__type: string;
|
|
491
|
-
type: string;
|
|
492
|
-
value: number;
|
|
493
|
-
};
|
|
494
|
-
id: number;
|
|
495
|
-
} | {
|
|
496
|
-
polygon: number[][];
|
|
497
|
-
holes: null;
|
|
498
|
-
height: number;
|
|
499
|
-
lightray: boolean;
|
|
500
|
-
cornerFlower: null;
|
|
501
|
-
material: {
|
|
502
|
-
__type: string;
|
|
503
|
-
type: string;
|
|
504
|
-
value: number;
|
|
505
|
-
};
|
|
506
|
-
id: number;
|
|
507
|
-
})[];
|
|
508
|
-
lines: {
|
|
509
|
-
uuid: string;
|
|
510
|
-
parent: (string | number)[];
|
|
511
|
-
lightray: boolean;
|
|
512
|
-
lightrayGap: number;
|
|
513
|
-
name: number;
|
|
514
|
-
value: {
|
|
515
|
-
x: number;
|
|
516
|
-
y: number;
|
|
517
|
-
}[];
|
|
518
|
-
height: number;
|
|
519
|
-
facadeMat: null;
|
|
520
|
-
rightCorner: null;
|
|
521
|
-
bottomCenterCorner: null;
|
|
522
|
-
topCorner: null;
|
|
523
|
-
}[];
|
|
524
|
-
};
|
|
525
|
-
id: string;
|
|
526
|
-
material?: undefined;
|
|
527
|
-
};
|
|
528
|
-
roomName: string;
|
|
529
|
-
id: string;
|
|
530
|
-
} | {
|
|
531
|
-
__type: string;
|
|
532
|
-
target: {
|
|
533
|
-
__type: string;
|
|
534
|
-
id: string;
|
|
535
|
-
roomName: string;
|
|
536
|
-
roomType: string;
|
|
537
|
-
};
|
|
538
|
-
material: {
|
|
539
|
-
__type: string;
|
|
540
|
-
type: string;
|
|
541
|
-
value: number;
|
|
542
|
-
};
|
|
543
|
-
drop: {
|
|
544
|
-
__type: string;
|
|
545
|
-
material: {
|
|
546
|
-
__type: string;
|
|
547
|
-
type: string;
|
|
548
|
-
value: number;
|
|
549
|
-
};
|
|
550
|
-
id: string;
|
|
551
|
-
data?: undefined;
|
|
552
|
-
};
|
|
553
|
-
roomName: string;
|
|
554
|
-
id: string;
|
|
555
|
-
})[];
|
|
556
|
-
WallItem: ({
|
|
557
|
-
__type: string;
|
|
558
|
-
target: {
|
|
559
|
-
__type: string;
|
|
560
|
-
id: string;
|
|
561
|
-
width: number;
|
|
562
|
-
height: number;
|
|
563
|
-
depth: number;
|
|
564
|
-
rotation: number;
|
|
565
|
-
position: number[];
|
|
566
|
-
leftR: null;
|
|
567
|
-
rightR: null;
|
|
568
|
-
};
|
|
569
|
-
flipX: boolean;
|
|
570
|
-
flipZ: boolean;
|
|
571
|
-
item: {
|
|
572
|
-
__type: string;
|
|
573
|
-
materials: null;
|
|
574
|
-
library: number;
|
|
575
|
-
adsorption: null;
|
|
576
|
-
position: number[];
|
|
577
|
-
quaternion: number[];
|
|
578
|
-
size: number[];
|
|
579
|
-
matrix: number[];
|
|
580
|
-
matrixWorld: number[];
|
|
581
|
-
name: string;
|
|
582
|
-
type: string[];
|
|
583
|
-
path: string;
|
|
584
|
-
center: number[];
|
|
585
|
-
id: string;
|
|
586
|
-
};
|
|
587
|
-
rail: boolean;
|
|
588
|
-
maskWallMaterial: {
|
|
589
|
-
__type: string;
|
|
590
|
-
type: string;
|
|
591
|
-
value: number;
|
|
592
|
-
};
|
|
593
|
-
floorBoard?: undefined;
|
|
594
|
-
windowBoard?: undefined;
|
|
595
|
-
} | {
|
|
596
|
-
__type: string;
|
|
597
|
-
target: {
|
|
598
|
-
__type: string;
|
|
599
|
-
id: string;
|
|
600
|
-
width: number;
|
|
601
|
-
height: number;
|
|
602
|
-
depth: number;
|
|
603
|
-
rotation: number;
|
|
604
|
-
position: number[];
|
|
605
|
-
leftR: null;
|
|
606
|
-
rightR: null;
|
|
607
|
-
};
|
|
608
|
-
flipX: boolean;
|
|
609
|
-
flipZ: boolean;
|
|
610
|
-
item: {
|
|
611
|
-
__type: string;
|
|
612
|
-
materials: null;
|
|
613
|
-
library: number;
|
|
614
|
-
adsorption: null;
|
|
615
|
-
position: number[];
|
|
616
|
-
quaternion: number[];
|
|
617
|
-
size: number[];
|
|
618
|
-
matrix: number[];
|
|
619
|
-
matrixWorld: number[];
|
|
620
|
-
name: string;
|
|
621
|
-
type: string[];
|
|
622
|
-
path: string;
|
|
623
|
-
center: number[];
|
|
624
|
-
id: string;
|
|
625
|
-
};
|
|
626
|
-
rail: boolean;
|
|
627
|
-
floorBoard: {
|
|
628
|
-
__type: string;
|
|
629
|
-
material: {
|
|
630
|
-
__type: string;
|
|
631
|
-
type: string;
|
|
632
|
-
value: number;
|
|
633
|
-
};
|
|
634
|
-
};
|
|
635
|
-
maskWallMaterial: {
|
|
636
|
-
__type: string;
|
|
637
|
-
type: string;
|
|
638
|
-
value: number;
|
|
639
|
-
};
|
|
640
|
-
windowBoard?: undefined;
|
|
641
|
-
} | {
|
|
642
|
-
__type: string;
|
|
643
|
-
target: {
|
|
644
|
-
__type: string;
|
|
645
|
-
id: string;
|
|
646
|
-
width: number;
|
|
647
|
-
height: number;
|
|
648
|
-
depth: number;
|
|
649
|
-
rotation: number;
|
|
650
|
-
position: number[];
|
|
651
|
-
leftR: null;
|
|
652
|
-
rightR: null;
|
|
653
|
-
};
|
|
654
|
-
flipX: boolean;
|
|
655
|
-
flipZ: boolean;
|
|
656
|
-
item: {
|
|
657
|
-
__type: string;
|
|
658
|
-
materials: null;
|
|
659
|
-
library: number;
|
|
660
|
-
adsorption: null;
|
|
661
|
-
position: number[];
|
|
662
|
-
quaternion: number[];
|
|
663
|
-
size: number[];
|
|
664
|
-
matrix: number[];
|
|
665
|
-
matrixWorld: number[];
|
|
666
|
-
name: string;
|
|
667
|
-
type: string[];
|
|
668
|
-
path: string;
|
|
669
|
-
center: number[];
|
|
670
|
-
id: string;
|
|
671
|
-
};
|
|
672
|
-
rail: boolean;
|
|
673
|
-
windowBoard: {
|
|
674
|
-
__type: string;
|
|
675
|
-
material: {
|
|
676
|
-
__type: string;
|
|
677
|
-
type: string;
|
|
678
|
-
value: number;
|
|
679
|
-
};
|
|
680
|
-
};
|
|
681
|
-
maskWallMaterial: {
|
|
682
|
-
__type: string;
|
|
683
|
-
type: string;
|
|
684
|
-
value: number;
|
|
685
|
-
};
|
|
686
|
-
floorBoard?: undefined;
|
|
687
|
-
})[];
|
|
688
|
-
Wall: {
|
|
689
|
-
__type: string;
|
|
690
|
-
target: {
|
|
691
|
-
__type: string;
|
|
692
|
-
id: string;
|
|
693
|
-
holes: string[];
|
|
694
|
-
};
|
|
695
|
-
faces: ({
|
|
696
|
-
__type: string;
|
|
697
|
-
isInner: boolean;
|
|
698
|
-
index: number;
|
|
699
|
-
roomName: string;
|
|
700
|
-
roomType: string;
|
|
701
|
-
material: {
|
|
702
|
-
__type: string;
|
|
703
|
-
type: string;
|
|
704
|
-
value: number;
|
|
705
|
-
};
|
|
706
|
-
baseBoard: {
|
|
707
|
-
__type: string;
|
|
708
|
-
material: {
|
|
709
|
-
__type: string;
|
|
710
|
-
type: string;
|
|
711
|
-
value: number;
|
|
712
|
-
};
|
|
713
|
-
roomName: string;
|
|
714
|
-
};
|
|
715
|
-
upBoard: null;
|
|
716
|
-
cornerLines: never[];
|
|
717
|
-
decorationBoards: never[];
|
|
718
|
-
} | {
|
|
719
|
-
__type: string;
|
|
720
|
-
isInner: boolean;
|
|
721
|
-
index: number;
|
|
722
|
-
roomName: string;
|
|
723
|
-
roomType: string;
|
|
724
|
-
material: {
|
|
725
|
-
__type: string;
|
|
726
|
-
type: string;
|
|
727
|
-
value: number;
|
|
728
|
-
};
|
|
729
|
-
upBoard: null;
|
|
730
|
-
cornerLines: never[];
|
|
731
|
-
decorationBoards: never[];
|
|
732
|
-
baseBoard?: undefined;
|
|
733
|
-
} | {
|
|
734
|
-
__type: string;
|
|
735
|
-
index: number;
|
|
736
|
-
isInner: boolean;
|
|
737
|
-
roomName: null;
|
|
738
|
-
material: {
|
|
739
|
-
__type: string;
|
|
740
|
-
type: string;
|
|
741
|
-
value: number;
|
|
742
|
-
};
|
|
743
|
-
baseBoard: null;
|
|
744
|
-
roomType?: undefined;
|
|
745
|
-
upBoard?: undefined;
|
|
746
|
-
cornerLines?: undefined;
|
|
747
|
-
decorationBoards?: undefined;
|
|
748
|
-
})[];
|
|
749
|
-
}[];
|
|
750
|
-
ItemGroup: {
|
|
751
|
-
__type: string;
|
|
752
|
-
adsorption: string;
|
|
753
|
-
position: number[];
|
|
754
|
-
quaternion: number[];
|
|
755
|
-
size: number[];
|
|
756
|
-
matrix: number[];
|
|
757
|
-
matrixWorld: number[];
|
|
758
|
-
items: {
|
|
759
|
-
__type: string;
|
|
760
|
-
materials: null;
|
|
761
|
-
library: number;
|
|
762
|
-
adsorption: null;
|
|
763
|
-
position: number[];
|
|
764
|
-
quaternion: number[];
|
|
765
|
-
size: number[];
|
|
766
|
-
matrix: number[];
|
|
767
|
-
matrixWorld: number[];
|
|
768
|
-
name: string;
|
|
769
|
-
type: string[];
|
|
770
|
-
path: string;
|
|
771
|
-
center: number[];
|
|
772
|
-
id: string;
|
|
773
|
-
roomName: string;
|
|
774
|
-
}[];
|
|
775
|
-
name: string;
|
|
776
|
-
description: string;
|
|
777
|
-
id: string;
|
|
778
|
-
}[];
|
|
779
|
-
PictureCaptures: {
|
|
780
|
-
__type: string;
|
|
781
|
-
position: number[];
|
|
782
|
-
direction: number[];
|
|
783
|
-
fov: number;
|
|
784
|
-
size: string;
|
|
785
|
-
extra: {};
|
|
786
|
-
roomName: string;
|
|
787
|
-
standingPosition: number[];
|
|
788
|
-
}[];
|
|
789
|
-
PanoCaptures: {
|
|
790
|
-
__type: string;
|
|
791
|
-
position: number[];
|
|
792
|
-
direction: number[];
|
|
793
|
-
fov: number;
|
|
794
|
-
size: string;
|
|
795
|
-
extra: {};
|
|
796
|
-
roomName: string;
|
|
797
|
-
standingPosition: number[];
|
|
798
|
-
}[];
|
|
799
|
-
AnimationCaptures: {
|
|
800
|
-
__type: string;
|
|
801
|
-
position: number[];
|
|
802
|
-
direction: number[];
|
|
803
|
-
fov: number;
|
|
804
|
-
size: string;
|
|
805
|
-
extra: {};
|
|
806
|
-
roomName: string;
|
|
807
|
-
standingPosition: number[];
|
|
808
|
-
}[];
|
|
809
|
-
RemakeCaptures: never[];
|
|
810
|
-
};
|
|
811
|
-
manifest: ({
|
|
812
|
-
id: number;
|
|
813
|
-
path: string;
|
|
814
|
-
name: string;
|
|
815
|
-
width: number;
|
|
816
|
-
height: number;
|
|
817
|
-
depth: number;
|
|
818
|
-
matrix: number[];
|
|
819
|
-
information: {};
|
|
820
|
-
areaSize?: undefined;
|
|
821
|
-
customId?: undefined;
|
|
822
|
-
} | {
|
|
823
|
-
id: number;
|
|
824
|
-
path: string;
|
|
825
|
-
name: string;
|
|
826
|
-
width: number;
|
|
827
|
-
height: number;
|
|
828
|
-
depth: number;
|
|
829
|
-
areaSize: number;
|
|
830
|
-
matrix: number[];
|
|
831
|
-
information: {};
|
|
832
|
-
customId: string;
|
|
833
|
-
})[];
|
|
834
|
-
outline_floor_plan: {
|
|
835
|
-
checksum: string;
|
|
836
|
-
index: number;
|
|
837
|
-
url: string;
|
|
838
|
-
}[];
|
|
839
|
-
picture_url: string;
|
|
840
|
-
animation_file_url: string;
|
|
841
|
-
animation_picture_url: string;
|
|
842
|
-
modelAsync: boolean;
|
|
843
|
-
};
|