@realsee/dnalogel 3.51.0 → 3.52.0
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/CHANGELOG.md +12 -0
- package/dist/Object3DHelperPlugin/Controller.d.ts +9 -9
- package/dist/Object3DHelperPlugin/FiveControllerWrapper.d.ts +4 -2
- package/dist/PanoMeasurePlugin/Model/area.d.ts +1 -1
- package/dist/PanoMeasurePlugin/Model/polygon.d.ts +1 -1
- package/dist/PanoMeasurePlugin/typings/data.d.ts +1 -2
- package/dist/Sculpt/Editors/BoxMeshEditor.d.ts +5 -0
- package/dist/Sculpt/Editors/CircleMeshEditor.d.ts +5 -0
- package/dist/Sculpt/Editors/CylinderMeshEditor.d.ts +5 -0
- package/dist/Sculpt/Editors/PrismMeshEditor.d.ts +5 -0
- package/dist/Sculpt/Editors/RectangleMeshEditor.d.ts +5 -0
- package/dist/Sculpt/Meshes/Box.d.ts +6 -24
- package/dist/Sculpt/Meshes/Circle.d.ts +0 -4
- package/dist/Sculpt/Meshes/Cylinder.d.ts +0 -1
- package/dist/Sculpt/Meshes/Line.d.ts +9 -22
- package/dist/Sculpt/Meshes/Polygon.d.ts +1 -5
- package/dist/Sculpt/Meshes/PolygonWithEdge.d.ts +1 -1
- package/dist/Sculpt/Meshes/Prism.d.ts +29 -10
- package/dist/Sculpt/Meshes/Rectangle.d.ts +1 -1
- package/dist/Sculpt/Objects/Base/index.d.ts +2 -1
- package/dist/Sculpt/Objects/Box/index.d.ts +7 -2
- package/dist/Sculpt/Objects/Circle/index.d.ts +3 -0
- package/dist/Sculpt/Objects/Cylinder/index.d.ts +3 -0
- package/dist/Sculpt/Objects/Line/index.d.ts +3 -0
- package/dist/Sculpt/Objects/Point/index.d.ts +3 -0
- package/dist/Sculpt/Objects/Polygon/index.d.ts +3 -0
- package/dist/Sculpt/Objects/Polyline/index.d.ts +3 -0
- package/dist/Sculpt/Objects/Prism/index.d.ts +3 -0
- package/dist/Sculpt/Objects/Rectangle/index.d.ts +12 -0
- package/dist/Sculpt/index.d.ts +11 -10
- package/dist/Sculpt/typings/style.d.ts +6 -0
- package/dist/Sculpt/utils/export.d.ts +24 -18
- package/dist/Sculpt/utils/sortPositionsByCameraPosition.d.ts +5 -0
- package/dist/Sculpt/utils/three/ColoredMesh.d.ts +4 -0
- package/dist/index.cjs.js +88 -3009
- package/dist/index.d.ts +79 -1
- package/dist/index.js +35153 -54255
- package/dist/index.umd.js +81 -3002
- package/dist/shared-utils/Object3DHelper/Base/BaseController.d.ts +1 -0
- package/dist/shared-utils/Object3DHelper/Base/BaseHelper.d.ts +7 -3
- package/dist/shared-utils/Object3DHelper/Controller/ScaleController.d.ts +0 -1
- package/dist/shared-utils/Object3DHelper/Helper/BoundingBoxHelper.d.ts +3 -1
- package/dist/shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.d.ts +2 -0
- package/dist/shared-utils/Object3DHelper/Helper/MoveHelper.d.ts +2 -1
- package/dist/shared-utils/Object3DHelper/Helper/RotateHelper.d.ts +2 -1
- package/dist/shared-utils/Object3DHelper/Helper/ScaleHelper.d.ts +4 -2
- package/dist/shared-utils/Object3DHelper/typings/index.d.ts +1 -1
- package/dist/shared-utils/Object3DHelper/utils/calculateScaleByCamera.d.ts +4 -1
- package/dist/shared-utils/five/FiveLine.d.ts +18 -14
- package/dist/shared-utils/index.d.ts +0 -1
- package/dist/shared-utils/math/planimetry.d.ts +1 -1
- package/dist/shared-utils/tag.d.ts +5 -7
- package/dist/shared-utils/three/boundingBox.d.ts +14 -20
- package/dist/shared-utils/three/core/LineGeometry.d.ts +13 -0
- package/dist/shared-utils/three/core/PrismGeometry.d.ts +14 -0
- package/dist/shared-utils/three/geometryUtil.d.ts +8 -0
- package/dist/shared-utils/three/getNormal.d.ts +5 -2
- package/libs/AreaMakerPlugin/Controller.js +47 -100
- package/libs/AreaMakerPlugin/index.js +12 -65
- package/libs/AreaMakerPlugin/utils/Item.js +102 -157
- package/libs/CSS3DRenderPlugin/Controller.js +45 -93
- package/libs/CSS3DRenderPlugin/index.js +15 -63
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +51 -106
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +79 -131
- package/libs/CruisePlugin/BaseController.js +90 -143
- package/libs/CruisePlugin/Move.js +39 -83
- package/libs/CruisePlugin/Work.js +52 -96
- package/libs/CruisePlugin/index.js +23 -67
- package/libs/CurrentPanoImagePlugin/Controller.js +88 -141
- package/libs/CurrentPanoImagePlugin/index.js +11 -64
- package/libs/GuideLinePlugin/Controller.js +13 -57
- package/libs/GuideLinePlugin/GuideLineItem.js +20 -64
- package/libs/GuideLinePlugin/GuideLineModeItem/index.js +3 -8
- package/libs/GuideLinePlugin/GuideLineModeItem.js +15 -59
- package/libs/GuideLinePlugin/index.js +23 -67
- package/libs/ModelMakerPlugin/Controller.js +125 -165
- package/libs/ModelMakerPlugin/index.js +23 -63
- package/libs/ModelMakerPlugin/item/baseItem.js +2 -3
- package/libs/ModelMakerPlugin/item/boxItem.js +2 -3
- package/libs/ModelMakerPlugin/item/polygonItem.js +6 -7
- package/libs/ModelMakerPlugin/item/prismItem.js +2 -3
- package/libs/ModelMakerPlugin/utils/getFiveDomEvent.js +2 -3
- package/libs/ModelTVVideoPlugin/Plugin.js +49 -97
- package/libs/ModelTVVideoPlugin/index.js +8 -56
- package/libs/Object3DHelperPlugin/Controller.d.ts +9 -9
- package/libs/Object3DHelperPlugin/Controller.js +105 -92
- package/libs/Object3DHelperPlugin/FiveControllerWrapper.d.ts +4 -2
- package/libs/Object3DHelperPlugin/FiveControllerWrapper.js +35 -30
- package/libs/Object3DHelperPlugin/index.js +15 -30
- package/libs/PanoCompassPlugin/Controller.js +46 -93
- package/libs/PanoCompassPlugin/index.js +17 -64
- package/libs/PanoCursorRaycasterPlugin/index.js +4 -3
- package/libs/PanoDoorLabelPlugin/BaseController.js +27 -80
- package/libs/PanoDoorLabelPlugin/Controller.js +80 -133
- package/libs/PanoDoorLabelPlugin/index.js +11 -64
- package/libs/PanoMeasurePlugin/Components/Controller0.js +79 -128
- package/libs/PanoMeasurePlugin/Components/Controller1.js +92 -141
- package/libs/PanoMeasurePlugin/Controller/BaseController.js +3 -2
- package/libs/PanoMeasurePlugin/Controller/EditController.js +73 -122
- package/libs/PanoMeasurePlugin/Controller/MixedController.js +3 -2
- package/libs/PanoMeasurePlugin/Controller/ViewController.js +3 -2
- package/libs/PanoMeasurePlugin/Controller/WatchController.js +72 -121
- package/libs/PanoMeasurePlugin/Controller/index.js +89 -135
- package/libs/PanoMeasurePlugin/Model/area.d.ts +1 -1
- package/libs/PanoMeasurePlugin/Model/area.js +25 -74
- package/libs/PanoMeasurePlugin/Model/index.js +3 -2
- package/libs/PanoMeasurePlugin/Model/line.js +1 -0
- package/libs/PanoMeasurePlugin/Model/polygon.d.ts +1 -1
- package/libs/PanoMeasurePlugin/Model/polygon.js +7 -7
- package/libs/PanoMeasurePlugin/Model/polyline.js +3 -2
- package/libs/PanoMeasurePlugin/Modules/Magnifier.js +1 -56
- package/libs/PanoMeasurePlugin/Modules/UIController/index.js +17 -66
- package/libs/PanoMeasurePlugin/index.js +18 -64
- package/libs/PanoMeasurePlugin/typings/data.d.ts +1 -2
- package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +5 -59
- package/libs/PanoMeasurePlugin/utils/line.js +3 -2
- package/libs/PanoRulerProPlugin/Controller.js +34 -89
- package/libs/PanoRulerProPlugin/RulerItems.js +92 -147
- package/libs/PanoRulerProPlugin/index.js +10 -65
- package/libs/PanoSpatialTagPlugin/Plugin.js +130 -178
- package/libs/PanoSpatialTagPlugin/index.js +6 -54
- package/libs/PanoTagPlugin/Components/Common/TagPoint.js +61 -116
- package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +138 -193
- package/libs/PanoTagPlugin/Components/Tag/index.js +140 -194
- package/libs/PanoTagPlugin/Components/TagContainer.js +58 -112
- package/libs/PanoTagPlugin/Components/TagItem.js +137 -191
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +109 -164
- package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +22 -76
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +33 -87
- package/libs/PanoTagPlugin/controller/Tag/PointTag.js +39 -94
- package/libs/PanoTagPlugin/controller/TagRender.js +18 -62
- package/libs/PanoTagPlugin/controller/TagUtil.js +80 -124
- package/libs/PanoTagPlugin/controller/index.js +37 -81
- package/libs/PanoTagPlugin/index.js +28 -72
- package/libs/PanoTagPlugin/utils/model/mediaPlane.js +14 -14
- package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +22 -77
- package/libs/PanoVideoPlugin/Controller.js +43 -96
- package/libs/PanoVideoPlugin/VideoMeshController.js +64 -119
- package/libs/PanoVideoPlugin/index.js +14 -67
- package/libs/PipelinePlugin/Controller.js +123 -176
- package/libs/PipelinePlugin/index.js +11 -64
- package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +15 -70
- package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +3 -58
- package/libs/PipelinePlugin/utils/Objects/Pipe.js +42 -97
- package/libs/Sculpt/Editors/BoxMeshEditor.d.ts +5 -0
- package/libs/Sculpt/Editors/BoxMeshEditor.js +98 -0
- package/libs/Sculpt/Editors/CircleMeshEditor.d.ts +5 -0
- package/libs/Sculpt/Editors/CircleMeshEditor.js +9 -0
- package/libs/Sculpt/Editors/CylinderMeshEditor.d.ts +5 -0
- package/libs/Sculpt/Editors/CylinderMeshEditor.js +41 -0
- package/libs/Sculpt/Editors/PrismMeshEditor.d.ts +5 -0
- package/libs/Sculpt/Editors/PrismMeshEditor.js +43 -0
- package/libs/Sculpt/Editors/RectangleMeshEditor.d.ts +5 -0
- package/libs/Sculpt/Editors/RectangleMeshEditor.js +70 -0
- package/libs/Sculpt/Meshes/Box.d.ts +6 -24
- package/libs/Sculpt/Meshes/Box.js +22 -93
- package/libs/Sculpt/Meshes/Circle.d.ts +0 -4
- package/libs/Sculpt/Meshes/Circle.js +18 -27
- package/libs/Sculpt/Meshes/Cylinder.d.ts +0 -1
- package/libs/Sculpt/Meshes/Cylinder.js +17 -24
- package/libs/Sculpt/Meshes/Line.d.ts +9 -22
- package/libs/Sculpt/Meshes/Line.js +85 -104
- package/libs/Sculpt/Meshes/LineWithDots.js +10 -14
- package/libs/Sculpt/Meshes/Point.js +29 -34
- package/libs/Sculpt/Meshes/Polygon.d.ts +1 -5
- package/libs/Sculpt/Meshes/Polygon.js +40 -53
- package/libs/Sculpt/Meshes/PolygonWithEdge.d.ts +1 -1
- package/libs/Sculpt/Meshes/Prism.d.ts +29 -10
- package/libs/Sculpt/Meshes/Prism.js +108 -84
- package/libs/Sculpt/Meshes/Rectangle.d.ts +1 -1
- package/libs/Sculpt/Meshes/Rectangle.js +7 -10
- package/libs/Sculpt/Meshes/RectangleWithEdge.js +17 -20
- package/libs/Sculpt/Objects/Base/index.d.ts +2 -1
- package/libs/Sculpt/Objects/Base/index.js +16 -17
- package/libs/Sculpt/Objects/Box/index.d.ts +7 -2
- package/libs/Sculpt/Objects/Box/index.js +72 -60
- package/libs/Sculpt/Objects/Circle/index.d.ts +3 -0
- package/libs/Sculpt/Objects/Circle/index.js +34 -30
- package/libs/Sculpt/Objects/Cylinder/index.d.ts +3 -0
- package/libs/Sculpt/Objects/Cylinder/index.js +46 -42
- package/libs/Sculpt/Objects/Line/Editor.js +8 -10
- package/libs/Sculpt/Objects/Line/index.d.ts +3 -0
- package/libs/Sculpt/Objects/Line/index.js +45 -41
- package/libs/Sculpt/Objects/Point/index.d.ts +3 -0
- package/libs/Sculpt/Objects/Point/index.js +33 -29
- package/libs/Sculpt/Objects/Polygon/index.d.ts +3 -0
- package/libs/Sculpt/Objects/Polygon/index.js +67 -63
- package/libs/Sculpt/Objects/Polyline/index.d.ts +3 -0
- package/libs/Sculpt/Objects/Polyline/index.js +46 -42
- package/libs/Sculpt/Objects/Prism/index.d.ts +3 -0
- package/libs/Sculpt/Objects/Prism/index.js +58 -53
- package/libs/Sculpt/Objects/Rectangle/index.d.ts +12 -0
- package/libs/Sculpt/Objects/Rectangle/index.js +142 -81
- package/libs/Sculpt/index.d.ts +11 -10
- package/libs/Sculpt/index.js +105 -107
- package/libs/Sculpt/typings/style.d.ts +6 -0
- package/libs/Sculpt/utils/export.d.ts +24 -18
- package/libs/Sculpt/utils/export.js +52 -19
- package/libs/Sculpt/utils/sortPositionsByCameraPosition.d.ts +5 -0
- package/libs/Sculpt/utils/sortPositionsByCameraPosition.js +9 -0
- package/libs/Sculpt/utils/three/ColoredMesh.d.ts +4 -0
- package/libs/Sculpt/utils/three/ColoredMesh.js +40 -37
- package/libs/base/BasePlugin.js +10 -15
- package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +96 -147
- package/libs/floorplan/MapviewFloorplanPlugin/index.js +12 -63
- package/libs/floorplan/ModelFloorplanPlugin/Controller.js +53 -105
- package/libs/floorplan/ModelFloorplanPlugin/index.js +11 -63
- package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +65 -118
- package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +11 -64
- package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +54 -106
- package/libs/floorplan/TopviewFloorplanPlugin/index.js +11 -63
- package/libs/floorplan/index.js +0 -5
- package/libs/index.d.ts +79 -1
- package/libs/index.js +229 -215
- package/libs/shared-utils/Object3DHelper/Base/BaseController.d.ts +1 -0
- package/libs/shared-utils/Object3DHelper/Base/BaseController.js +112 -122
- package/libs/shared-utils/Object3DHelper/Base/BaseHelper.d.ts +7 -3
- package/libs/shared-utils/Object3DHelper/Base/BaseHelper.js +60 -39
- package/libs/shared-utils/Object3DHelper/Controller/RotateController.js +47 -47
- package/libs/shared-utils/Object3DHelper/Controller/ScaleController.d.ts +0 -1
- package/libs/shared-utils/Object3DHelper/Controller/ScaleController.js +28 -28
- package/libs/shared-utils/Object3DHelper/Helper/BoundingBoxHelper.d.ts +3 -1
- package/libs/shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js +25 -18
- package/libs/shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.d.ts +2 -0
- package/libs/shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js +18 -14
- package/libs/shared-utils/Object3DHelper/Helper/MoveHelper.d.ts +2 -1
- package/libs/shared-utils/Object3DHelper/Helper/MoveHelper.js +1 -0
- package/libs/shared-utils/Object3DHelper/Helper/RotateHelper.d.ts +2 -1
- package/libs/shared-utils/Object3DHelper/Helper/RotateHelper.js +2 -1
- package/libs/shared-utils/Object3DHelper/Helper/ScaleHelper.d.ts +4 -2
- package/libs/shared-utils/Object3DHelper/Helper/ScaleHelper.js +40 -28
- package/libs/shared-utils/Object3DHelper/typings/index.d.ts +1 -1
- package/libs/shared-utils/Object3DHelper/utils/calculateScaleByCamera.d.ts +4 -1
- package/libs/shared-utils/Object3DHelper/utils/calculateScaleByCamera.js +4 -4
- package/libs/shared-utils/five/FiveDomEvents.js +88 -88
- package/libs/shared-utils/five/FiveLine.d.ts +18 -14
- package/libs/shared-utils/five/FiveLine.js +31 -13
- package/libs/shared-utils/five/index.js +2 -7
- package/libs/shared-utils/five/lookObject.js +27 -32
- package/libs/shared-utils/index.d.ts +0 -1
- package/libs/shared-utils/index.js +31 -33
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/math/planimetry.d.ts +1 -1
- package/libs/shared-utils/tag.d.ts +5 -7
- package/libs/shared-utils/tag.js +1 -1
- package/libs/shared-utils/three/boundingBox.d.ts +14 -20
- package/libs/shared-utils/three/core/LineGeometry.d.ts +13 -0
- package/libs/shared-utils/three/core/LineGeometry.js +26 -0
- package/libs/shared-utils/three/core/PrismGeometry.d.ts +14 -0
- package/libs/shared-utils/three/core/PrismGeometry.js +42 -0
- package/libs/shared-utils/three/earcut3D.js +5 -5
- package/libs/shared-utils/three/geometryUtil.d.ts +8 -0
- package/libs/shared-utils/three/geometryUtil.js +3 -1
- package/libs/shared-utils/three/getNormal.d.ts +5 -2
- package/libs/shared-utils/three/getNormal.js +6 -5
- package/libs/shared-utils/three/index.js +0 -5
- package/package.json +1 -1
- package/dist/Sculpt/Objects/Box/Editor.d.ts +0 -5
- package/dist/Sculpt/Objects/Circle/Editor.d.ts +0 -5
- package/dist/Sculpt/Objects/Cylinder/Editor.d.ts +0 -5
- package/dist/Sculpt/Objects/Prism/Editor.d.ts +0 -5
- package/dist/Sculpt/Objects/Rectangle/Editor.d.ts +0 -5
- package/dist/Sculpt/utils/getBetterNormal.d.ts +0 -2
- package/libs/Sculpt/Objects/Box/Editor.d.ts +0 -5
- package/libs/Sculpt/Objects/Box/Editor.js +0 -44
- package/libs/Sculpt/Objects/Circle/Editor.d.ts +0 -5
- package/libs/Sculpt/Objects/Circle/Editor.js +0 -9
- package/libs/Sculpt/Objects/Cylinder/Editor.d.ts +0 -5
- package/libs/Sculpt/Objects/Cylinder/Editor.js +0 -41
- package/libs/Sculpt/Objects/Prism/Editor.d.ts +0 -5
- package/libs/Sculpt/Objects/Prism/Editor.js +0 -44
- package/libs/Sculpt/Objects/Rectangle/Editor.d.ts +0 -5
- package/libs/Sculpt/Objects/Rectangle/Editor.js +0 -9
- package/libs/Sculpt/utils/getBetterNormal.d.ts +0 -2
- package/libs/Sculpt/utils/getBetterNormal.js +0 -8
- package/libs/vendor/three/build/three.module.js +0 -19336
- package/libs/vendor/three/examples/jsm/lines/LineGeometry.js +0 -28
- package/libs/vendor/three/examples/jsm/lines/LineSegmentsGeometry.js +0 -69
|
@@ -4,19 +4,14 @@ import "three";
|
|
|
4
4
|
import { noTypecheck as V } from "../utils/noTypecheck.js";
|
|
5
5
|
import tt from "./Common/TagPoint.js";
|
|
6
6
|
import "../../shared-utils/tag.js";
|
|
7
|
-
import { isModelLike as
|
|
7
|
+
import { isModelLike as et } from "../../shared-utils/five/mode.js";
|
|
8
8
|
import "hammerjs";
|
|
9
9
|
import "../../shared-utils/three/PointSelector/index.js";
|
|
10
10
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
11
11
|
import "@realsee/five/line";
|
|
12
|
-
import "../../vendor/three/examples/jsm/lines/LineGeometry.js";
|
|
13
12
|
import "../../shared-utils/three/core/Sphere.js";
|
|
14
13
|
import "animejs";
|
|
15
14
|
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
16
|
-
import "../../Sculpt/Meshes/Polygon.js";
|
|
17
|
-
import "../../Sculpt/utils/Modules/Global.js";
|
|
18
|
-
import "../../vendor/hotkeys-js/dist/hotkeys.esm.js";
|
|
19
|
-
import "../../Sculpt/utils/three/rayOnLine.js";
|
|
20
15
|
import "./Tag/TextTag/index.js";
|
|
21
16
|
import "./Tag/TextTag/TextTag.js";
|
|
22
17
|
import "./Common/Line/Straight.js";
|
|
@@ -108,62 +103,12 @@ import "../../Sculpt/utils/removeAllTag.js";
|
|
|
108
103
|
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
109
104
|
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
110
105
|
import "../../shared-utils/util.js";
|
|
106
|
+
import "../../shared-utils/three/core/LineGeometry.js";
|
|
111
107
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
112
108
|
import "../../shared-utils/isTouchDevice.js";
|
|
113
109
|
import "../../shared-utils/five/getPosition.js";
|
|
114
110
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
115
111
|
import "../../shared-utils/three/PointSelector/utils/contents.js";
|
|
116
|
-
import "../../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
117
|
-
import "../../vendor/three/build/three.module.js";
|
|
118
|
-
import "../../shared-utils/three/generatePolygonGeometry.js";
|
|
119
|
-
import "../../shared-utils/three/earcut3D.js";
|
|
120
|
-
import "earcut";
|
|
121
|
-
import "../../shared-utils/three/getNormal.js";
|
|
122
|
-
import "../../PanoMeasurePlugin/utils/isIntersecting.js";
|
|
123
|
-
import "../../Sculpt/utils/three/ColoredMesh.js";
|
|
124
|
-
import "../../shared-utils/three/geometryUtil.js";
|
|
125
|
-
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
126
|
-
import "../../Object3DHelperPlugin/Controller.js";
|
|
127
|
-
import "../../base/BasePlugin.js";
|
|
128
|
-
import "../../shared-utils/url/absoluteUrl.js";
|
|
129
|
-
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
130
|
-
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
131
|
-
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
132
|
-
import "../../shared-utils/three/boundingBox.js";
|
|
133
|
-
import "../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
134
|
-
import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
135
|
-
import "../../shared-utils/Object3DHelper/Constants/color.js";
|
|
136
|
-
import "../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
137
|
-
import "../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
138
|
-
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
139
|
-
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
140
|
-
import "../../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
141
|
-
import "../../shared-utils/Object3DHelper/Helper/RotateHelper.js";
|
|
142
|
-
import "../../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
|
|
143
|
-
import "../../shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
|
|
144
|
-
import "../../shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
|
|
145
|
-
import "../../shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
|
|
146
|
-
import "../../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
147
|
-
import "../../shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
148
|
-
import "../../shared-utils/Object3DHelper/Base/BaseController.js";
|
|
149
|
-
import "../../shared-utils/threex/domevents/index.js";
|
|
150
|
-
import "../../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
151
|
-
import "../../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
152
|
-
import "../../Object3DHelperPlugin/FiveControllerWrapper.js";
|
|
153
|
-
import "../../shared-utils/Object3DHelper/index.js";
|
|
154
|
-
import "../../shared-utils/Object3DHelper/Controller/RotateController.js";
|
|
155
|
-
import "../../shared-utils/math/rad2Deg.js";
|
|
156
|
-
import "../../shared-utils/math/deg2Rad.js";
|
|
157
|
-
import "../../shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
|
|
158
|
-
import "../../shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
|
|
159
|
-
import "../../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
|
|
160
|
-
import "../../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
161
|
-
import "../../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
|
|
162
|
-
import "../../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
|
|
163
|
-
import "../../shared-utils/Object3DHelper/Controller/ScaleController.js";
|
|
164
|
-
import "../../shared-utils/five/fiveModelLoad.js";
|
|
165
|
-
import "../../shared-utils/five/FiveDomEvents.js";
|
|
166
|
-
import "../../shared-utils/five/calculateThreeMouse.js";
|
|
167
112
|
import "./Tag/AudioTag/index.js";
|
|
168
113
|
import "./Tag/AudioTag/AudioTag.js";
|
|
169
114
|
import "./Common/Audio.js";
|
|
@@ -191,6 +136,7 @@ import "../../shared-utils/three/loadVideoTexture.js";
|
|
|
191
136
|
import "../../shared-utils/device.js";
|
|
192
137
|
import "../../shared-utils/three/getPositionsByObjectFit.js";
|
|
193
138
|
import "../../shared-utils/three/FragmentTransparencyMaterial.js";
|
|
139
|
+
import "../../shared-utils/three/getNormal.js";
|
|
194
140
|
import "../controller/Tag/BaseTag.js";
|
|
195
141
|
import "../utils/tag/calculateTagConfig.js";
|
|
196
142
|
import "../../vendor/object-assign-deep/objectAssignDeep.js";
|
|
@@ -209,333 +155,333 @@ import "../../shared-utils/url/getUrl.js";
|
|
|
209
155
|
import "../../shared-utils/five/getFloorIndex.js";
|
|
210
156
|
import "../../shared-utils/safeObj.js";
|
|
211
157
|
import "../utils/Cache.js";
|
|
212
|
-
function
|
|
213
|
-
Q(
|
|
158
|
+
function it(o) {
|
|
159
|
+
Q(o, "svelte-2g2g8a", ".tag.svelte-2g2g8a{position:absolute;width:0rem;height:0rem;overflow:visible;pointer-events:auto;will-change:opacity;transition:opacity 0.2s linear}.tag.enableZIndex.svelte-2g2g8a{position:absolute}.tag.hide.svelte-2g2g8a{opacity:0;pointer-events:none}.tag.hide.svelte-2g2g8a *{pointer-events:none !important}.tag.unClickable.svelte-2g2g8a{pointer-events:none !important}.tag.unClickable.svelte-2g2g8a *{pointer-events:none !important}");
|
|
214
160
|
}
|
|
215
|
-
function j(
|
|
216
|
-
let t,
|
|
217
|
-
const M = [rt,
|
|
218
|
-
function S(
|
|
161
|
+
function j(o) {
|
|
162
|
+
let t, i, e, r, p, a, b, k, s;
|
|
163
|
+
const M = [rt, ot], u = [];
|
|
164
|
+
function S(n, l) {
|
|
219
165
|
return (
|
|
220
166
|
/*havePoint*/
|
|
221
|
-
|
|
167
|
+
n[8] ? 0 : 1
|
|
222
168
|
);
|
|
223
169
|
}
|
|
224
|
-
|
|
225
|
-
const
|
|
226
|
-
function y(
|
|
170
|
+
i = S(o), e = u[i] = M[i](o);
|
|
171
|
+
const m = [nt, pt], c = [];
|
|
172
|
+
function y(n, l) {
|
|
227
173
|
return (
|
|
228
174
|
/*haveContent*/
|
|
229
|
-
|
|
175
|
+
n[15] ? 0 : 1
|
|
230
176
|
);
|
|
231
177
|
}
|
|
232
|
-
return p = y(
|
|
178
|
+
return p = y(o), a = c[p] = m[p](o), {
|
|
233
179
|
c() {
|
|
234
|
-
t = Z("div"),
|
|
180
|
+
t = Z("div"), e.c(), r = X(), a.c(), d(t, "class", "tag svelte-2g2g8a"), d(
|
|
235
181
|
t,
|
|
236
182
|
"data-tag-id",
|
|
237
183
|
/*id*/
|
|
238
|
-
|
|
184
|
+
o[14]
|
|
239
185
|
), d(
|
|
240
186
|
t,
|
|
241
187
|
"data-tag-unfolded",
|
|
242
188
|
/*unfolded*/
|
|
243
|
-
|
|
189
|
+
o[6]
|
|
244
190
|
), d(t, "data-content-type", b = /*tag*/
|
|
245
|
-
|
|
246
|
-
|
|
191
|
+
o[0].contentType), d(t, "id", k = `tag-${/*id*/
|
|
192
|
+
o[14]}`), T(
|
|
247
193
|
t,
|
|
248
194
|
"unClickable",
|
|
249
195
|
/*tag*/
|
|
250
|
-
|
|
196
|
+
o[0].config.clickable === !1
|
|
251
197
|
), T(
|
|
252
198
|
t,
|
|
253
199
|
"hide",
|
|
254
200
|
/*hide*/
|
|
255
|
-
|
|
201
|
+
o[12]
|
|
256
202
|
), T(
|
|
257
203
|
t,
|
|
258
204
|
"enableZIndex",
|
|
259
205
|
/*zIndex*/
|
|
260
|
-
|
|
206
|
+
o[9]
|
|
261
207
|
), C(
|
|
262
208
|
t,
|
|
263
209
|
"z-index",
|
|
264
210
|
/*zIndex*/
|
|
265
|
-
|
|
211
|
+
o[9]
|
|
266
212
|
), C(t, "transform", `translate3d(${/*left*/
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
213
|
+
o[11]}, ${/*top*/
|
|
214
|
+
o[10]}, 0) scale(${/*screenPosition*/
|
|
215
|
+
o[7].scale})`);
|
|
270
216
|
},
|
|
271
|
-
m(
|
|
272
|
-
I(
|
|
217
|
+
m(n, l) {
|
|
218
|
+
I(n, t, l), u[i].m(t, null), Y(t, r), c[p].m(t, null), o[17](t), s = !0;
|
|
273
219
|
},
|
|
274
|
-
p(
|
|
275
|
-
let h =
|
|
276
|
-
|
|
220
|
+
p(n, l) {
|
|
221
|
+
let h = i;
|
|
222
|
+
i = S(n), i === h ? u[i].p(n, l) : (L(), g(u[h], 1, 1, () => {
|
|
277
223
|
u[h] = null;
|
|
278
|
-
}), z(),
|
|
224
|
+
}), z(), e = u[i], e ? e.p(n, l) : (e = u[i] = M[i](n), e.c()), _(e, 1), e.m(t, r));
|
|
279
225
|
let w = p;
|
|
280
|
-
p = y(
|
|
226
|
+
p = y(n), p === w ? c[p].p(n, l) : (L(), g(c[w], 1, 1, () => {
|
|
281
227
|
c[w] = null;
|
|
282
|
-
}), z(), a = c[p], a ? a.p(
|
|
228
|
+
}), z(), a = c[p], a ? a.p(n, l) : (a = c[p] = m[p](n), a.c()), _(a, 1), a.m(t, null)), (!s || l & /*id*/
|
|
283
229
|
16384) && d(
|
|
284
230
|
t,
|
|
285
231
|
"data-tag-id",
|
|
286
232
|
/*id*/
|
|
287
|
-
|
|
233
|
+
n[14]
|
|
288
234
|
), (!s || l & /*unfolded*/
|
|
289
235
|
64) && d(
|
|
290
236
|
t,
|
|
291
237
|
"data-tag-unfolded",
|
|
292
238
|
/*unfolded*/
|
|
293
|
-
|
|
239
|
+
n[6]
|
|
294
240
|
), (!s || l & /*tag*/
|
|
295
241
|
1 && b !== (b = /*tag*/
|
|
296
|
-
|
|
242
|
+
n[0].contentType)) && d(t, "data-content-type", b), (!s || l & /*id*/
|
|
297
243
|
16384 && k !== (k = `tag-${/*id*/
|
|
298
|
-
|
|
244
|
+
n[14]}`)) && d(t, "id", k), (!s || l & /*tag*/
|
|
299
245
|
1) && T(
|
|
300
246
|
t,
|
|
301
247
|
"unClickable",
|
|
302
248
|
/*tag*/
|
|
303
|
-
|
|
249
|
+
n[0].config.clickable === !1
|
|
304
250
|
), (!s || l & /*hide*/
|
|
305
251
|
4096) && T(
|
|
306
252
|
t,
|
|
307
253
|
"hide",
|
|
308
254
|
/*hide*/
|
|
309
|
-
|
|
255
|
+
n[12]
|
|
310
256
|
), (!s || l & /*zIndex*/
|
|
311
257
|
512) && T(
|
|
312
258
|
t,
|
|
313
259
|
"enableZIndex",
|
|
314
260
|
/*zIndex*/
|
|
315
|
-
|
|
261
|
+
n[9]
|
|
316
262
|
), l & /*zIndex*/
|
|
317
263
|
512 && C(
|
|
318
264
|
t,
|
|
319
265
|
"z-index",
|
|
320
266
|
/*zIndex*/
|
|
321
|
-
|
|
267
|
+
n[9]
|
|
322
268
|
), l & /*left, top, screenPosition*/
|
|
323
269
|
3200 && C(t, "transform", `translate3d(${/*left*/
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
270
|
+
n[11]}, ${/*top*/
|
|
271
|
+
n[10]}, 0) scale(${/*screenPosition*/
|
|
272
|
+
n[7].scale})`);
|
|
327
273
|
},
|
|
328
|
-
i(
|
|
329
|
-
s || (_(
|
|
274
|
+
i(n) {
|
|
275
|
+
s || (_(e), _(a), s = !0);
|
|
330
276
|
},
|
|
331
|
-
o(
|
|
332
|
-
g(
|
|
277
|
+
o(n) {
|
|
278
|
+
g(e), g(a), s = !1;
|
|
333
279
|
},
|
|
334
|
-
d(
|
|
335
|
-
|
|
280
|
+
d(n) {
|
|
281
|
+
n && P(t), u[i].d(), c[p].d(), o[17](null);
|
|
336
282
|
}
|
|
337
283
|
};
|
|
338
284
|
}
|
|
339
|
-
function
|
|
285
|
+
function ot(o) {
|
|
340
286
|
let t;
|
|
341
287
|
return {
|
|
342
288
|
c() {
|
|
343
289
|
t = Z("div"), d(t, "data-info", "tag point is disable");
|
|
344
290
|
},
|
|
345
|
-
m(
|
|
346
|
-
I(
|
|
291
|
+
m(i, e) {
|
|
292
|
+
I(i, t, e);
|
|
347
293
|
},
|
|
348
294
|
p: v,
|
|
349
295
|
i: v,
|
|
350
296
|
o: v,
|
|
351
|
-
d(
|
|
352
|
-
|
|
297
|
+
d(i) {
|
|
298
|
+
i && P(t);
|
|
353
299
|
}
|
|
354
300
|
};
|
|
355
301
|
}
|
|
356
|
-
function rt(
|
|
357
|
-
let t,
|
|
302
|
+
function rt(o) {
|
|
303
|
+
let t, i;
|
|
358
304
|
return t = new tt({ props: { tag: (
|
|
359
305
|
/*tag*/
|
|
360
|
-
|
|
306
|
+
o[0]
|
|
361
307
|
) } }), {
|
|
362
308
|
c() {
|
|
363
309
|
B(t.$$.fragment);
|
|
364
310
|
},
|
|
365
|
-
m(
|
|
366
|
-
E(t,
|
|
311
|
+
m(e, r) {
|
|
312
|
+
E(t, e, r), i = !0;
|
|
367
313
|
},
|
|
368
|
-
p(
|
|
314
|
+
p(e, r) {
|
|
369
315
|
const p = {};
|
|
370
316
|
r & /*tag*/
|
|
371
317
|
1 && (p.tag = /*tag*/
|
|
372
|
-
|
|
318
|
+
e[0]), t.$set(p);
|
|
373
319
|
},
|
|
374
|
-
i(
|
|
375
|
-
|
|
320
|
+
i(e) {
|
|
321
|
+
i || (_(t.$$.fragment, e), i = !0);
|
|
376
322
|
},
|
|
377
|
-
o(
|
|
378
|
-
g(t.$$.fragment,
|
|
323
|
+
o(e) {
|
|
324
|
+
g(t.$$.fragment, e), i = !1;
|
|
379
325
|
},
|
|
380
|
-
d(
|
|
381
|
-
G(t,
|
|
326
|
+
d(e) {
|
|
327
|
+
G(t, e);
|
|
382
328
|
}
|
|
383
329
|
};
|
|
384
330
|
}
|
|
385
|
-
function pt(
|
|
331
|
+
function pt(o) {
|
|
386
332
|
let t;
|
|
387
333
|
return {
|
|
388
334
|
c() {
|
|
389
335
|
t = Z("div"), d(t, "data-info", "tag content is disable");
|
|
390
336
|
},
|
|
391
|
-
m(
|
|
392
|
-
I(
|
|
337
|
+
m(i, e) {
|
|
338
|
+
I(i, t, e);
|
|
393
339
|
},
|
|
394
340
|
p: v,
|
|
395
341
|
i: v,
|
|
396
342
|
o: v,
|
|
397
|
-
d(
|
|
398
|
-
|
|
343
|
+
d(i) {
|
|
344
|
+
i && P(t);
|
|
399
345
|
}
|
|
400
346
|
};
|
|
401
347
|
}
|
|
402
|
-
function
|
|
403
|
-
let t,
|
|
348
|
+
function nt(o) {
|
|
349
|
+
let t, i;
|
|
404
350
|
return t = new $({
|
|
405
351
|
props: {
|
|
406
352
|
mediaStore: (
|
|
407
353
|
/*mediaStore*/
|
|
408
|
-
|
|
354
|
+
o[1]
|
|
409
355
|
),
|
|
410
356
|
tag: V(
|
|
411
357
|
/*tag*/
|
|
412
|
-
|
|
358
|
+
o[0]
|
|
413
359
|
),
|
|
414
360
|
hooks: (
|
|
415
361
|
/*hooks*/
|
|
416
|
-
|
|
362
|
+
o[16]
|
|
417
363
|
),
|
|
418
364
|
state: (
|
|
419
365
|
/*state*/
|
|
420
|
-
|
|
366
|
+
o[4]
|
|
421
367
|
),
|
|
422
368
|
temporaryState: (
|
|
423
369
|
/*temporaryState*/
|
|
424
|
-
|
|
370
|
+
o[5]
|
|
425
371
|
),
|
|
426
372
|
rendererMap: (
|
|
427
373
|
/*rendererMap*/
|
|
428
|
-
|
|
374
|
+
o[2]
|
|
429
375
|
),
|
|
430
376
|
contentTypeMap: (
|
|
431
377
|
/*contentTypeMap*/
|
|
432
|
-
|
|
378
|
+
o[3]
|
|
433
379
|
)
|
|
434
380
|
}
|
|
435
381
|
}), {
|
|
436
382
|
c() {
|
|
437
383
|
B(t.$$.fragment);
|
|
438
384
|
},
|
|
439
|
-
m(
|
|
440
|
-
E(t,
|
|
385
|
+
m(e, r) {
|
|
386
|
+
E(t, e, r), i = !0;
|
|
441
387
|
},
|
|
442
|
-
p(
|
|
388
|
+
p(e, r) {
|
|
443
389
|
const p = {};
|
|
444
390
|
r & /*mediaStore*/
|
|
445
391
|
2 && (p.mediaStore = /*mediaStore*/
|
|
446
|
-
|
|
392
|
+
e[1]), r & /*tag*/
|
|
447
393
|
1 && (p.tag = V(
|
|
448
394
|
/*tag*/
|
|
449
|
-
|
|
395
|
+
e[0]
|
|
450
396
|
)), r & /*state*/
|
|
451
397
|
16 && (p.state = /*state*/
|
|
452
|
-
|
|
398
|
+
e[4]), r & /*temporaryState*/
|
|
453
399
|
32 && (p.temporaryState = /*temporaryState*/
|
|
454
|
-
|
|
400
|
+
e[5]), r & /*rendererMap*/
|
|
455
401
|
4 && (p.rendererMap = /*rendererMap*/
|
|
456
|
-
|
|
402
|
+
e[2]), r & /*contentTypeMap*/
|
|
457
403
|
8 && (p.contentTypeMap = /*contentTypeMap*/
|
|
458
|
-
|
|
404
|
+
e[3]), t.$set(p);
|
|
459
405
|
},
|
|
460
|
-
i(
|
|
461
|
-
|
|
406
|
+
i(e) {
|
|
407
|
+
i || (_(t.$$.fragment, e), i = !0);
|
|
462
408
|
},
|
|
463
|
-
o(
|
|
464
|
-
g(t.$$.fragment,
|
|
409
|
+
o(e) {
|
|
410
|
+
g(t.$$.fragment, e), i = !1;
|
|
465
411
|
},
|
|
466
|
-
d(
|
|
467
|
-
G(t,
|
|
412
|
+
d(e) {
|
|
413
|
+
G(t, e);
|
|
468
414
|
}
|
|
469
415
|
};
|
|
470
416
|
}
|
|
471
|
-
function
|
|
472
|
-
let t,
|
|
417
|
+
function mt(o) {
|
|
418
|
+
let t, i, e = (
|
|
473
419
|
/*screenPosition*/
|
|
474
|
-
|
|
475
|
-
|
|
420
|
+
o[7] && !/*disable*/
|
|
421
|
+
o[13] && j(o)
|
|
476
422
|
);
|
|
477
423
|
return {
|
|
478
424
|
c() {
|
|
479
|
-
|
|
425
|
+
e && e.c(), t = U();
|
|
480
426
|
},
|
|
481
427
|
m(r, p) {
|
|
482
|
-
|
|
428
|
+
e && e.m(r, p), I(r, t, p), i = !0;
|
|
483
429
|
},
|
|
484
430
|
p(r, [p]) {
|
|
485
431
|
/*screenPosition*/
|
|
486
432
|
r[7] && !/*disable*/
|
|
487
|
-
r[13] ?
|
|
488
|
-
8320 && _(
|
|
489
|
-
|
|
433
|
+
r[13] ? e ? (e.p(r, p), p & /*screenPosition, disable*/
|
|
434
|
+
8320 && _(e, 1)) : (e = j(r), e.c(), _(e, 1), e.m(t.parentNode, t)) : e && (L(), g(e, 1, 1, () => {
|
|
435
|
+
e = null;
|
|
490
436
|
}), z());
|
|
491
437
|
},
|
|
492
438
|
i(r) {
|
|
493
|
-
|
|
439
|
+
i || (_(e), i = !0);
|
|
494
440
|
},
|
|
495
441
|
o(r) {
|
|
496
|
-
g(
|
|
442
|
+
g(e), i = !1;
|
|
497
443
|
},
|
|
498
444
|
d(r) {
|
|
499
|
-
|
|
445
|
+
e && e.d(r), r && P(t);
|
|
500
446
|
}
|
|
501
447
|
};
|
|
502
448
|
}
|
|
503
|
-
function at(
|
|
504
|
-
let
|
|
449
|
+
function at(o, t, i) {
|
|
450
|
+
let e, r, p, a, b, k, s, M, u, S, { tag: m } = t, { mediaStore: c } = t, { rendererMap: y = /* @__PURE__ */ new Map() } = t, { contentTypeMap: n = /* @__PURE__ */ new Map() } = t, { state: l } = t, { temporaryState: h } = t;
|
|
505
451
|
const w = W("hooks");
|
|
506
452
|
function H(f) {
|
|
507
453
|
x[f ? "unshift" : "push"](() => {
|
|
508
|
-
|
|
454
|
+
m.dom = f, i(0, m);
|
|
509
455
|
});
|
|
510
456
|
}
|
|
511
|
-
return
|
|
512
|
-
"tag" in f &&
|
|
513
|
-
},
|
|
457
|
+
return o.$$set = (f) => {
|
|
458
|
+
"tag" in f && i(0, m = f.tag), "mediaStore" in f && i(1, c = f.mediaStore), "rendererMap" in f && i(2, y = f.rendererMap), "contentTypeMap" in f && i(3, n = f.contentTypeMap), "state" in f && i(4, l = f.state), "temporaryState" in f && i(5, h = f.temporaryState);
|
|
459
|
+
}, o.$$.update = () => {
|
|
514
460
|
var f, q, A, D;
|
|
515
|
-
|
|
516
|
-
5 &&
|
|
461
|
+
o.$$.dirty & /*tag, rendererMap*/
|
|
462
|
+
5 && i(8, e = (() => {
|
|
517
463
|
var F, N, R;
|
|
518
|
-
return !(((N = (F =
|
|
519
|
-
})()),
|
|
520
|
-
257 &&
|
|
521
|
-
1 &&
|
|
522
|
-
1 &&
|
|
523
|
-
1 &&
|
|
524
|
-
129 &&
|
|
525
|
-
1 &&
|
|
526
|
-
128 &&
|
|
527
|
-
128 &&
|
|
528
|
-
65 &&
|
|
464
|
+
return !(((N = (F = m.style) == null ? void 0 : F.point) == null ? void 0 : N.enabled) === !1 || ((R = y.get(m.contentType)) == null ? void 0 : R.usePoint) === !1 || m.contentType === "Sticker" || m.contentType === "Link" || m.contentType === "VRLink" || m.contentType === "PanoLink" || m.contentType === "Panorama" || m.contentType === "Audio" && m.data.appearance === "plane");
|
|
465
|
+
})()), o.$$.dirty & /*tag, havePoint*/
|
|
466
|
+
257 && i(15, r = (() => !(m.stickType !== "2DPoint" || m.entryFromModel && et(m.five.state.mode) && e))()), o.$$.dirty & /*tag*/
|
|
467
|
+
1 && i(14, p = m.id), o.$$.dirty & /*tag*/
|
|
468
|
+
1 && i(7, a = m.screenPosition), o.$$.dirty & /*tag*/
|
|
469
|
+
1 && i(13, b = m.enabled === !1 || !m.state), o.$$.dirty & /*tag, screenPosition*/
|
|
470
|
+
129 && i(12, k = !((f = m.state) != null && f.visible) || ((q = m.temporaryState) == null ? void 0 : q.visible) === !1 || !a), o.$$.dirty & /*tag*/
|
|
471
|
+
1 && i(6, s = (A = m.state) == null ? void 0 : A.unfolded), o.$$.dirty & /*screenPosition*/
|
|
472
|
+
128 && i(11, M = (a == null ? void 0 : a.leftPx) + "px"), o.$$.dirty & /*screenPosition*/
|
|
473
|
+
128 && i(10, u = (a == null ? void 0 : a.topPx) + "px"), o.$$.dirty & /*unfolded, tag*/
|
|
474
|
+
65 && i(9, S = s ? ((D = m.zIndex) != null ? D : 0) + (s ? 1e6 : 0) : void 0);
|
|
529
475
|
}, [
|
|
530
|
-
|
|
476
|
+
m,
|
|
531
477
|
c,
|
|
532
478
|
y,
|
|
533
|
-
|
|
479
|
+
n,
|
|
534
480
|
l,
|
|
535
481
|
h,
|
|
536
482
|
s,
|
|
537
483
|
a,
|
|
538
|
-
|
|
484
|
+
e,
|
|
539
485
|
S,
|
|
540
486
|
u,
|
|
541
487
|
M,
|
|
@@ -547,13 +493,13 @@ function at(e, t, o) {
|
|
|
547
493
|
H
|
|
548
494
|
];
|
|
549
495
|
}
|
|
550
|
-
class
|
|
496
|
+
class ro extends J {
|
|
551
497
|
constructor(t) {
|
|
552
498
|
super(), K(
|
|
553
499
|
this,
|
|
554
500
|
t,
|
|
555
501
|
at,
|
|
556
|
-
|
|
502
|
+
mt,
|
|
557
503
|
O,
|
|
558
504
|
{
|
|
559
505
|
tag: 0,
|
|
@@ -563,10 +509,10 @@ class pr extends J {
|
|
|
563
509
|
state: 4,
|
|
564
510
|
temporaryState: 5
|
|
565
511
|
},
|
|
566
|
-
|
|
512
|
+
it
|
|
567
513
|
);
|
|
568
514
|
}
|
|
569
515
|
}
|
|
570
516
|
export {
|
|
571
|
-
|
|
517
|
+
ro as default
|
|
572
518
|
};
|