@realsee/dnalogel 3.47.4 → 3.47.5
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 +3 -0
- package/dist/Sculpt/Meshes/Polygon.d.ts +1 -1
- package/dist/Sculpt/Meshes/PolygonWithEdge.d.ts +1 -1
- package/dist/Sculpt/utils/Meshes/getLengthHTML.d.ts +1 -0
- package/dist/Sculpt/utils/three/ColoredMesh.d.ts +2 -2
- package/dist/index.cjs.js +79 -57
- package/dist/index.js +5069 -5047
- package/dist/index.umd.js +74 -52
- package/dist/shared-utils/five/vector3ToScreen.d.ts +4 -4
- package/dist/shared-utils/tag.d.ts +1 -3
- package/dist/shared-utils/three/index.d.ts +0 -2
- package/dist/shared-utils/three/raycaster.d.ts +2 -0
- package/libs/AreaMakerPlugin/Controller.js +16 -14
- package/libs/AreaMakerPlugin/index.js +18 -16
- package/libs/AreaMakerPlugin/utils/Item.js +55 -53
- package/libs/CSS3DRenderPlugin/Controller.js +14 -12
- package/libs/CSS3DRenderPlugin/index.js +21 -19
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +15 -13
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +16 -14
- package/libs/CruisePlugin/BaseController.js +29 -27
- package/libs/CruisePlugin/Move.js +21 -19
- package/libs/CruisePlugin/Work.js +16 -14
- package/libs/CruisePlugin/index.js +22 -20
- package/libs/CurrentPanoImagePlugin/Controller.js +25 -23
- package/libs/CurrentPanoImagePlugin/index.js +19 -17
- package/libs/GuideLinePlugin/Controller.js +18 -16
- package/libs/GuideLinePlugin/GuideLineItem.js +18 -16
- package/libs/GuideLinePlugin/GuideLineModeItem/index.js +3 -4
- package/libs/GuideLinePlugin/GuideLineModeItem.js +18 -16
- package/libs/GuideLinePlugin/index.js +22 -20
- package/libs/ModelMakerPlugin/Controller.js +22 -20
- package/libs/ModelMakerPlugin/index.js +18 -16
- package/libs/ModelMakerPlugin/item/baseItem.js +14 -13
- package/libs/ModelMakerPlugin/item/boxItem.js +3 -2
- package/libs/ModelMakerPlugin/item/polygonItem.js +6 -5
- package/libs/ModelMakerPlugin/item/prismItem.js +3 -2
- package/libs/ModelTVVideoPlugin/Plugin.js +17 -15
- package/libs/ModelTVVideoPlugin/index.js +16 -14
- package/libs/Object3DHelperPlugin/Controller.js +17 -15
- package/libs/Object3DHelperPlugin/index.js +21 -19
- package/libs/PanoCompassPlugin/Controller.js +18 -16
- package/libs/PanoCompassPlugin/index.js +19 -17
- package/libs/PanoDoorLabelPlugin/BaseController.js +18 -16
- package/libs/PanoDoorLabelPlugin/Controller.js +38 -36
- package/libs/PanoDoorLabelPlugin/index.js +19 -17
- package/libs/PanoMeasurePlugin/Components/Controller0.js +15 -13
- package/libs/PanoMeasurePlugin/Components/Controller1.js +15 -13
- package/libs/PanoMeasurePlugin/Controller/EditController.js +14 -12
- package/libs/PanoMeasurePlugin/Controller/WatchController.js +15 -13
- package/libs/PanoMeasurePlugin/Controller/index.js +13 -11
- package/libs/PanoMeasurePlugin/Model/area.js +15 -13
- package/libs/PanoMeasurePlugin/Modules/Magnifier.js +15 -13
- package/libs/PanoMeasurePlugin/Modules/UIController/index.js +15 -13
- package/libs/PanoMeasurePlugin/index.js +24 -22
- package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +15 -13
- package/libs/PanoSpatialTagPlugin/Plugin.js +17 -15
- package/libs/PanoSpatialTagPlugin/index.js +14 -12
- package/libs/PanoTagPlugin/Components/Common/TagPoint.js +17 -15
- package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +16 -14
- package/libs/PanoTagPlugin/Components/Tag/index.js +16 -14
- package/libs/PanoTagPlugin/Components/TagContainer.js +16 -14
- package/libs/PanoTagPlugin/Components/TagItem.js +16 -14
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +60 -60
- package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +16 -14
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +16 -14
- package/libs/PanoTagPlugin/controller/Tag/PointTag.js +18 -16
- package/libs/PanoTagPlugin/controller/TagRender.js +15 -13
- package/libs/PanoTagPlugin/controller/TagUtil.js +16 -14
- package/libs/PanoTagPlugin/controller/index.js +18 -16
- package/libs/PanoTagPlugin/index.js +24 -22
- package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +17 -15
- package/libs/PanoVideoPlugin/Controller.js +18 -16
- package/libs/PanoVideoPlugin/VideoMeshController.js +18 -16
- package/libs/PanoVideoPlugin/index.js +21 -19
- package/libs/PipelinePlugin/Controller.js +17 -15
- package/libs/PipelinePlugin/index.js +19 -17
- package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +18 -16
- package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +18 -16
- package/libs/PipelinePlugin/utils/Objects/Pipe.js +35 -33
- package/libs/Sculpt/Meshes/Box.js +6 -7
- package/libs/Sculpt/Meshes/Cylinder.js +15 -16
- package/libs/Sculpt/Meshes/Line.js +60 -56
- package/libs/Sculpt/Meshes/Point.js +6 -7
- package/libs/Sculpt/Meshes/Polygon.d.ts +1 -1
- package/libs/Sculpt/Meshes/PolygonWithEdge.d.ts +1 -1
- package/libs/Sculpt/Meshes/Polyline.js +5 -6
- package/libs/Sculpt/Meshes/Rectangle.js +3 -4
- package/libs/Sculpt/Objects/Line/Editor.js +15 -16
- package/libs/Sculpt/Objects/Line/index.js +35 -35
- package/libs/Sculpt/Objects/Polygon/index.js +55 -61
- package/libs/Sculpt/Objects/Polyline/index.js +45 -45
- package/libs/Sculpt/index.js +1 -1
- package/libs/Sculpt/utils/Meshes/getLengthHTML.d.ts +1 -0
- package/libs/Sculpt/utils/Meshes/getLengthHTML.js +34 -0
- package/libs/Sculpt/utils/three/ColoredMesh.d.ts +2 -2
- package/libs/Sculpt/utils/three/ColoredMesh.js +3 -4
- package/libs/base/BasePlugin.js +14 -15
- package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +15 -13
- package/libs/floorplan/MapviewFloorplanPlugin/index.js +19 -17
- package/libs/floorplan/ModelFloorplanPlugin/Controller.js +15 -13
- package/libs/floorplan/ModelFloorplanPlugin/index.js +19 -17
- package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +18 -16
- package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +19 -17
- package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +15 -13
- package/libs/floorplan/TopviewFloorplanPlugin/index.js +19 -17
- package/libs/floorplan/index.js +1 -2
- package/libs/index.js +15 -15
- package/libs/shared-utils/Object3DHelper/utils/getMouseRaycaster.js +7 -7
- package/libs/shared-utils/five/index.js +3 -4
- package/libs/shared-utils/five/lookObject.js +3 -4
- package/libs/shared-utils/five/vector3ToScreen.d.ts +4 -4
- package/libs/shared-utils/five/vector3ToScreen.js +9 -4
- package/libs/shared-utils/index.js +45 -49
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/tag.d.ts +1 -3
- package/libs/shared-utils/tag.js +37 -29
- package/libs/shared-utils/three/index.d.ts +0 -2
- package/libs/shared-utils/three/index.js +1 -2
- package/libs/shared-utils/three/raycaster.d.ts +2 -0
- package/libs/shared-utils/three/raycaster.js +6 -0
- package/package.json +1 -1
- package/dist/shared-utils/three/getIntersect.d.ts +0 -21
- package/dist/shared-utils/three/getRaycaster.d.ts +0 -6
- package/libs/shared-utils/three/getIntersect.d.ts +0 -21
- package/libs/shared-utils/three/getIntersect.js +0 -24
- package/libs/shared-utils/three/getRaycaster.d.ts +0 -6
- package/libs/shared-utils/three/getRaycaster.js +0 -12
|
@@ -1,17 +1,30 @@
|
|
|
1
1
|
import { Object3DHelperController as o } from "./Controller.js";
|
|
2
|
-
import { PLUGIN as
|
|
2
|
+
import { PLUGIN as Kr } 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";
|
|
8
11
|
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
|
+
import "../shared-utils/tag.js";
|
|
20
|
+
import "../shared-utils/five/vector3ToScreen.js";
|
|
21
|
+
import "../shared-utils/five/getFiveModel.js";
|
|
22
|
+
import "../shared-utils/three/raycaster.js";
|
|
9
23
|
import "../Sculpt/utils/Modules/Global.js";
|
|
10
24
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
11
25
|
import "../shared-utils/five/FiveDomEvents.js";
|
|
12
26
|
import "../shared-utils/three/getObjectVisible.js";
|
|
13
27
|
import "../shared-utils/five/calculateThreeMouse.js";
|
|
14
|
-
import "../shared-utils/five/getFiveModel.js";
|
|
15
28
|
import "../shared-utils/three/THREERaycaster.js";
|
|
16
29
|
import "../shared-utils/three/PointSelector/index.js";
|
|
17
30
|
import "../shared-utils/three/PointSelector/utils/PointSelectorHelper.js";
|
|
@@ -21,11 +34,6 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
21
34
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
22
35
|
import "../CSS3DRenderPlugin/utils/even.js";
|
|
23
36
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
24
|
-
import "../shared-utils/three/centerPoint.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
37
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
30
38
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
31
39
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
@@ -34,14 +42,12 @@ import "../shared-utils/url/absoluteUrl.js";
|
|
|
34
42
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
35
43
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
36
44
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
37
|
-
import "../shared-utils/three/IObject3D.js";
|
|
38
45
|
import "../shared-utils/three/boundingBox.js";
|
|
39
46
|
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
40
47
|
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
41
48
|
import "../shared-utils/Object3DHelper/Constants/color.js";
|
|
42
49
|
import "../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
43
50
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
44
|
-
import "../shared-utils/positionToVector3.js";
|
|
45
51
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
46
52
|
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
47
53
|
import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
@@ -77,20 +83,16 @@ import "../shared-utils/five/fiveModelLoad.js";
|
|
|
77
83
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
78
84
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
79
85
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
80
|
-
import "../Sculpt/Meshes/Line.js";
|
|
81
|
-
import "../Sculpt/typings/style.js";
|
|
82
|
-
import "../shared-utils/five/FiveLine.js";
|
|
83
|
-
import "../shared-utils/tag.js";
|
|
84
|
-
import "../shared-utils/five/vector3ToScreen.js";
|
|
85
|
-
import "../Sculpt/utils/removeAllTag.js";
|
|
86
86
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
87
87
|
import "../shared-utils/isTouchDevice.js";
|
|
88
88
|
import "../shared-utils/five/getPosition.js";
|
|
89
89
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
90
|
-
|
|
90
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
91
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
92
|
+
const Er = (r) => new o(r);
|
|
91
93
|
export {
|
|
92
94
|
o as Object3DHelperController,
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
95
|
+
Er as Object3DHelperPlugin,
|
|
96
|
+
Kr as PLUGIN,
|
|
97
|
+
Er as default
|
|
96
98
|
};
|
|
@@ -37,38 +37,44 @@ 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";
|
|
40
43
|
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
|
+
import "../shared-utils/tag.js";
|
|
52
|
+
import "../shared-utils/five/vector3ToScreen.js";
|
|
53
|
+
import "../shared-utils/five/getFiveModel.js";
|
|
54
|
+
import "../shared-utils/three/raycaster.js";
|
|
41
55
|
import "../Sculpt/utils/Modules/Global.js";
|
|
42
56
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
43
57
|
import "../Object3DHelperPlugin/Controller.js";
|
|
44
|
-
import "../shared-utils/three/THREESphere.js";
|
|
45
58
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
46
59
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
47
60
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
48
|
-
import "../shared-utils/three/IObject3D.js";
|
|
49
61
|
import "../shared-utils/three/boundingBox.js";
|
|
50
62
|
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
51
63
|
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
52
64
|
import "../shared-utils/Object3DHelper/Constants/color.js";
|
|
53
65
|
import "../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
54
66
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
55
|
-
import "../shared-utils/positionToVector3.js";
|
|
56
67
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
57
68
|
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
58
69
|
import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
59
70
|
import "../CSS3DRenderPlugin/utils/even.js";
|
|
60
71
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
61
72
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
62
|
-
import "../shared-utils/three/centerPoint.js";
|
|
63
73
|
import "../shared-utils/three/getObjectVisible.js";
|
|
64
|
-
import "animejs";
|
|
65
|
-
import "../shared-utils/isNil.js";
|
|
66
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
67
74
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
68
75
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
69
76
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
70
77
|
import "../shared-utils/five/transformPosition.js";
|
|
71
|
-
import "../shared-utils/five/getFiveModel.js";
|
|
72
78
|
import "../shared-utils/url/absoluteUrl.js";
|
|
73
79
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
74
80
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -110,21 +116,17 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
110
116
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
111
117
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
112
118
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
113
|
-
import "../Sculpt/Meshes/Line.js";
|
|
114
|
-
import "../Sculpt/typings/style.js";
|
|
115
|
-
import "../shared-utils/five/FiveLine.js";
|
|
116
|
-
import "../shared-utils/tag.js";
|
|
117
|
-
import "../shared-utils/five/vector3ToScreen.js";
|
|
118
|
-
import "../Sculpt/utils/removeAllTag.js";
|
|
119
119
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
120
120
|
import "../shared-utils/isTouchDevice.js";
|
|
121
121
|
import "../shared-utils/five/getPosition.js";
|
|
122
122
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
123
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
124
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
123
125
|
import "./Assets/roomInfoIcon.js";
|
|
124
126
|
import "../CSS3DRenderPlugin/Controller.js";
|
|
125
127
|
import "../shared-utils/animationFrame/index.js";
|
|
126
128
|
const g = { userAction: !0 };
|
|
127
|
-
class
|
|
129
|
+
class Dt extends A {
|
|
128
130
|
constructor(e, t) {
|
|
129
131
|
super(e, t);
|
|
130
132
|
/**
|
|
@@ -379,5 +381,5 @@ class It extends A {
|
|
|
379
381
|
}
|
|
380
382
|
}
|
|
381
383
|
export {
|
|
382
|
-
|
|
384
|
+
Dt as PanoCompassController
|
|
383
385
|
};
|
|
@@ -6,38 +6,44 @@ 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";
|
|
9
12
|
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
|
+
import "../shared-utils/tag.js";
|
|
21
|
+
import "../shared-utils/five/vector3ToScreen.js";
|
|
22
|
+
import "../shared-utils/five/getFiveModel.js";
|
|
23
|
+
import "../shared-utils/three/raycaster.js";
|
|
10
24
|
import "../Sculpt/utils/Modules/Global.js";
|
|
11
25
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
12
26
|
import "../Object3DHelperPlugin/Controller.js";
|
|
13
|
-
import "../shared-utils/three/THREESphere.js";
|
|
14
27
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
15
28
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
16
29
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
17
|
-
import "../shared-utils/three/IObject3D.js";
|
|
18
30
|
import "../shared-utils/three/boundingBox.js";
|
|
19
31
|
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
20
32
|
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
21
33
|
import "../shared-utils/Object3DHelper/Constants/color.js";
|
|
22
34
|
import "../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
23
35
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
24
|
-
import "../shared-utils/positionToVector3.js";
|
|
25
36
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
26
37
|
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
27
38
|
import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
28
39
|
import "../CSS3DRenderPlugin/utils/even.js";
|
|
29
40
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
30
41
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
31
|
-
import "../shared-utils/three/centerPoint.js";
|
|
32
42
|
import "../shared-utils/three/getObjectVisible.js";
|
|
33
|
-
import "animejs";
|
|
34
|
-
import "../shared-utils/isNil.js";
|
|
35
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
36
43
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
37
44
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
38
45
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
39
46
|
import "../shared-utils/five/transformPosition.js";
|
|
40
|
-
import "../shared-utils/five/getFiveModel.js";
|
|
41
47
|
import "../shared-utils/url/absoluteUrl.js";
|
|
42
48
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
43
49
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -79,16 +85,12 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
79
85
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
80
86
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
81
87
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
82
|
-
import "../Sculpt/Meshes/Line.js";
|
|
83
|
-
import "../Sculpt/typings/style.js";
|
|
84
|
-
import "../shared-utils/five/FiveLine.js";
|
|
85
|
-
import "../shared-utils/tag.js";
|
|
86
|
-
import "../shared-utils/five/vector3ToScreen.js";
|
|
87
|
-
import "../Sculpt/utils/removeAllTag.js";
|
|
88
88
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
89
89
|
import "../shared-utils/isTouchDevice.js";
|
|
90
90
|
import "../shared-utils/five/getPosition.js";
|
|
91
91
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
92
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
93
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
92
94
|
import "./getRoomInfoInstance.js";
|
|
93
95
|
import "./Assets/roomInfoIcon.js";
|
|
94
96
|
import "../shared-utils/three/loadTexture.js";
|
|
@@ -96,8 +98,8 @@ import "../CSS3DRenderPlugin/index.js";
|
|
|
96
98
|
import "../CSS3DRenderPlugin/Controller.js";
|
|
97
99
|
import "../shared-utils/animationFrame/BetterTween.js";
|
|
98
100
|
import "../shared-utils/animationFrame/index.js";
|
|
99
|
-
const
|
|
101
|
+
const Yo = (o, r) => new t(o, r);
|
|
100
102
|
export {
|
|
101
|
-
|
|
102
|
-
|
|
103
|
+
Yo as PanoCompassPlugin,
|
|
104
|
+
Yo as default
|
|
103
105
|
};
|
|
@@ -17,38 +17,44 @@ 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";
|
|
20
23
|
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
|
+
import "../shared-utils/tag.js";
|
|
32
|
+
import "../shared-utils/five/vector3ToScreen.js";
|
|
33
|
+
import "../shared-utils/five/getFiveModel.js";
|
|
34
|
+
import "../shared-utils/three/raycaster.js";
|
|
21
35
|
import "../Sculpt/utils/Modules/Global.js";
|
|
22
36
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
23
37
|
import "../Object3DHelperPlugin/Controller.js";
|
|
24
|
-
import "../shared-utils/three/THREESphere.js";
|
|
25
38
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
26
39
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
27
40
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
28
|
-
import "../shared-utils/three/IObject3D.js";
|
|
29
41
|
import "../shared-utils/three/boundingBox.js";
|
|
30
42
|
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
31
43
|
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
32
44
|
import "../shared-utils/Object3DHelper/Constants/color.js";
|
|
33
45
|
import "../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
34
46
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
35
|
-
import "../shared-utils/positionToVector3.js";
|
|
36
47
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
37
48
|
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
38
49
|
import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
39
50
|
import "../CSS3DRenderPlugin/utils/even.js";
|
|
40
51
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
41
52
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
42
|
-
import "../shared-utils/three/centerPoint.js";
|
|
43
53
|
import "../shared-utils/three/getObjectVisible.js";
|
|
44
|
-
import "animejs";
|
|
45
|
-
import "../shared-utils/isNil.js";
|
|
46
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
47
54
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
48
55
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
49
56
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
50
57
|
import "../shared-utils/five/transformPosition.js";
|
|
51
|
-
import "../shared-utils/five/getFiveModel.js";
|
|
52
58
|
import "../shared-utils/url/absoluteUrl.js";
|
|
53
59
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
54
60
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -90,17 +96,13 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
90
96
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
91
97
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
92
98
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
93
|
-
import "../Sculpt/Meshes/Line.js";
|
|
94
|
-
import "../Sculpt/typings/style.js";
|
|
95
|
-
import "../shared-utils/five/FiveLine.js";
|
|
96
|
-
import "../shared-utils/tag.js";
|
|
97
|
-
import "../shared-utils/five/vector3ToScreen.js";
|
|
98
|
-
import "../Sculpt/utils/removeAllTag.js";
|
|
99
99
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
100
100
|
import "../shared-utils/isTouchDevice.js";
|
|
101
101
|
import "../shared-utils/five/getPosition.js";
|
|
102
102
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
103
|
-
|
|
103
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
104
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
105
|
+
class ii extends c {
|
|
104
106
|
constructor(t) {
|
|
105
107
|
super(t);
|
|
106
108
|
p(this, "state");
|
|
@@ -169,5 +171,5 @@ class _t extends c {
|
|
|
169
171
|
}
|
|
170
172
|
}
|
|
171
173
|
export {
|
|
172
|
-
|
|
174
|
+
ii as BasePanoPluginController
|
|
173
175
|
};
|
|
@@ -20,38 +20,44 @@ 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";
|
|
23
26
|
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
|
+
import "../shared-utils/tag.js";
|
|
35
|
+
import "../shared-utils/five/vector3ToScreen.js";
|
|
36
|
+
import "../shared-utils/five/getFiveModel.js";
|
|
37
|
+
import "../shared-utils/three/raycaster.js";
|
|
24
38
|
import "../Sculpt/utils/Modules/Global.js";
|
|
25
39
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
26
40
|
import "../Object3DHelperPlugin/Controller.js";
|
|
27
|
-
import "../shared-utils/three/THREESphere.js";
|
|
28
41
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
29
42
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
30
43
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
31
|
-
import "../shared-utils/three/IObject3D.js";
|
|
32
44
|
import "../shared-utils/three/boundingBox.js";
|
|
33
45
|
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
34
46
|
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
35
47
|
import "../shared-utils/Object3DHelper/Constants/color.js";
|
|
36
48
|
import "../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
37
49
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
38
|
-
import "../shared-utils/positionToVector3.js";
|
|
39
50
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
40
51
|
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
41
52
|
import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
42
53
|
import "../CSS3DRenderPlugin/utils/even.js";
|
|
43
54
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
44
55
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
45
|
-
import "../shared-utils/three/centerPoint.js";
|
|
46
56
|
import "../shared-utils/three/getObjectVisible.js";
|
|
47
|
-
import "animejs";
|
|
48
|
-
import "../shared-utils/isNil.js";
|
|
49
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
50
57
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
51
58
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
52
59
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
53
60
|
import "../shared-utils/five/transformPosition.js";
|
|
54
|
-
import "../shared-utils/five/getFiveModel.js";
|
|
55
61
|
import "../shared-utils/url/absoluteUrl.js";
|
|
56
62
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
57
63
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -93,20 +99,16 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
93
99
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
94
100
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
95
101
|
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 "../shared-utils/tag.js";
|
|
100
|
-
import "../shared-utils/five/vector3ToScreen.js";
|
|
101
|
-
import "../Sculpt/utils/removeAllTag.js";
|
|
102
102
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
103
103
|
import "../shared-utils/isTouchDevice.js";
|
|
104
104
|
import "../shared-utils/five/getPosition.js";
|
|
105
105
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
106
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
107
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
106
108
|
import "../vendor/svelte/internal/index.js";
|
|
107
109
|
import "../vendor/classnames/index.js";
|
|
108
110
|
const ii = { userAction: !0 };
|
|
109
|
-
class
|
|
111
|
+
class Gt extends q {
|
|
110
112
|
constructor(i) {
|
|
111
113
|
super(i);
|
|
112
114
|
n(this, "MinVisibledistance", 1.8);
|
|
@@ -125,23 +127,23 @@ class Bt extends q {
|
|
|
125
127
|
n(this, "doorLabels");
|
|
126
128
|
n(this, "roomObservers");
|
|
127
129
|
n(this, "loadData", (i, r) => {
|
|
128
|
-
r && (this.MaxVisibledistance = r.MaxVisibledistance, this.MinVisibledistance = r.MinVisibledistance, this.OffsetHeight = r.OffsetHeight), this.doorLabelItems && this.doorLabelItems.length > 0 && this.doorLabelItems.forEach((
|
|
129
|
-
|
|
130
|
+
r && (this.MaxVisibledistance = r.MaxVisibledistance, this.MinVisibledistance = r.MinVisibledistance, this.OffsetHeight = r.OffsetHeight), this.doorLabelItems && this.doorLabelItems.length > 0 && this.doorLabelItems.forEach((c) => {
|
|
131
|
+
c.$destroy();
|
|
130
132
|
}), this.labelItems = [], this.doorLabels = [], this.doorLabelItems = [], this.floorplanServerData = i, typeof this.five.ready == "function" ? this.five.ready().then(() => this.initData()) : this.five.once("panoArrived", () => {
|
|
131
133
|
this.initData();
|
|
132
134
|
});
|
|
133
135
|
});
|
|
134
136
|
n(this, "initRoomObservers", () => {
|
|
135
137
|
var l, m;
|
|
136
|
-
const i = this.floorplanServerData.computed_data.floor_datas || [],
|
|
137
|
-
const s = e.panoIndex,
|
|
138
|
+
const i = this.floorplanServerData.computed_data.floor_datas || [], c = (((m = (l = this.five) == null ? void 0 : l.work) == null ? void 0 : m.observers) || []).map((e) => {
|
|
139
|
+
const s = e.panoIndex, p = e.floorIndex, t = i == null ? void 0 : i.find((o) => o.floor_index === p);
|
|
138
140
|
if (t) {
|
|
139
141
|
const o = t.rooms.find((h) => h.observer_indexs.includes(s));
|
|
140
142
|
if (o)
|
|
141
|
-
return { panoIndex: s, floorIndex:
|
|
143
|
+
return { panoIndex: s, floorIndex: p, name: o.name };
|
|
142
144
|
}
|
|
143
145
|
}).filter(Boolean);
|
|
144
|
-
this.roomObservers =
|
|
146
|
+
this.roomObservers = c;
|
|
145
147
|
});
|
|
146
148
|
n(this, "hideAllLabels", () => {
|
|
147
149
|
this.labelItems.forEach((i) => {
|
|
@@ -158,7 +160,7 @@ class Bt extends q {
|
|
|
158
160
|
return this.visibleLabelMap.get(i);
|
|
159
161
|
{
|
|
160
162
|
const e = [];
|
|
161
|
-
return this.doorLabels.forEach((s,
|
|
163
|
+
return this.doorLabels.forEach((s, p) => {
|
|
162
164
|
if (s.roomName === r.name)
|
|
163
165
|
return;
|
|
164
166
|
const t = s.position.clone(), o = t.distanceTo(l);
|
|
@@ -167,7 +169,7 @@ class Bt extends q {
|
|
|
167
169
|
const h = new Q(), v = t.clone().sub(l).normalize();
|
|
168
170
|
h.set(l, v);
|
|
169
171
|
const [b] = this.five.model.intersectRaycaster(h);
|
|
170
|
-
b && b.distance + 0.1 < o || e.push(
|
|
172
|
+
b && b.distance + 0.1 < o || e.push(p);
|
|
171
173
|
}), this.visibleLabelMap.set(i, e), e;
|
|
172
174
|
}
|
|
173
175
|
})();
|
|
@@ -182,8 +184,8 @@ class Bt extends q {
|
|
|
182
184
|
return;
|
|
183
185
|
if (this.five.currentMode !== "Panorama")
|
|
184
186
|
return this.hideAllLabels();
|
|
185
|
-
const
|
|
186
|
-
if (
|
|
187
|
+
const c = this.five.getElement(), l = c.clientWidth, m = c.clientHeight, e = r.getWorldDirection(new V()), s = [], p = [...this.labelItems];
|
|
188
|
+
if (p.forEach((f, u) => {
|
|
187
189
|
if (f.visible) {
|
|
188
190
|
const x = r.position.distanceTo(f.position), M = f.position.clone().add(new V(0, this.OffsetHeight, 0)), A = M.clone().sub(r.position).normalize().angleTo(e), O = M.clone().project(r), P = (O.x + 1) / 2.2 * 100, I = (-O.y + 1) / 2.2 * 100, D = P >= 0 && P <= 100 && I >= 0 && I <= 100 && x > this.MinVisibledistance && x <= this.MaxVisibledistance;
|
|
189
191
|
f.left = P, f.top = I, f.inSight = D && A < Math.PI / 2, f.cameraToward = Y(this.five), D ? s.push({ disFromCameraToLabel: x, left: P, top: I, index: u }) : f.transform = "translate(-50%, -50%)";
|
|
@@ -207,17 +209,17 @@ class Bt extends q {
|
|
|
207
209
|
width: (L = (w = (g = D.children) == null ? void 0 : g[0]) == null ? void 0 : w.clientWidth) != null ? L : 0,
|
|
208
210
|
height: (S = (_ = (E = D.children) == null ? void 0 : E[0]) == null ? void 0 : _.clientHeight) != null ? S : 0
|
|
209
211
|
};
|
|
210
|
-
Z(R, F) && (f++,
|
|
212
|
+
Z(R, F) && (f++, p[x].transform = `translate(-50%, ${(f - 1) * 100 - 50}%)`, p[A].transform = `translate(-50%, ${f * 100 - 50}%)`);
|
|
211
213
|
}
|
|
212
214
|
}
|
|
213
|
-
this.labelItems =
|
|
215
|
+
this.labelItems = p, this.render();
|
|
214
216
|
});
|
|
215
217
|
n(this, "onClick", (i, r) => {
|
|
216
218
|
if (!this.roomObservers)
|
|
217
219
|
return;
|
|
218
|
-
const { work:
|
|
220
|
+
const { work: c } = this.five;
|
|
219
221
|
let l, m, e = 1 / 0;
|
|
220
|
-
for (const s of
|
|
222
|
+
for (const s of c.observers)
|
|
221
223
|
if (this.roomObservers.find((t) => t.panoIndex === s.panoIndex && t.name === i)) {
|
|
222
224
|
const t = s.standingPosition, o = r.distanceTo(t);
|
|
223
225
|
o < e && (l = s.panoIndex, m = t.clone().sub(r).normalize(), e = o);
|
|
@@ -236,10 +238,10 @@ class Bt extends q {
|
|
|
236
238
|
n(this, "initData", () => {
|
|
237
239
|
var l;
|
|
238
240
|
this.doorLabels = [];
|
|
239
|
-
const i = this.five.panoIndex, r = this.floorplanServerData.computed_data.observers[i].floor_index,
|
|
240
|
-
this.rooms =
|
|
241
|
-
var
|
|
242
|
-
const e = (
|
|
241
|
+
const i = this.five.panoIndex, r = this.floorplanServerData.computed_data.observers[i].floor_index, c = r !== void 0 && ((l = this.floorplanServerData.computed_data.floor_datas[r]) == null ? void 0 : l.rooms);
|
|
242
|
+
this.rooms = c, this.rooms && this.rooms.length > 0 && this.rooms.forEach((m) => {
|
|
243
|
+
var p;
|
|
244
|
+
const e = (p = this.floorplanServerData.computed_data.doors) == null ? void 0 : p.filter((t) => !!(t && t.name === m.name)), s = this.five.work.observers.filter((t, o) => !!m.observer_indexs.find((h) => h === o));
|
|
243
245
|
e && e.forEach((t) => {
|
|
244
246
|
const o = t.position;
|
|
245
247
|
let h = 1 / 0, v;
|
|
@@ -271,12 +273,12 @@ class Bt extends q {
|
|
|
271
273
|
}
|
|
272
274
|
stateChangedCallback(i, r) {
|
|
273
275
|
if (this.hooks.hasListener("stateChange")) {
|
|
274
|
-
const
|
|
276
|
+
const c = {
|
|
275
277
|
state: this.state,
|
|
276
278
|
prevState: i,
|
|
277
279
|
userAction: r ? r.userAction : ii.userAction
|
|
278
280
|
};
|
|
279
|
-
this.hooks.emit("stateChange",
|
|
281
|
+
this.hooks.emit("stateChange", c);
|
|
280
282
|
}
|
|
281
283
|
}
|
|
282
284
|
render() {
|
|
@@ -310,5 +312,5 @@ class Bt extends q {
|
|
|
310
312
|
}
|
|
311
313
|
}
|
|
312
314
|
export {
|
|
313
|
-
|
|
315
|
+
Gt as PanoDoorLabelPluginController
|
|
314
316
|
};
|
|
@@ -6,38 +6,44 @@ 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";
|
|
9
12
|
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
|
+
import "../shared-utils/tag.js";
|
|
21
|
+
import "../shared-utils/five/vector3ToScreen.js";
|
|
22
|
+
import "../shared-utils/five/getFiveModel.js";
|
|
23
|
+
import "../shared-utils/three/raycaster.js";
|
|
10
24
|
import "../Sculpt/utils/Modules/Global.js";
|
|
11
25
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
12
26
|
import "../Object3DHelperPlugin/Controller.js";
|
|
13
|
-
import "../shared-utils/three/THREESphere.js";
|
|
14
27
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
15
28
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
16
29
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
17
|
-
import "../shared-utils/three/IObject3D.js";
|
|
18
30
|
import "../shared-utils/three/boundingBox.js";
|
|
19
31
|
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
20
32
|
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
21
33
|
import "../shared-utils/Object3DHelper/Constants/color.js";
|
|
22
34
|
import "../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
23
35
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
24
|
-
import "../shared-utils/positionToVector3.js";
|
|
25
36
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
26
37
|
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
27
38
|
import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
28
39
|
import "../CSS3DRenderPlugin/utils/even.js";
|
|
29
40
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
30
41
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
31
|
-
import "../shared-utils/three/centerPoint.js";
|
|
32
42
|
import "../shared-utils/three/getObjectVisible.js";
|
|
33
|
-
import "animejs";
|
|
34
|
-
import "../shared-utils/isNil.js";
|
|
35
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
36
43
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
37
44
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
38
45
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
39
46
|
import "../shared-utils/five/transformPosition.js";
|
|
40
|
-
import "../shared-utils/five/getFiveModel.js";
|
|
41
47
|
import "../shared-utils/url/absoluteUrl.js";
|
|
42
48
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
43
49
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -79,22 +85,18 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
79
85
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
80
86
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
81
87
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
82
|
-
import "../Sculpt/Meshes/Line.js";
|
|
83
|
-
import "../Sculpt/typings/style.js";
|
|
84
|
-
import "../shared-utils/five/FiveLine.js";
|
|
85
|
-
import "../shared-utils/tag.js";
|
|
86
|
-
import "../shared-utils/five/vector3ToScreen.js";
|
|
87
|
-
import "../Sculpt/utils/removeAllTag.js";
|
|
88
88
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
89
89
|
import "../shared-utils/isTouchDevice.js";
|
|
90
90
|
import "../shared-utils/five/getPosition.js";
|
|
91
91
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
92
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
93
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
92
94
|
import "./DoorLabelItem.js";
|
|
93
95
|
import "../vendor/svelte/internal/index.js";
|
|
94
96
|
import "../vendor/classnames/index.js";
|
|
95
97
|
import "./utils.js";
|
|
96
|
-
const
|
|
98
|
+
const Uo = (o) => new r(o);
|
|
97
99
|
export {
|
|
98
|
-
|
|
99
|
-
|
|
100
|
+
Uo as PanoDoorLabelPlugin,
|
|
101
|
+
Uo as default
|
|
100
102
|
};
|