@realsee/dnalogel 3.47.10 → 3.47.12
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 +6 -0
- package/dist/Sculpt/Meshes/Line.d.ts +3 -1
- package/dist/Sculpt/Meshes/Polygon.d.ts +16 -7
- package/dist/Sculpt/Meshes/PolygonWithEdge.d.ts +1 -0
- package/dist/Sculpt/Meshes/Polyline.d.ts +1 -0
- package/dist/Sculpt/Meshes/RectangleWithEdge.d.ts +1 -0
- package/dist/index.cjs.js +57 -57
- package/dist/index.js +3263 -3227
- package/dist/index.umd.js +50 -50
- package/libs/AreaMakerPlugin/Controller.js +14 -13
- package/libs/AreaMakerPlugin/index.js +15 -14
- package/libs/AreaMakerPlugin/utils/Item.js +15 -14
- package/libs/CSS3DRenderPlugin/Controller.js +12 -11
- package/libs/CSS3DRenderPlugin/index.js +18 -17
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +12 -11
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +26 -25
- package/libs/CruisePlugin/BaseController.js +17 -16
- package/libs/CruisePlugin/Move.js +20 -19
- package/libs/CruisePlugin/Work.js +15 -14
- package/libs/CruisePlugin/index.js +19 -18
- package/libs/CurrentPanoImagePlugin/Controller.js +14 -13
- package/libs/CurrentPanoImagePlugin/index.js +16 -15
- package/libs/GuideLinePlugin/Controller.js +17 -16
- package/libs/GuideLinePlugin/GuideLineItem.js +15 -14
- package/libs/GuideLinePlugin/GuideLineModeItem/index.js +5 -3
- package/libs/GuideLinePlugin/GuideLineModeItem.js +15 -14
- package/libs/GuideLinePlugin/index.js +19 -18
- package/libs/ModelMakerPlugin/Controller.js +13 -12
- package/libs/ModelMakerPlugin/index.js +15 -14
- package/libs/ModelTVVideoPlugin/Plugin.js +37 -36
- package/libs/ModelTVVideoPlugin/index.js +13 -12
- package/libs/Object3DHelperPlugin/Controller.js +14 -13
- package/libs/Object3DHelperPlugin/index.js +18 -17
- package/libs/PanoCompassPlugin/Controller.js +15 -14
- package/libs/PanoCompassPlugin/index.js +16 -15
- package/libs/PanoDoorLabelPlugin/BaseController.js +15 -14
- package/libs/PanoDoorLabelPlugin/Controller.js +15 -14
- package/libs/PanoDoorLabelPlugin/index.js +16 -15
- package/libs/PanoMeasurePlugin/Components/Controller0.js +12 -11
- package/libs/PanoMeasurePlugin/Components/Controller1.js +12 -11
- package/libs/PanoMeasurePlugin/Controller/EditController.js +12 -11
- package/libs/PanoMeasurePlugin/Controller/WatchController.js +13 -12
- package/libs/PanoMeasurePlugin/Controller/index.js +10 -9
- package/libs/PanoMeasurePlugin/Model/area.js +12 -11
- package/libs/PanoMeasurePlugin/Modules/Magnifier.js +12 -11
- package/libs/PanoMeasurePlugin/Modules/UIController/index.js +12 -11
- package/libs/PanoMeasurePlugin/index.js +21 -20
- package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +12 -11
- package/libs/PanoSpatialTagPlugin/Plugin.js +14 -13
- package/libs/PanoSpatialTagPlugin/index.js +11 -10
- package/libs/PanoTagPlugin/Components/Common/TagPoint.js +14 -13
- package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +13 -12
- package/libs/PanoTagPlugin/Components/Tag/index.js +13 -12
- package/libs/PanoTagPlugin/Components/TagContainer.js +13 -12
- package/libs/PanoTagPlugin/Components/TagItem.js +13 -12
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +34 -33
- package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +13 -12
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +13 -12
- package/libs/PanoTagPlugin/controller/Tag/PointTag.js +15 -14
- package/libs/PanoTagPlugin/controller/TagRender.js +12 -11
- package/libs/PanoTagPlugin/controller/TagUtil.js +13 -12
- package/libs/PanoTagPlugin/controller/index.js +16 -15
- package/libs/PanoTagPlugin/index.js +21 -20
- package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +14 -13
- package/libs/PanoVideoPlugin/Controller.js +15 -14
- package/libs/PanoVideoPlugin/VideoMeshController.js +30 -29
- package/libs/PanoVideoPlugin/index.js +18 -17
- package/libs/PipelinePlugin/Controller.js +14 -13
- package/libs/PipelinePlugin/index.js +16 -15
- package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +21 -20
- package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +15 -14
- package/libs/PipelinePlugin/utils/Objects/Pipe.js +13 -12
- package/libs/Sculpt/Meshes/Box.js +10 -8
- package/libs/Sculpt/Meshes/Cylinder.js +17 -15
- package/libs/Sculpt/Meshes/Line.d.ts +3 -1
- package/libs/Sculpt/Meshes/Line.js +89 -78
- package/libs/Sculpt/Meshes/Point.js +14 -12
- package/libs/Sculpt/Meshes/Polygon.d.ts +16 -7
- package/libs/Sculpt/Meshes/Polygon.js +71 -33
- package/libs/Sculpt/Meshes/PolygonWithEdge.d.ts +1 -0
- package/libs/Sculpt/Meshes/Polyline.d.ts +1 -0
- package/libs/Sculpt/Meshes/Polyline.js +69 -74
- package/libs/Sculpt/Meshes/Rectangle.js +7 -5
- package/libs/Sculpt/Meshes/RectangleWithEdge.d.ts +1 -0
- package/libs/Sculpt/Objects/Base/index.js +5 -5
- package/libs/Sculpt/Objects/Line/Editor.js +17 -15
- package/libs/Sculpt/Objects/Polygon/index.js +22 -22
- package/libs/Sculpt/Objects/Rectangle/Editor.js +2 -2
- package/libs/Sculpt/Objects/Rectangle/index.js +79 -69
- package/libs/Sculpt/index.js +15 -14
- package/libs/Sculpt/utils/three/ColoredMesh.js +6 -4
- package/libs/base/BasePlugin.js +16 -14
- package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +13 -12
- package/libs/floorplan/MapviewFloorplanPlugin/index.js +16 -15
- package/libs/floorplan/ModelFloorplanPlugin/Controller.js +13 -12
- package/libs/floorplan/ModelFloorplanPlugin/index.js +16 -15
- package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +15 -14
- package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +16 -15
- package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +13 -12
- package/libs/floorplan/TopviewFloorplanPlugin/index.js +16 -15
- package/libs/floorplan/index.js +3 -1
- package/libs/index.js +12 -12
- package/libs/shared-utils/five/index.js +5 -3
- package/libs/shared-utils/five/lookObject.js +20 -18
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/three/applyObjectMatrixWorld.js +4 -6
- package/libs/shared-utils/three/index.js +3 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ModelTVVideoPlugin as r } from "./Plugin.js";
|
|
2
|
-
import { DIRECTION as
|
|
2
|
+
import { DIRECTION as So } from "./typings.js";
|
|
3
3
|
import "three";
|
|
4
4
|
import "./utils/parseData.js";
|
|
5
5
|
import "../CSS3DRenderPlugin/index.js";
|
|
@@ -17,15 +17,7 @@ import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
|
17
17
|
import "../shared-utils/three/centerPoint.js";
|
|
18
18
|
import "../shared-utils/three/getObjectVisible.js";
|
|
19
19
|
import "hammerjs";
|
|
20
|
-
import "../Sculpt/Meshes/Line.js";
|
|
21
|
-
import "../Sculpt/typings/style.js";
|
|
22
|
-
import "../shared-utils/five/FiveLine.js";
|
|
23
20
|
import "@realsee/five/line";
|
|
24
|
-
import "../shared-utils/three/IObject3D.js";
|
|
25
|
-
import "../shared-utils/three/THREESphere.js";
|
|
26
|
-
import "animejs";
|
|
27
|
-
import "../shared-utils/isNil.js";
|
|
28
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
29
21
|
import "../shared-utils/tag.js";
|
|
30
22
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
31
23
|
import "../shared-utils/five/getFiveModel.js";
|
|
@@ -38,10 +30,14 @@ import "../Sculpt/utils/Modules/Global.js";
|
|
|
38
30
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
39
31
|
import "../Object3DHelperPlugin/Controller.js";
|
|
40
32
|
import "../base/BasePlugin.js";
|
|
33
|
+
import "../shared-utils/three/THREESphere.js";
|
|
34
|
+
import "animejs";
|
|
41
35
|
import "../shared-utils/url/absoluteUrl.js";
|
|
36
|
+
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
42
37
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
43
38
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
44
39
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
40
|
+
import "../shared-utils/three/IObject3D.js";
|
|
45
41
|
import "../shared-utils/three/boundingBox.js";
|
|
46
42
|
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
47
43
|
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -56,6 +52,7 @@ import "../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
|
56
52
|
import "../shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
57
53
|
import "../shared-utils/Object3DHelper/Base/BaseController.js";
|
|
58
54
|
import "../shared-utils/threex/domevents/index.js";
|
|
55
|
+
import "../shared-utils/isNil.js";
|
|
59
56
|
import "../shared-utils/util.js";
|
|
60
57
|
import "../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
61
58
|
import "../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
@@ -84,18 +81,22 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
84
81
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
85
82
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
86
83
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
84
|
+
import "../Sculpt/Meshes/Line.js";
|
|
85
|
+
import "../Sculpt/typings/style.js";
|
|
86
|
+
import "../shared-utils/five/FiveLine.js";
|
|
87
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
88
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
89
|
+
import "../shared-utils/three/applyObjectMatrixWorld.js";
|
|
87
90
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
88
91
|
import "../shared-utils/isTouchDevice.js";
|
|
89
92
|
import "../shared-utils/five/getPosition.js";
|
|
90
93
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
91
|
-
import "../Sculpt/utils/removeAllTag.js";
|
|
92
|
-
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
93
94
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
94
95
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
95
96
|
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
96
97
|
import "../PanoTagPlugin/Assets/Icon.js";
|
|
97
98
|
export {
|
|
98
|
-
|
|
99
|
+
So as DIRECTION,
|
|
99
100
|
r as ModelTVVideoPlugin,
|
|
100
101
|
r as default
|
|
101
102
|
};
|
|
@@ -47,17 +47,9 @@ import { waitFiveModelLoaded as T } from "../shared-utils/five/fiveModelLoad.js"
|
|
|
47
47
|
import { Subscribe as R } from "../shared-utils/Subscribe.js";
|
|
48
48
|
import "hammerjs";
|
|
49
49
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
50
|
-
import "../Sculpt/Meshes/Line.js";
|
|
51
|
-
import "../Sculpt/typings/style.js";
|
|
52
|
-
import "../shared-utils/five/FiveLine.js";
|
|
53
50
|
import "@realsee/five/line";
|
|
54
|
-
import "../shared-utils/positionToVector3.js";
|
|
55
|
-
import "../shared-utils/three/IObject3D.js";
|
|
56
|
-
import "../shared-utils/three/centerPoint.js";
|
|
57
|
-
import "animejs";
|
|
58
|
-
import "../shared-utils/isNil.js";
|
|
59
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
60
51
|
import "../shared-utils/tag.js";
|
|
52
|
+
import "../shared-utils/positionToVector3.js";
|
|
61
53
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
62
54
|
import "../shared-utils/five/getFiveModel.js";
|
|
63
55
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
@@ -80,9 +72,14 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
80
72
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
81
73
|
import "../CSS3DRenderPlugin/utils/even.js";
|
|
82
74
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
75
|
+
import "../shared-utils/three/centerPoint.js";
|
|
76
|
+
import "animejs";
|
|
77
|
+
import "../shared-utils/isNil.js";
|
|
78
|
+
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
83
79
|
import "../shared-utils/url/absoluteUrl.js";
|
|
84
80
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
85
81
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
82
|
+
import "../shared-utils/three/IObject3D.js";
|
|
86
83
|
import "../shared-utils/three/boundingBox.js";
|
|
87
84
|
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
88
85
|
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -110,12 +107,16 @@ import "../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
|
|
|
110
107
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
111
108
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
112
109
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
110
|
+
import "../Sculpt/Meshes/Line.js";
|
|
111
|
+
import "../Sculpt/typings/style.js";
|
|
112
|
+
import "../shared-utils/five/FiveLine.js";
|
|
113
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
114
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
115
|
+
import "../shared-utils/three/applyObjectMatrixWorld.js";
|
|
113
116
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
114
117
|
import "../shared-utils/isTouchDevice.js";
|
|
115
118
|
import "../shared-utils/five/getPosition.js";
|
|
116
119
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
117
|
-
import "../Sculpt/utils/removeAllTag.js";
|
|
118
|
-
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
119
120
|
const w = "Object3DHelperPlugin", D = w, X = () => {
|
|
120
121
|
console.error(`${D} is disposed`);
|
|
121
122
|
}, Y = () => {
|
|
@@ -123,7 +124,7 @@ const w = "Object3DHelperPlugin", D = w, X = () => {
|
|
|
123
124
|
}, Z = () => {
|
|
124
125
|
console.error(`${D} is disabled`);
|
|
125
126
|
};
|
|
126
|
-
class
|
|
127
|
+
class $r extends L {
|
|
127
128
|
constructor(e) {
|
|
128
129
|
super(e);
|
|
129
130
|
f(this, "name", w);
|
|
@@ -295,6 +296,6 @@ class _r extends L {
|
|
|
295
296
|
}
|
|
296
297
|
}
|
|
297
298
|
export {
|
|
298
|
-
|
|
299
|
+
$r as Object3DHelperController,
|
|
299
300
|
D as PLUGIN
|
|
300
301
|
};
|
|
@@ -1,22 +1,13 @@
|
|
|
1
1
|
import { Object3DHelperController as o } from "./Controller.js";
|
|
2
|
-
import { PLUGIN as
|
|
2
|
+
import { PLUGIN as Mr } from "./Controller.js";
|
|
3
3
|
import "../base/BasePlugin.js";
|
|
4
4
|
import "../shared-utils/Subscribe.js";
|
|
5
5
|
import "three";
|
|
6
6
|
import "hammerjs";
|
|
7
7
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
8
|
-
import "../Sculpt/Meshes/Line.js";
|
|
9
|
-
import "../Sculpt/typings/style.js";
|
|
10
|
-
import "../shared-utils/five/FiveLine.js";
|
|
11
8
|
import "@realsee/five/line";
|
|
12
|
-
import "../shared-utils/positionToVector3.js";
|
|
13
|
-
import "../shared-utils/three/IObject3D.js";
|
|
14
|
-
import "../shared-utils/three/centerPoint.js";
|
|
15
|
-
import "../shared-utils/three/THREESphere.js";
|
|
16
|
-
import "animejs";
|
|
17
|
-
import "../shared-utils/isNil.js";
|
|
18
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
19
9
|
import "../shared-utils/tag.js";
|
|
10
|
+
import "../shared-utils/positionToVector3.js";
|
|
20
11
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
21
12
|
import "../shared-utils/five/getFiveModel.js";
|
|
22
13
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
@@ -38,10 +29,16 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
38
29
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
39
30
|
import "../CSS3DRenderPlugin/utils/even.js";
|
|
40
31
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
32
|
+
import "../shared-utils/three/centerPoint.js";
|
|
33
|
+
import "../shared-utils/three/THREESphere.js";
|
|
34
|
+
import "animejs";
|
|
35
|
+
import "../shared-utils/isNil.js";
|
|
36
|
+
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
41
37
|
import "../shared-utils/url/absoluteUrl.js";
|
|
42
38
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
43
39
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
44
40
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
41
|
+
import "../shared-utils/three/IObject3D.js";
|
|
45
42
|
import "../shared-utils/three/boundingBox.js";
|
|
46
43
|
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
47
44
|
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -83,16 +80,20 @@ import "../shared-utils/five/fiveModelLoad.js";
|
|
|
83
80
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
84
81
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
85
82
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
83
|
+
import "../Sculpt/Meshes/Line.js";
|
|
84
|
+
import "../Sculpt/typings/style.js";
|
|
85
|
+
import "../shared-utils/five/FiveLine.js";
|
|
86
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
87
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
88
|
+
import "../shared-utils/three/applyObjectMatrixWorld.js";
|
|
86
89
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
87
90
|
import "../shared-utils/isTouchDevice.js";
|
|
88
91
|
import "../shared-utils/five/getPosition.js";
|
|
89
92
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
90
|
-
|
|
91
|
-
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
92
|
-
const Er = (r) => new o(r);
|
|
93
|
+
const Fr = (r) => new o(r);
|
|
93
94
|
export {
|
|
94
95
|
o as Object3DHelperController,
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
96
|
+
Fr as Object3DHelperPlugin,
|
|
97
|
+
Mr as PLUGIN,
|
|
98
|
+
Fr as default
|
|
98
99
|
};
|
|
@@ -37,18 +37,9 @@ import "../base/BasePlugin.js";
|
|
|
37
37
|
import "../shared-utils/Subscribe.js";
|
|
38
38
|
import "hammerjs";
|
|
39
39
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
40
|
-
import "../Sculpt/Meshes/Line.js";
|
|
41
|
-
import "../Sculpt/typings/style.js";
|
|
42
|
-
import "../shared-utils/five/FiveLine.js";
|
|
43
40
|
import "@realsee/five/line";
|
|
44
|
-
import "../shared-utils/positionToVector3.js";
|
|
45
|
-
import "../shared-utils/three/IObject3D.js";
|
|
46
|
-
import "../shared-utils/three/centerPoint.js";
|
|
47
|
-
import "../shared-utils/three/THREESphere.js";
|
|
48
|
-
import "animejs";
|
|
49
|
-
import "../shared-utils/isNil.js";
|
|
50
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
51
41
|
import "../shared-utils/tag.js";
|
|
42
|
+
import "../shared-utils/positionToVector3.js";
|
|
52
43
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
53
44
|
import "../shared-utils/five/getFiveModel.js";
|
|
54
45
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
@@ -59,9 +50,11 @@ import "../shared-utils/three/temp.js";
|
|
|
59
50
|
import "../Sculpt/utils/Modules/Global.js";
|
|
60
51
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
61
52
|
import "../Object3DHelperPlugin/Controller.js";
|
|
53
|
+
import "../shared-utils/three/THREESphere.js";
|
|
62
54
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
63
55
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
64
56
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
57
|
+
import "../shared-utils/three/IObject3D.js";
|
|
65
58
|
import "../shared-utils/three/boundingBox.js";
|
|
66
59
|
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
67
60
|
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -74,7 +67,11 @@ import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
|
74
67
|
import "../CSS3DRenderPlugin/utils/even.js";
|
|
75
68
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
76
69
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
70
|
+
import "../shared-utils/three/centerPoint.js";
|
|
77
71
|
import "../shared-utils/three/getObjectVisible.js";
|
|
72
|
+
import "animejs";
|
|
73
|
+
import "../shared-utils/isNil.js";
|
|
74
|
+
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
78
75
|
import "../shared-utils/url/absoluteUrl.js";
|
|
79
76
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
80
77
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -116,17 +113,21 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
116
113
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
117
114
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
118
115
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
116
|
+
import "../Sculpt/Meshes/Line.js";
|
|
117
|
+
import "../Sculpt/typings/style.js";
|
|
118
|
+
import "../shared-utils/five/FiveLine.js";
|
|
119
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
120
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
121
|
+
import "../shared-utils/three/applyObjectMatrixWorld.js";
|
|
119
122
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
120
123
|
import "../shared-utils/isTouchDevice.js";
|
|
121
124
|
import "../shared-utils/five/getPosition.js";
|
|
122
125
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
123
|
-
import "../Sculpt/utils/removeAllTag.js";
|
|
124
|
-
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
125
126
|
import "./Assets/roomInfoIcon.js";
|
|
126
127
|
import "../CSS3DRenderPlugin/Controller.js";
|
|
127
128
|
import "../shared-utils/animationFrame/index.js";
|
|
128
129
|
const g = { userAction: !0 };
|
|
129
|
-
class
|
|
130
|
+
class wt extends A {
|
|
130
131
|
constructor(e, t) {
|
|
131
132
|
super(e, t);
|
|
132
133
|
/**
|
|
@@ -381,5 +382,5 @@ class Dt extends A {
|
|
|
381
382
|
}
|
|
382
383
|
}
|
|
383
384
|
export {
|
|
384
|
-
|
|
385
|
+
wt as PanoCompassController
|
|
385
386
|
};
|
|
@@ -6,18 +6,9 @@ import "../base/BasePlugin.js";
|
|
|
6
6
|
import "../shared-utils/Subscribe.js";
|
|
7
7
|
import "hammerjs";
|
|
8
8
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
9
|
-
import "../Sculpt/Meshes/Line.js";
|
|
10
|
-
import "../Sculpt/typings/style.js";
|
|
11
|
-
import "../shared-utils/five/FiveLine.js";
|
|
12
9
|
import "@realsee/five/line";
|
|
13
|
-
import "../shared-utils/positionToVector3.js";
|
|
14
|
-
import "../shared-utils/three/IObject3D.js";
|
|
15
|
-
import "../shared-utils/three/centerPoint.js";
|
|
16
|
-
import "../shared-utils/three/THREESphere.js";
|
|
17
|
-
import "animejs";
|
|
18
|
-
import "../shared-utils/isNil.js";
|
|
19
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
20
10
|
import "../shared-utils/tag.js";
|
|
11
|
+
import "../shared-utils/positionToVector3.js";
|
|
21
12
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
22
13
|
import "../shared-utils/five/getFiveModel.js";
|
|
23
14
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
@@ -28,9 +19,11 @@ import "../shared-utils/three/temp.js";
|
|
|
28
19
|
import "../Sculpt/utils/Modules/Global.js";
|
|
29
20
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
30
21
|
import "../Object3DHelperPlugin/Controller.js";
|
|
22
|
+
import "../shared-utils/three/THREESphere.js";
|
|
31
23
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
32
24
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
33
25
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
26
|
+
import "../shared-utils/three/IObject3D.js";
|
|
34
27
|
import "../shared-utils/three/boundingBox.js";
|
|
35
28
|
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
36
29
|
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -43,7 +36,11 @@ import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
|
43
36
|
import "../CSS3DRenderPlugin/utils/even.js";
|
|
44
37
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
45
38
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
39
|
+
import "../shared-utils/three/centerPoint.js";
|
|
46
40
|
import "../shared-utils/three/getObjectVisible.js";
|
|
41
|
+
import "animejs";
|
|
42
|
+
import "../shared-utils/isNil.js";
|
|
43
|
+
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
47
44
|
import "../shared-utils/url/absoluteUrl.js";
|
|
48
45
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
49
46
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -85,12 +82,16 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
85
82
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
86
83
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
87
84
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
85
|
+
import "../Sculpt/Meshes/Line.js";
|
|
86
|
+
import "../Sculpt/typings/style.js";
|
|
87
|
+
import "../shared-utils/five/FiveLine.js";
|
|
88
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
89
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
90
|
+
import "../shared-utils/three/applyObjectMatrixWorld.js";
|
|
88
91
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
89
92
|
import "../shared-utils/isTouchDevice.js";
|
|
90
93
|
import "../shared-utils/five/getPosition.js";
|
|
91
94
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
92
|
-
import "../Sculpt/utils/removeAllTag.js";
|
|
93
|
-
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
94
95
|
import "./getRoomInfoInstance.js";
|
|
95
96
|
import "./Assets/roomInfoIcon.js";
|
|
96
97
|
import "../shared-utils/three/loadTexture.js";
|
|
@@ -98,8 +99,8 @@ import "../CSS3DRenderPlugin/index.js";
|
|
|
98
99
|
import "../CSS3DRenderPlugin/Controller.js";
|
|
99
100
|
import "../shared-utils/animationFrame/BetterTween.js";
|
|
100
101
|
import "../shared-utils/animationFrame/index.js";
|
|
101
|
-
const
|
|
102
|
+
const Zo = (o, r) => new t(o, r);
|
|
102
103
|
export {
|
|
103
|
-
|
|
104
|
-
|
|
104
|
+
Zo as PanoCompassPlugin,
|
|
105
|
+
Zo as default
|
|
105
106
|
};
|
|
@@ -17,18 +17,9 @@ import "../shared-utils/Subscribe.js";
|
|
|
17
17
|
import "three";
|
|
18
18
|
import "hammerjs";
|
|
19
19
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
20
|
-
import "../Sculpt/Meshes/Line.js";
|
|
21
|
-
import "../Sculpt/typings/style.js";
|
|
22
|
-
import "../shared-utils/five/FiveLine.js";
|
|
23
20
|
import "@realsee/five/line";
|
|
24
|
-
import "../shared-utils/positionToVector3.js";
|
|
25
|
-
import "../shared-utils/three/IObject3D.js";
|
|
26
|
-
import "../shared-utils/three/centerPoint.js";
|
|
27
|
-
import "../shared-utils/three/THREESphere.js";
|
|
28
|
-
import "animejs";
|
|
29
|
-
import "../shared-utils/isNil.js";
|
|
30
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
31
21
|
import "../shared-utils/tag.js";
|
|
22
|
+
import "../shared-utils/positionToVector3.js";
|
|
32
23
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
33
24
|
import "../shared-utils/five/getFiveModel.js";
|
|
34
25
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
@@ -39,9 +30,11 @@ import "../shared-utils/three/temp.js";
|
|
|
39
30
|
import "../Sculpt/utils/Modules/Global.js";
|
|
40
31
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
41
32
|
import "../Object3DHelperPlugin/Controller.js";
|
|
33
|
+
import "../shared-utils/three/THREESphere.js";
|
|
42
34
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
43
35
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
44
36
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
37
|
+
import "../shared-utils/three/IObject3D.js";
|
|
45
38
|
import "../shared-utils/three/boundingBox.js";
|
|
46
39
|
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
47
40
|
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -54,7 +47,11 @@ import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
|
54
47
|
import "../CSS3DRenderPlugin/utils/even.js";
|
|
55
48
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
56
49
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
50
|
+
import "../shared-utils/three/centerPoint.js";
|
|
57
51
|
import "../shared-utils/three/getObjectVisible.js";
|
|
52
|
+
import "animejs";
|
|
53
|
+
import "../shared-utils/isNil.js";
|
|
54
|
+
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
58
55
|
import "../shared-utils/url/absoluteUrl.js";
|
|
59
56
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
60
57
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -96,13 +93,17 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
96
93
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
97
94
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
98
95
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
96
|
+
import "../Sculpt/Meshes/Line.js";
|
|
97
|
+
import "../Sculpt/typings/style.js";
|
|
98
|
+
import "../shared-utils/five/FiveLine.js";
|
|
99
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
100
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
101
|
+
import "../shared-utils/three/applyObjectMatrixWorld.js";
|
|
99
102
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
100
103
|
import "../shared-utils/isTouchDevice.js";
|
|
101
104
|
import "../shared-utils/five/getPosition.js";
|
|
102
105
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
103
|
-
|
|
104
|
-
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
105
|
-
class ii extends c {
|
|
106
|
+
class ri extends c {
|
|
106
107
|
constructor(t) {
|
|
107
108
|
super(t);
|
|
108
109
|
p(this, "state");
|
|
@@ -171,5 +172,5 @@ class ii extends c {
|
|
|
171
172
|
}
|
|
172
173
|
}
|
|
173
174
|
export {
|
|
174
|
-
|
|
175
|
+
ri as BasePanoPluginController
|
|
175
176
|
};
|
|
@@ -20,18 +20,9 @@ import "../base/BasePlugin.js";
|
|
|
20
20
|
import "../shared-utils/Subscribe.js";
|
|
21
21
|
import "hammerjs";
|
|
22
22
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
23
|
-
import "../Sculpt/Meshes/Line.js";
|
|
24
|
-
import "../Sculpt/typings/style.js";
|
|
25
|
-
import "../shared-utils/five/FiveLine.js";
|
|
26
23
|
import "@realsee/five/line";
|
|
27
|
-
import "../shared-utils/positionToVector3.js";
|
|
28
|
-
import "../shared-utils/three/IObject3D.js";
|
|
29
|
-
import "../shared-utils/three/centerPoint.js";
|
|
30
|
-
import "../shared-utils/three/THREESphere.js";
|
|
31
|
-
import "animejs";
|
|
32
|
-
import "../shared-utils/isNil.js";
|
|
33
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
34
24
|
import "../shared-utils/tag.js";
|
|
25
|
+
import "../shared-utils/positionToVector3.js";
|
|
35
26
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
36
27
|
import "../shared-utils/five/getFiveModel.js";
|
|
37
28
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
@@ -42,9 +33,11 @@ import "../shared-utils/three/temp.js";
|
|
|
42
33
|
import "../Sculpt/utils/Modules/Global.js";
|
|
43
34
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
44
35
|
import "../Object3DHelperPlugin/Controller.js";
|
|
36
|
+
import "../shared-utils/three/THREESphere.js";
|
|
45
37
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
46
38
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
47
39
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
40
|
+
import "../shared-utils/three/IObject3D.js";
|
|
48
41
|
import "../shared-utils/three/boundingBox.js";
|
|
49
42
|
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
50
43
|
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -57,7 +50,11 @@ import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
|
57
50
|
import "../CSS3DRenderPlugin/utils/even.js";
|
|
58
51
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
59
52
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
53
|
+
import "../shared-utils/three/centerPoint.js";
|
|
60
54
|
import "../shared-utils/three/getObjectVisible.js";
|
|
55
|
+
import "animejs";
|
|
56
|
+
import "../shared-utils/isNil.js";
|
|
57
|
+
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
61
58
|
import "../shared-utils/url/absoluteUrl.js";
|
|
62
59
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
63
60
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -99,16 +96,20 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
99
96
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
100
97
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
101
98
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
99
|
+
import "../Sculpt/Meshes/Line.js";
|
|
100
|
+
import "../Sculpt/typings/style.js";
|
|
101
|
+
import "../shared-utils/five/FiveLine.js";
|
|
102
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
103
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
104
|
+
import "../shared-utils/three/applyObjectMatrixWorld.js";
|
|
102
105
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
103
106
|
import "../shared-utils/isTouchDevice.js";
|
|
104
107
|
import "../shared-utils/five/getPosition.js";
|
|
105
108
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
106
|
-
import "../Sculpt/utils/removeAllTag.js";
|
|
107
|
-
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
108
109
|
import "../vendor/svelte/internal/index.js";
|
|
109
110
|
import "../vendor/classnames/index.js";
|
|
110
111
|
const ii = { userAction: !0 };
|
|
111
|
-
class
|
|
112
|
+
class Nt extends q {
|
|
112
113
|
constructor(i) {
|
|
113
114
|
super(i);
|
|
114
115
|
n(this, "MinVisibledistance", 1.8);
|
|
@@ -312,5 +313,5 @@ class Gt extends q {
|
|
|
312
313
|
}
|
|
313
314
|
}
|
|
314
315
|
export {
|
|
315
|
-
|
|
316
|
+
Nt as PanoDoorLabelPluginController
|
|
316
317
|
};
|
|
@@ -6,18 +6,9 @@ import "../base/BasePlugin.js";
|
|
|
6
6
|
import "../shared-utils/Subscribe.js";
|
|
7
7
|
import "hammerjs";
|
|
8
8
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
9
|
-
import "../Sculpt/Meshes/Line.js";
|
|
10
|
-
import "../Sculpt/typings/style.js";
|
|
11
|
-
import "../shared-utils/five/FiveLine.js";
|
|
12
9
|
import "@realsee/five/line";
|
|
13
|
-
import "../shared-utils/positionToVector3.js";
|
|
14
|
-
import "../shared-utils/three/IObject3D.js";
|
|
15
|
-
import "../shared-utils/three/centerPoint.js";
|
|
16
|
-
import "../shared-utils/three/THREESphere.js";
|
|
17
|
-
import "animejs";
|
|
18
|
-
import "../shared-utils/isNil.js";
|
|
19
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
20
10
|
import "../shared-utils/tag.js";
|
|
11
|
+
import "../shared-utils/positionToVector3.js";
|
|
21
12
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
22
13
|
import "../shared-utils/five/getFiveModel.js";
|
|
23
14
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
@@ -28,9 +19,11 @@ import "../shared-utils/three/temp.js";
|
|
|
28
19
|
import "../Sculpt/utils/Modules/Global.js";
|
|
29
20
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
30
21
|
import "../Object3DHelperPlugin/Controller.js";
|
|
22
|
+
import "../shared-utils/three/THREESphere.js";
|
|
31
23
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
32
24
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
33
25
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
26
|
+
import "../shared-utils/three/IObject3D.js";
|
|
34
27
|
import "../shared-utils/three/boundingBox.js";
|
|
35
28
|
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
36
29
|
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -43,7 +36,11 @@ import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
|
43
36
|
import "../CSS3DRenderPlugin/utils/even.js";
|
|
44
37
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
45
38
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
39
|
+
import "../shared-utils/three/centerPoint.js";
|
|
46
40
|
import "../shared-utils/three/getObjectVisible.js";
|
|
41
|
+
import "animejs";
|
|
42
|
+
import "../shared-utils/isNil.js";
|
|
43
|
+
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
47
44
|
import "../shared-utils/url/absoluteUrl.js";
|
|
48
45
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
49
46
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -85,18 +82,22 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
85
82
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
86
83
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
87
84
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
85
|
+
import "../Sculpt/Meshes/Line.js";
|
|
86
|
+
import "../Sculpt/typings/style.js";
|
|
87
|
+
import "../shared-utils/five/FiveLine.js";
|
|
88
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
89
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
90
|
+
import "../shared-utils/three/applyObjectMatrixWorld.js";
|
|
88
91
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
89
92
|
import "../shared-utils/isTouchDevice.js";
|
|
90
93
|
import "../shared-utils/five/getPosition.js";
|
|
91
94
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
92
|
-
import "../Sculpt/utils/removeAllTag.js";
|
|
93
|
-
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
94
95
|
import "./DoorLabelItem.js";
|
|
95
96
|
import "../vendor/svelte/internal/index.js";
|
|
96
97
|
import "../vendor/classnames/index.js";
|
|
97
98
|
import "./utils.js";
|
|
98
|
-
const
|
|
99
|
+
const Vo = (o) => new r(o);
|
|
99
100
|
export {
|
|
100
|
-
|
|
101
|
-
|
|
101
|
+
Vo as PanoDoorLabelPlugin,
|
|
102
|
+
Vo as default
|
|
102
103
|
};
|
|
@@ -31,14 +31,8 @@ import "../utils/dom/areaDom.js";
|
|
|
31
31
|
import "../../shared-utils/three/geometryUtil.js";
|
|
32
32
|
import "hammerjs";
|
|
33
33
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
34
|
-
import "../../Sculpt/Meshes/Line.js";
|
|
35
|
-
import "../../Sculpt/typings/style.js";
|
|
36
|
-
import "../../shared-utils/positionToVector3.js";
|
|
37
|
-
import "../../shared-utils/three/THREESphere.js";
|
|
38
|
-
import "animejs";
|
|
39
|
-
import "../../shared-utils/isNil.js";
|
|
40
|
-
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
41
34
|
import "../../shared-utils/tag.js";
|
|
35
|
+
import "../../shared-utils/positionToVector3.js";
|
|
42
36
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
43
37
|
import "../../shared-utils/five/getFiveModel.js";
|
|
44
38
|
import "../../shared-utils/Utils/FiveUtil.js";
|
|
@@ -51,7 +45,10 @@ import "../../Sculpt/utils/Modules/Global.js";
|
|
|
51
45
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
52
46
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
53
47
|
import "../../base/BasePlugin.js";
|
|
48
|
+
import "../../shared-utils/three/THREESphere.js";
|
|
49
|
+
import "animejs";
|
|
54
50
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
51
|
+
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
55
52
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
56
53
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
57
54
|
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
@@ -68,6 +65,7 @@ import "../../CSS3DRenderPlugin/utils/even.js";
|
|
|
68
65
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
69
66
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
70
67
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
68
|
+
import "../../shared-utils/isNil.js";
|
|
71
69
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
72
70
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
73
71
|
import "../../shared-utils/util.js";
|
|
@@ -108,12 +106,15 @@ import "../../shared-utils/three/Assets/index.js";
|
|
|
108
106
|
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
109
107
|
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
110
108
|
import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
109
|
+
import "../../Sculpt/Meshes/Line.js";
|
|
110
|
+
import "../../Sculpt/typings/style.js";
|
|
111
|
+
import "../../Sculpt/utils/removeAllTag.js";
|
|
112
|
+
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
113
|
+
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
111
114
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
112
115
|
import "../../shared-utils/isTouchDevice.js";
|
|
113
116
|
import "../../shared-utils/five/getPosition.js";
|
|
114
117
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
115
|
-
import "../../Sculpt/utils/removeAllTag.js";
|
|
116
|
-
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
117
118
|
import "../utils/isIntersecting.js";
|
|
118
119
|
import "../Modules/DeleteDom/index.js";
|
|
119
120
|
import "../Modules/DeleteDom/_Assets/delete.svg.js";
|
|
@@ -329,7 +330,7 @@ function rt(n, o, i) {
|
|
|
329
330
|
u
|
|
330
331
|
];
|
|
331
332
|
}
|
|
332
|
-
class
|
|
333
|
+
class Co extends j {
|
|
333
334
|
constructor(o) {
|
|
334
335
|
super(), x(
|
|
335
336
|
this,
|
|
@@ -347,5 +348,5 @@ class _o extends j {
|
|
|
347
348
|
}
|
|
348
349
|
}
|
|
349
350
|
export {
|
|
350
|
-
|
|
351
|
+
Co as default
|
|
351
352
|
};
|