@realsee/dnalogel 3.47.4 → 3.47.6
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/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 +62 -40
- package/dist/index.js +2453 -2428
- package/dist/index.umd.js +65 -43
- package/dist/shared-utils/five/vector3ToScreen.d.ts +4 -4
- package/dist/shared-utils/tag.d.ts +4 -4
- 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 +28 -28
- 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 +4 -4
- package/libs/shared-utils/tag.js +60 -46
- 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
|
@@ -14,40 +14,46 @@ import "@realsee/five";
|
|
|
14
14
|
import "../../../shared-utils/five/mode.js";
|
|
15
15
|
import "hammerjs";
|
|
16
16
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
17
|
+
import "../../../Sculpt/Meshes/Line.js";
|
|
18
|
+
import "../../../Sculpt/typings/style.js";
|
|
19
|
+
import "../../../shared-utils/five/FiveLine.js";
|
|
17
20
|
import "@realsee/five/line";
|
|
21
|
+
import "../../../shared-utils/positionToVector3.js";
|
|
22
|
+
import "../../../shared-utils/three/IObject3D.js";
|
|
23
|
+
import "../../../shared-utils/three/centerPoint.js";
|
|
24
|
+
import "../../../shared-utils/three/THREESphere.js";
|
|
25
|
+
import "animejs";
|
|
26
|
+
import "../../../shared-utils/isNil.js";
|
|
27
|
+
import "../../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
28
|
+
import "../../../shared-utils/tag.js";
|
|
29
|
+
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
30
|
+
import "../../../shared-utils/five/getFiveModel.js";
|
|
31
|
+
import "../../../shared-utils/three/raycaster.js";
|
|
18
32
|
import "../../../Sculpt/utils/Modules/Global.js";
|
|
19
33
|
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
20
34
|
import "../../../Object3DHelperPlugin/Controller.js";
|
|
21
35
|
import "../../../base/BasePlugin.js";
|
|
22
|
-
import "../../../shared-utils/three/THREESphere.js";
|
|
23
|
-
import "animejs";
|
|
24
36
|
import "../../../shared-utils/Utils/FiveUtil.js";
|
|
25
37
|
import "../../../shared-utils/Utils/BaseUtil.js";
|
|
26
38
|
import "../../../shared-utils/Utils/WorkUtil.js";
|
|
27
39
|
import "../../../shared-utils/five/transformPosition.js";
|
|
28
|
-
import "../../../shared-utils/five/getFiveModel.js";
|
|
29
40
|
import "../../../shared-utils/url/absoluteUrl.js";
|
|
30
|
-
import "../../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
31
41
|
import "../../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
32
42
|
import "../../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
33
43
|
import "../../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
34
|
-
import "../../../shared-utils/three/IObject3D.js";
|
|
35
44
|
import "../../../shared-utils/three/boundingBox.js";
|
|
36
45
|
import "../../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
37
46
|
import "../../../shared-utils/Object3DHelper/utils/direction.js";
|
|
38
47
|
import "../../../shared-utils/Object3DHelper/Constants/color.js";
|
|
39
48
|
import "../../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
40
49
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
41
|
-
import "../../../shared-utils/positionToVector3.js";
|
|
42
50
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
43
51
|
import "../../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
44
52
|
import "../../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
45
53
|
import "../../../CSS3DRenderPlugin/utils/even.js";
|
|
46
54
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
47
55
|
import "../../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
48
|
-
import "../../../shared-utils/three/centerPoint.js";
|
|
49
56
|
import "../../../shared-utils/three/getObjectVisible.js";
|
|
50
|
-
import "../../../shared-utils/isNil.js";
|
|
51
57
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
52
58
|
import "../../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
53
59
|
import "../../../shared-utils/util.js";
|
|
@@ -88,16 +94,12 @@ import "../../../shared-utils/three/Assets/index.js";
|
|
|
88
94
|
import "../../../shared-utils/three/PointSelector/utils/html.js";
|
|
89
95
|
import "../../../shared-utils/five/initialCSS3DRender.js";
|
|
90
96
|
import "../../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
91
|
-
import "../../../Sculpt/Meshes/Line.js";
|
|
92
|
-
import "../../../Sculpt/typings/style.js";
|
|
93
|
-
import "../../../shared-utils/five/FiveLine.js";
|
|
94
|
-
import "../../../shared-utils/tag.js";
|
|
95
|
-
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
96
|
-
import "../../../Sculpt/utils/removeAllTag.js";
|
|
97
97
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
98
98
|
import "../../../shared-utils/isTouchDevice.js";
|
|
99
99
|
import "../../../shared-utils/five/getPosition.js";
|
|
100
100
|
import "../../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
101
|
+
import "../../../Sculpt/utils/removeAllTag.js";
|
|
102
|
+
import "../../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
101
103
|
import "../../utils/tag/format.js";
|
|
102
104
|
import "../../../shared-utils/three/blink.js";
|
|
103
105
|
import "../../../shared-utils/vectorToCoordinate.js";
|
|
@@ -113,7 +115,7 @@ import "../../../shared-utils/safeObj.js";
|
|
|
113
115
|
import "../../utils/Cache.js";
|
|
114
116
|
import "../../../CruisePlugin/utils/sleep.js";
|
|
115
117
|
const v = new d.Vector2();
|
|
116
|
-
class
|
|
118
|
+
class Si extends g {
|
|
117
119
|
constructor(t, i) {
|
|
118
120
|
super(t, i);
|
|
119
121
|
p(this, "__Object__");
|
|
@@ -206,5 +208,5 @@ class ki extends g {
|
|
|
206
208
|
}
|
|
207
209
|
}
|
|
208
210
|
export {
|
|
209
|
-
|
|
211
|
+
Si as PointTag
|
|
210
212
|
};
|
|
@@ -91,31 +91,37 @@ import "../Components/Common/MediaItem.js";
|
|
|
91
91
|
import "../Components/Tag/MarketingTag.js";
|
|
92
92
|
import "hammerjs";
|
|
93
93
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
94
|
+
import "../../Sculpt/Meshes/Line.js";
|
|
95
|
+
import "../../Sculpt/typings/style.js";
|
|
96
|
+
import "../../shared-utils/five/FiveLine.js";
|
|
94
97
|
import "@realsee/five/line";
|
|
98
|
+
import "../../shared-utils/positionToVector3.js";
|
|
99
|
+
import "../../shared-utils/three/IObject3D.js";
|
|
100
|
+
import "../../shared-utils/three/THREESphere.js";
|
|
101
|
+
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
102
|
+
import "../../shared-utils/tag.js";
|
|
103
|
+
import "../../shared-utils/five/vector3ToScreen.js";
|
|
104
|
+
import "../../shared-utils/five/getFiveModel.js";
|
|
105
|
+
import "../../shared-utils/three/raycaster.js";
|
|
95
106
|
import "../../Sculpt/utils/Modules/Global.js";
|
|
96
107
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
97
108
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
98
109
|
import "../../base/BasePlugin.js";
|
|
99
110
|
import "../../shared-utils/Subscribe.js";
|
|
100
|
-
import "../../shared-utils/three/THREESphere.js";
|
|
101
111
|
import "../../shared-utils/Utils/FiveUtil.js";
|
|
102
112
|
import "../../shared-utils/Utils/BaseUtil.js";
|
|
103
113
|
import "../../shared-utils/Utils/WorkUtil.js";
|
|
104
114
|
import "../../shared-utils/five/transformPosition.js";
|
|
105
|
-
import "../../shared-utils/five/getFiveModel.js";
|
|
106
115
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
107
|
-
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
108
116
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
109
117
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
110
118
|
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
111
|
-
import "../../shared-utils/three/IObject3D.js";
|
|
112
119
|
import "../../shared-utils/three/boundingBox.js";
|
|
113
120
|
import "../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
114
121
|
import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
115
122
|
import "../../shared-utils/Object3DHelper/Constants/color.js";
|
|
116
123
|
import "../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
117
124
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
118
|
-
import "../../shared-utils/positionToVector3.js";
|
|
119
125
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
120
126
|
import "../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
121
127
|
import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
@@ -162,16 +168,12 @@ import "../../shared-utils/three/Assets/index.js";
|
|
|
162
168
|
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
163
169
|
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
164
170
|
import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
165
|
-
import "../../Sculpt/Meshes/Line.js";
|
|
166
|
-
import "../../Sculpt/typings/style.js";
|
|
167
|
-
import "../../shared-utils/five/FiveLine.js";
|
|
168
|
-
import "../../shared-utils/tag.js";
|
|
169
|
-
import "../../shared-utils/five/vector3ToScreen.js";
|
|
170
|
-
import "../../Sculpt/utils/removeAllTag.js";
|
|
171
171
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
172
172
|
import "../../shared-utils/isTouchDevice.js";
|
|
173
173
|
import "../../shared-utils/five/getPosition.js";
|
|
174
174
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
175
|
+
import "../../Sculpt/utils/removeAllTag.js";
|
|
176
|
+
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
175
177
|
import "../utils/noTypecheck.js";
|
|
176
178
|
import "../Components/Tag/AudioTag/index.js";
|
|
177
179
|
import "../Components/Tag/AudioTag/AudioTag.js";
|
|
@@ -225,7 +227,7 @@ import "../utils/normalPositionToPositions.js";
|
|
|
225
227
|
import "../../vendor/svelte/store/index.js";
|
|
226
228
|
import "../../CSS3DRenderPlugin/index.js";
|
|
227
229
|
import "../../CSS3DRenderPlugin/Controller.js";
|
|
228
|
-
class
|
|
230
|
+
class vr extends U {
|
|
229
231
|
constructor(t) {
|
|
230
232
|
super(t);
|
|
231
233
|
c(this, "rendererMap", /* @__PURE__ */ new Map());
|
|
@@ -376,5 +378,5 @@ class Pr extends U {
|
|
|
376
378
|
}
|
|
377
379
|
}
|
|
378
380
|
export {
|
|
379
|
-
|
|
381
|
+
vr as TagRender
|
|
380
382
|
};
|
|
@@ -27,15 +27,25 @@ import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
|
27
27
|
import "../../shared-utils/three/centerPoint.js";
|
|
28
28
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
29
29
|
import "hammerjs";
|
|
30
|
+
import "../../Sculpt/Meshes/Line.js";
|
|
31
|
+
import "../../Sculpt/typings/style.js";
|
|
32
|
+
import "../../shared-utils/five/FiveLine.js";
|
|
30
33
|
import "@realsee/five/line";
|
|
34
|
+
import "../../shared-utils/three/IObject3D.js";
|
|
35
|
+
import "../../shared-utils/three/THREESphere.js";
|
|
36
|
+
import "animejs";
|
|
37
|
+
import "../../shared-utils/isNil.js";
|
|
38
|
+
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
39
|
+
import "../../shared-utils/tag.js";
|
|
40
|
+
import "../../shared-utils/five/vector3ToScreen.js";
|
|
41
|
+
import "../../shared-utils/five/getFiveModel.js";
|
|
42
|
+
import "../../shared-utils/three/raycaster.js";
|
|
31
43
|
import "../../Sculpt/utils/Modules/Global.js";
|
|
32
44
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
33
45
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
34
|
-
import "../../shared-utils/three/THREESphere.js";
|
|
35
46
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
36
47
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
37
48
|
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
38
|
-
import "../../shared-utils/three/IObject3D.js";
|
|
39
49
|
import "../../shared-utils/three/boundingBox.js";
|
|
40
50
|
import "../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
41
51
|
import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -50,7 +60,6 @@ import "../../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
|
50
60
|
import "../../shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
51
61
|
import "../../shared-utils/Object3DHelper/Base/BaseController.js";
|
|
52
62
|
import "../../shared-utils/threex/domevents/index.js";
|
|
53
|
-
import "../../shared-utils/isNil.js";
|
|
54
63
|
import "../../shared-utils/util.js";
|
|
55
64
|
import "../../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
56
65
|
import "../../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
@@ -68,7 +77,6 @@ import "../../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
|
|
|
68
77
|
import "../../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
|
|
69
78
|
import "../../shared-utils/Object3DHelper/Controller/ScaleController.js";
|
|
70
79
|
import "../../shared-utils/five/fiveModelLoad.js";
|
|
71
|
-
import "../../shared-utils/five/getFiveModel.js";
|
|
72
80
|
import "../../shared-utils/five/calculateThreeMouse.js";
|
|
73
81
|
import "../../shared-utils/three/THREERaycaster.js";
|
|
74
82
|
import "../../shared-utils/three/PointSelector/index.js";
|
|
@@ -79,14 +87,6 @@ import "../../shared-utils/three/Assets/index.js";
|
|
|
79
87
|
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
80
88
|
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
81
89
|
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
|
-
import "animejs";
|
|
89
|
-
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
90
90
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
91
91
|
import "../../shared-utils/isTouchDevice.js";
|
|
92
92
|
import "../../shared-utils/five/getPosition.js";
|
|
@@ -99,6 +99,8 @@ import "../../shared-utils/url/absoluteUrl.js";
|
|
|
99
99
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
100
100
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
101
101
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
102
|
+
import "../../Sculpt/utils/removeAllTag.js";
|
|
103
|
+
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
102
104
|
import "../../shared-utils/three/loadTexture.js";
|
|
103
105
|
import "../../shared-utils/three/Quadrangle.js";
|
|
104
106
|
import "../../shared-utils/math/pointsIsRectangle.js";
|
|
@@ -107,7 +109,7 @@ import "../Assets/Icon.js";
|
|
|
107
109
|
import "../../shared-utils/three/getPositionsByObjectFit.js";
|
|
108
110
|
import "../../shared-utils/three/FragmentTransparencyMaterial.js";
|
|
109
111
|
import "../../shared-utils/three/getNormal.js";
|
|
110
|
-
class
|
|
112
|
+
class ki extends E {
|
|
111
113
|
constructor(t) {
|
|
112
114
|
super(t);
|
|
113
115
|
e(this, "tags", []);
|
|
@@ -237,5 +239,5 @@ class Ei extends E {
|
|
|
237
239
|
}
|
|
238
240
|
}
|
|
239
241
|
export {
|
|
240
|
-
|
|
242
|
+
ki as TagUtil
|
|
241
243
|
};
|
|
@@ -40,8 +40,7 @@ import { TagRender as O } from "./TagRender.js";
|
|
|
40
40
|
import { isModelLike as R } from "../../shared-utils/five/mode.js";
|
|
41
41
|
import "hammerjs";
|
|
42
42
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
43
|
-
import "
|
|
44
|
-
import "../../Sculpt/utils/Modules/Global.js";
|
|
43
|
+
import "../../Sculpt/Meshes/Line.js";
|
|
45
44
|
import "../../shared-utils/three/THREESphere.js";
|
|
46
45
|
import "animejs";
|
|
47
46
|
import { nextFrame as G } from "../../shared-utils/animationFrame/index.js";
|
|
@@ -111,6 +110,16 @@ import "../../vendor/svelte-carousel/src/utils/interval.js";
|
|
|
111
110
|
import "../Components/Common/MediaItem.js";
|
|
112
111
|
import "../Components/Tag/MarketingTag.js";
|
|
113
112
|
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
113
|
+
import "../../Sculpt/typings/style.js";
|
|
114
|
+
import "../../shared-utils/five/FiveLine.js";
|
|
115
|
+
import "@realsee/five/line";
|
|
116
|
+
import "../../shared-utils/three/IObject3D.js";
|
|
117
|
+
import "../../shared-utils/three/centerPoint.js";
|
|
118
|
+
import "../../shared-utils/tag.js";
|
|
119
|
+
import "../../shared-utils/five/vector3ToScreen.js";
|
|
120
|
+
import "../../shared-utils/five/getFiveModel.js";
|
|
121
|
+
import "../../shared-utils/three/raycaster.js";
|
|
122
|
+
import "../../Sculpt/utils/Modules/Global.js";
|
|
114
123
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
115
124
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
116
125
|
import "../../base/BasePlugin.js";
|
|
@@ -119,12 +128,10 @@ import "../../shared-utils/Utils/FiveUtil.js";
|
|
|
119
128
|
import "../../shared-utils/Utils/BaseUtil.js";
|
|
120
129
|
import "../../shared-utils/Utils/WorkUtil.js";
|
|
121
130
|
import "../../shared-utils/five/transformPosition.js";
|
|
122
|
-
import "../../shared-utils/five/getFiveModel.js";
|
|
123
131
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
124
132
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
125
133
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
126
134
|
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
127
|
-
import "../../shared-utils/three/IObject3D.js";
|
|
128
135
|
import "../../shared-utils/three/boundingBox.js";
|
|
129
136
|
import "../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
130
137
|
import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -137,7 +144,6 @@ import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
|
137
144
|
import "../../CSS3DRenderPlugin/utils/even.js";
|
|
138
145
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
139
146
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
140
|
-
import "../../shared-utils/three/centerPoint.js";
|
|
141
147
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
142
148
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
143
149
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -178,16 +184,12 @@ import "../../shared-utils/three/Assets/index.js";
|
|
|
178
184
|
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
179
185
|
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
180
186
|
import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
181
|
-
import "../../Sculpt/Meshes/Line.js";
|
|
182
|
-
import "../../Sculpt/typings/style.js";
|
|
183
|
-
import "../../shared-utils/five/FiveLine.js";
|
|
184
|
-
import "../../shared-utils/tag.js";
|
|
185
|
-
import "../../shared-utils/five/vector3ToScreen.js";
|
|
186
|
-
import "../../Sculpt/utils/removeAllTag.js";
|
|
187
187
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
188
188
|
import "../../shared-utils/isTouchDevice.js";
|
|
189
189
|
import "../../shared-utils/five/getPosition.js";
|
|
190
190
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
191
|
+
import "../../Sculpt/utils/removeAllTag.js";
|
|
192
|
+
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
191
193
|
import "../utils/noTypecheck.js";
|
|
192
194
|
import "../Components/Tag/AudioTag/index.js";
|
|
193
195
|
import "../Components/Tag/AudioTag/AudioTag.js";
|
|
@@ -240,8 +242,8 @@ import "../utils/addDebugPoints.js";
|
|
|
240
242
|
import "../utils/requestIdleCallback.js";
|
|
241
243
|
import "../Components/TagItem.js";
|
|
242
244
|
import "../Components/Common/TagPoint.js";
|
|
243
|
-
const S = "Dnalogel-PanoTagPlugin",
|
|
244
|
-
class
|
|
245
|
+
const S = "Dnalogel-PanoTagPlugin", jo = (p) => `${S}--${p}`;
|
|
246
|
+
class qo extends O {
|
|
245
247
|
constructor(e, t) {
|
|
246
248
|
super(e);
|
|
247
249
|
/** state */
|
|
@@ -646,7 +648,7 @@ class Wo extends O {
|
|
|
646
648
|
}
|
|
647
649
|
}
|
|
648
650
|
export {
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
651
|
+
qo as PanoTagPluginController,
|
|
652
|
+
qo as default,
|
|
653
|
+
jo as pluginFlag
|
|
652
654
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import r from "./controller/index.js";
|
|
2
|
-
import { pluginFlag as
|
|
3
|
-
import { defaultGlobalConfig as
|
|
4
|
-
import { ContentType as
|
|
2
|
+
import { pluginFlag as np } from "./controller/index.js";
|
|
3
|
+
import { defaultGlobalConfig as lp } from "./typings/tag/TagConfig.js";
|
|
4
|
+
import { ContentType as fp, DimensionType as gp, PointType as up } from "./Archive/deprecated.js";
|
|
5
5
|
import "three";
|
|
6
6
|
import "../vendor/object-assign-deep/objectAssignDeep.js";
|
|
7
7
|
import "../shared-utils/positionToVector3.js";
|
|
@@ -72,24 +72,31 @@ import "./Components/Common/MediaItem.js";
|
|
|
72
72
|
import "./Components/Tag/MarketingTag.js";
|
|
73
73
|
import "hammerjs";
|
|
74
74
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
75
|
+
import "../Sculpt/Meshes/Line.js";
|
|
76
|
+
import "../Sculpt/typings/style.js";
|
|
77
|
+
import "../shared-utils/five/FiveLine.js";
|
|
75
78
|
import "@realsee/five/line";
|
|
79
|
+
import "../shared-utils/three/IObject3D.js";
|
|
80
|
+
import "../shared-utils/three/centerPoint.js";
|
|
81
|
+
import "../shared-utils/three/THREESphere.js";
|
|
82
|
+
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
83
|
+
import "../shared-utils/tag.js";
|
|
84
|
+
import "../shared-utils/five/vector3ToScreen.js";
|
|
85
|
+
import "../shared-utils/five/getFiveModel.js";
|
|
86
|
+
import "../shared-utils/three/raycaster.js";
|
|
76
87
|
import "../Sculpt/utils/Modules/Global.js";
|
|
77
88
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
78
89
|
import "../Object3DHelperPlugin/Controller.js";
|
|
79
90
|
import "../base/BasePlugin.js";
|
|
80
91
|
import "../shared-utils/Subscribe.js";
|
|
81
|
-
import "../shared-utils/three/THREESphere.js";
|
|
82
92
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
83
93
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
84
94
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
85
95
|
import "../shared-utils/five/transformPosition.js";
|
|
86
|
-
import "../shared-utils/five/getFiveModel.js";
|
|
87
96
|
import "../shared-utils/url/absoluteUrl.js";
|
|
88
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
89
97
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
90
98
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
91
99
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
92
|
-
import "../shared-utils/three/IObject3D.js";
|
|
93
100
|
import "../shared-utils/three/boundingBox.js";
|
|
94
101
|
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
95
102
|
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -102,7 +109,6 @@ import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
|
102
109
|
import "../CSS3DRenderPlugin/utils/even.js";
|
|
103
110
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
104
111
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
105
|
-
import "../shared-utils/three/centerPoint.js";
|
|
106
112
|
import "../shared-utils/three/getObjectVisible.js";
|
|
107
113
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
108
114
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -144,16 +150,12 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
144
150
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
145
151
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
146
152
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
147
|
-
import "../Sculpt/Meshes/Line.js";
|
|
148
|
-
import "../Sculpt/typings/style.js";
|
|
149
|
-
import "../shared-utils/five/FiveLine.js";
|
|
150
|
-
import "../shared-utils/tag.js";
|
|
151
|
-
import "../shared-utils/five/vector3ToScreen.js";
|
|
152
|
-
import "../Sculpt/utils/removeAllTag.js";
|
|
153
153
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
154
154
|
import "../shared-utils/isTouchDevice.js";
|
|
155
155
|
import "../shared-utils/five/getPosition.js";
|
|
156
156
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
157
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
158
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
157
159
|
import "./utils/noTypecheck.js";
|
|
158
160
|
import "./Components/Tag/AudioTag/index.js";
|
|
159
161
|
import "./Components/Tag/AudioTag/AudioTag.js";
|
|
@@ -214,14 +216,14 @@ import "./Components/TagContainer.js";
|
|
|
214
216
|
import "./Components/TagItem.js";
|
|
215
217
|
import "./Components/Common/TagPoint.js";
|
|
216
218
|
import "../shared-utils/animationFrame/BetterTween.js";
|
|
217
|
-
const
|
|
219
|
+
const pp = (o, t) => new r(o, t);
|
|
218
220
|
export {
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
221
|
+
fp as ContentType,
|
|
222
|
+
gp as DimensionType,
|
|
223
|
+
pp as PanoTagPlugin,
|
|
222
224
|
r as PanoTagPluginController,
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
225
|
+
up as PointType,
|
|
226
|
+
pp as default,
|
|
227
|
+
lp as defaultGlobalConfig,
|
|
228
|
+
np as pluginFlag
|
|
227
229
|
};
|
|
@@ -19,11 +19,22 @@ import { isPanoramaLike as R, isModelLike as S } from "../../../shared-utils/fiv
|
|
|
19
19
|
import "three";
|
|
20
20
|
import "hammerjs";
|
|
21
21
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
22
|
-
import "
|
|
23
|
-
import "../../../Sculpt/utils/Modules/Global.js";
|
|
22
|
+
import "../../../Sculpt/Meshes/Line.js";
|
|
24
23
|
import "../../../shared-utils/three/THREESphere.js";
|
|
25
24
|
import "animejs";
|
|
26
25
|
import "../../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
26
|
+
import "../../../Sculpt/typings/style.js";
|
|
27
|
+
import "../../../shared-utils/five/FiveLine.js";
|
|
28
|
+
import "@realsee/five/line";
|
|
29
|
+
import "../../../shared-utils/positionToVector3.js";
|
|
30
|
+
import "../../../shared-utils/three/IObject3D.js";
|
|
31
|
+
import "../../../shared-utils/three/centerPoint.js";
|
|
32
|
+
import "../../../shared-utils/isNil.js";
|
|
33
|
+
import "../../../shared-utils/tag.js";
|
|
34
|
+
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
35
|
+
import "../../../shared-utils/five/getFiveModel.js";
|
|
36
|
+
import "../../../shared-utils/three/raycaster.js";
|
|
37
|
+
import "../../../Sculpt/utils/Modules/Global.js";
|
|
27
38
|
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
28
39
|
import "../../../Object3DHelperPlugin/Controller.js";
|
|
29
40
|
import "../../../base/BasePlugin.js";
|
|
@@ -32,28 +43,23 @@ import "../../../shared-utils/Utils/FiveUtil.js";
|
|
|
32
43
|
import "../../../shared-utils/Utils/BaseUtil.js";
|
|
33
44
|
import "../../../shared-utils/Utils/WorkUtil.js";
|
|
34
45
|
import "../../../shared-utils/five/transformPosition.js";
|
|
35
|
-
import "../../../shared-utils/five/getFiveModel.js";
|
|
36
46
|
import "../../../shared-utils/url/absoluteUrl.js";
|
|
37
47
|
import "../../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
38
48
|
import "../../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
39
49
|
import "../../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
40
|
-
import "../../../shared-utils/three/IObject3D.js";
|
|
41
50
|
import "../../../shared-utils/three/boundingBox.js";
|
|
42
51
|
import "../../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
43
52
|
import "../../../shared-utils/Object3DHelper/utils/direction.js";
|
|
44
53
|
import "../../../shared-utils/Object3DHelper/Constants/color.js";
|
|
45
54
|
import "../../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
46
55
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
47
|
-
import "../../../shared-utils/positionToVector3.js";
|
|
48
56
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
49
57
|
import "../../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
50
58
|
import "../../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
51
59
|
import "../../../CSS3DRenderPlugin/utils/even.js";
|
|
52
60
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
53
61
|
import "../../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
54
|
-
import "../../../shared-utils/three/centerPoint.js";
|
|
55
62
|
import "../../../shared-utils/three/getObjectVisible.js";
|
|
56
|
-
import "../../../shared-utils/isNil.js";
|
|
57
63
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
58
64
|
import "../../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
59
65
|
import "../../../shared-utils/util.js";
|
|
@@ -94,17 +100,13 @@ import "../../../shared-utils/three/Assets/index.js";
|
|
|
94
100
|
import "../../../shared-utils/three/PointSelector/utils/html.js";
|
|
95
101
|
import "../../../shared-utils/five/initialCSS3DRender.js";
|
|
96
102
|
import "../../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
97
|
-
import "../../../Sculpt/Meshes/Line.js";
|
|
98
|
-
import "../../../Sculpt/typings/style.js";
|
|
99
|
-
import "../../../shared-utils/five/FiveLine.js";
|
|
100
|
-
import "../../../shared-utils/tag.js";
|
|
101
|
-
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
102
|
-
import "../../../Sculpt/utils/removeAllTag.js";
|
|
103
103
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
104
104
|
import "../../../shared-utils/isTouchDevice.js";
|
|
105
105
|
import "../../../shared-utils/five/getPosition.js";
|
|
106
106
|
import "../../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
107
|
-
|
|
107
|
+
import "../../../Sculpt/utils/removeAllTag.js";
|
|
108
|
+
import "../../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
109
|
+
function wi(o, i, t) {
|
|
108
110
|
var v, b, j, C, A;
|
|
109
111
|
const D = (v = t == null ? void 0 : t.useCache) != null ? v : !0;
|
|
110
112
|
if (!o)
|
|
@@ -150,5 +152,5 @@ function Gi(o, i, t) {
|
|
|
150
152
|
return P(T), Object.values(f).forEach((p) => P(p)), T._isMerged = !0, T;
|
|
151
153
|
}
|
|
152
154
|
export {
|
|
153
|
-
|
|
155
|
+
wi as calculateTagConfig
|
|
154
156
|
};
|
|
@@ -17,22 +17,33 @@ import "./utils/shader.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";
|
|
@@ -40,16 +51,11 @@ import "../CSS3DRenderPlugin/utils/even.js";
|
|
|
40
51
|
import "../shared-utils/Subscribe.js";
|
|
41
52
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
42
53
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
43
|
-
import "../shared-utils/three/centerPoint.js";
|
|
44
54
|
import "../shared-utils/three/getObjectVisible.js";
|
|
45
|
-
import "animejs";
|
|
46
|
-
import "../shared-utils/isNil.js";
|
|
47
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
48
55
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
49
56
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
50
57
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
51
58
|
import "../shared-utils/five/transformPosition.js";
|
|
52
|
-
import "../shared-utils/five/getFiveModel.js";
|
|
53
59
|
import "../shared-utils/url/absoluteUrl.js";
|
|
54
60
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
55
61
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -91,19 +97,15 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
91
97
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
92
98
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
93
99
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
94
|
-
import "../Sculpt/Meshes/Line.js";
|
|
95
|
-
import "../Sculpt/typings/style.js";
|
|
96
|
-
import "../shared-utils/five/FiveLine.js";
|
|
97
|
-
import "../shared-utils/tag.js";
|
|
98
|
-
import "../shared-utils/five/vector3ToScreen.js";
|
|
99
|
-
import "../Sculpt/utils/removeAllTag.js";
|
|
100
100
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
101
101
|
import "../shared-utils/isTouchDevice.js";
|
|
102
102
|
import "../shared-utils/five/getPosition.js";
|
|
103
103
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
104
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
105
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
104
106
|
import "../shared-utils/animationFrame/index.js";
|
|
105
107
|
import "./utils/index.js";
|
|
106
|
-
class
|
|
108
|
+
class lt extends _ {
|
|
107
109
|
constructor(r) {
|
|
108
110
|
super(r);
|
|
109
111
|
s(this, "controllerMap", /* @__PURE__ */ new Map());
|
|
@@ -246,5 +248,5 @@ class st extends _ {
|
|
|
246
248
|
}
|
|
247
249
|
}
|
|
248
250
|
export {
|
|
249
|
-
|
|
251
|
+
lt as PanoVideoPluginController
|
|
250
252
|
};
|