@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,16 +1,15 @@
|
|
|
1
1
|
import t from "./Controller/index.js";
|
|
2
2
|
import "three";
|
|
3
|
-
import { Magnifier as
|
|
3
|
+
import { Magnifier as Xr } from "../shared-utils/three/Magnifier.js";
|
|
4
4
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
5
|
-
import "
|
|
6
|
-
import "../Sculpt/utils/Modules/Global.js";
|
|
5
|
+
import "../Sculpt/Meshes/Line.js";
|
|
7
6
|
import "../shared-utils/three/THREESphere.js";
|
|
8
7
|
import "animejs";
|
|
9
8
|
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
10
|
-
import { Model as
|
|
11
|
-
import { default as
|
|
12
|
-
import { default as
|
|
13
|
-
import { Polyline as
|
|
9
|
+
import { Model as Zr } from "./Model/index.js";
|
|
10
|
+
import { default as $r } from "./Model/point.js";
|
|
11
|
+
import { default as rt } from "./Model/line.js";
|
|
12
|
+
import { Polyline as it } from "./Model/polyline.js";
|
|
14
13
|
import "./Controller/EditController.js";
|
|
15
14
|
import "../shared-utils/throttle.js";
|
|
16
15
|
import "./Controller/BaseController.js";
|
|
@@ -18,6 +17,7 @@ import "./utils/ironbox.js";
|
|
|
18
17
|
import "../shared-utils/uuid.js";
|
|
19
18
|
import "./utils/line.js";
|
|
20
19
|
import "../shared-utils/five/FiveLine.js";
|
|
20
|
+
import "@realsee/five/line";
|
|
21
21
|
import "./utils/constants.js";
|
|
22
22
|
import "@realsee/five";
|
|
23
23
|
import "./utils/dom/distanceItem.js";
|
|
@@ -35,6 +35,13 @@ import "./utils/dom/areaDom.js";
|
|
|
35
35
|
import "../shared-utils/three/geometryUtil.js";
|
|
36
36
|
import "hammerjs";
|
|
37
37
|
import "../shared-utils/isNil.js";
|
|
38
|
+
import "../Sculpt/typings/style.js";
|
|
39
|
+
import "../shared-utils/positionToVector3.js";
|
|
40
|
+
import "../shared-utils/tag.js";
|
|
41
|
+
import "../shared-utils/five/vector3ToScreen.js";
|
|
42
|
+
import "../shared-utils/five/getFiveModel.js";
|
|
43
|
+
import "../shared-utils/three/raycaster.js";
|
|
44
|
+
import "../Sculpt/utils/Modules/Global.js";
|
|
38
45
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
39
46
|
import "../Object3DHelperPlugin/Controller.js";
|
|
40
47
|
import "../base/BasePlugin.js";
|
|
@@ -43,7 +50,6 @@ import "../shared-utils/Utils/FiveUtil.js";
|
|
|
43
50
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
44
51
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
45
52
|
import "../shared-utils/five/transformPosition.js";
|
|
46
|
-
import "../shared-utils/five/getFiveModel.js";
|
|
47
53
|
import "../shared-utils/url/absoluteUrl.js";
|
|
48
54
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
49
55
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -54,7 +60,6 @@ import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
|
54
60
|
import "../shared-utils/Object3DHelper/Constants/color.js";
|
|
55
61
|
import "../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
56
62
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
57
|
-
import "../shared-utils/positionToVector3.js";
|
|
58
63
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
59
64
|
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
60
65
|
import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
@@ -101,15 +106,12 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
101
106
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
102
107
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
103
108
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
104
|
-
import "../Sculpt/Meshes/Line.js";
|
|
105
|
-
import "../Sculpt/typings/style.js";
|
|
106
|
-
import "../shared-utils/tag.js";
|
|
107
|
-
import "../shared-utils/five/vector3ToScreen.js";
|
|
108
|
-
import "../Sculpt/utils/removeAllTag.js";
|
|
109
109
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
110
110
|
import "../shared-utils/isTouchDevice.js";
|
|
111
111
|
import "../shared-utils/five/getPosition.js";
|
|
112
112
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
113
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
114
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
113
115
|
import "./utils/isIntersecting.js";
|
|
114
116
|
import "./Modules/DeleteDom/index.js";
|
|
115
117
|
import "./Modules/DeleteDom/_Assets/delete.svg.js";
|
|
@@ -150,15 +152,15 @@ import "../vendor/object-assign-deep/objectAssignDeep.js";
|
|
|
150
152
|
import "./Components/Tip.js";
|
|
151
153
|
import "./Controller/ShortcutKeyController.js";
|
|
152
154
|
import "../shared-utils/safeObj.js";
|
|
153
|
-
const
|
|
155
|
+
const Ur = function(o, r) {
|
|
154
156
|
return new t(o, r);
|
|
155
157
|
};
|
|
156
158
|
export {
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
159
|
+
Xr as Magnifier,
|
|
160
|
+
Ur as PanoMeasurePlugin,
|
|
161
|
+
rt as PanoMeasurePluginLine,
|
|
162
|
+
Zr as PanoMeasurePluginModel,
|
|
163
|
+
$r as PanoMeasurePluginPoint,
|
|
164
|
+
it as PanoMeasurePluginPolyline,
|
|
165
|
+
Ur as default
|
|
164
166
|
};
|
|
@@ -16,14 +16,23 @@ import { getGeometryInfo as I } from "../../../shared-utils/three/geometryUtil.j
|
|
|
16
16
|
import "three";
|
|
17
17
|
import "hammerjs";
|
|
18
18
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
19
|
-
import "
|
|
20
|
-
import "../../../Sculpt/utils/Modules/Global.js";
|
|
19
|
+
import "../../../Sculpt/Meshes/Line.js";
|
|
21
20
|
import "../../../shared-utils/three/THREESphere.js";
|
|
22
21
|
import "animejs";
|
|
23
22
|
import { isNil as P } from "../../../shared-utils/isNil.js";
|
|
24
23
|
import "../../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
25
24
|
import "../isNDCPointInScreen.js";
|
|
26
25
|
import "../../../shared-utils/three/centerPoint.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/tag.js";
|
|
32
|
+
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
33
|
+
import "../../../shared-utils/five/getFiveModel.js";
|
|
34
|
+
import "../../../shared-utils/three/raycaster.js";
|
|
35
|
+
import "../../../Sculpt/utils/Modules/Global.js";
|
|
27
36
|
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
28
37
|
import "../../../Object3DHelperPlugin/Controller.js";
|
|
29
38
|
import "../../../base/BasePlugin.js";
|
|
@@ -32,19 +41,16 @@ import "../../../shared-utils/Utils/FiveUtil.js";
|
|
|
32
41
|
import "../../../shared-utils/Utils/BaseUtil.js";
|
|
33
42
|
import "../../../shared-utils/Utils/WorkUtil.js";
|
|
34
43
|
import "../../../shared-utils/five/transformPosition.js";
|
|
35
|
-
import "../../../shared-utils/five/getFiveModel.js";
|
|
36
44
|
import "../../../shared-utils/url/absoluteUrl.js";
|
|
37
45
|
import "../../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
38
46
|
import "../../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
39
47
|
import "../../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
40
|
-
import "../../../shared-utils/three/IObject3D.js";
|
|
41
48
|
import "../../../shared-utils/three/boundingBox.js";
|
|
42
49
|
import "../../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
43
50
|
import "../../../shared-utils/Object3DHelper/utils/direction.js";
|
|
44
51
|
import "../../../shared-utils/Object3DHelper/Constants/color.js";
|
|
45
52
|
import "../../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
46
53
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
47
|
-
import "../../../shared-utils/positionToVector3.js";
|
|
48
54
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
49
55
|
import "../../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
50
56
|
import "../../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
@@ -92,17 +98,13 @@ import "../../../shared-utils/three/Assets/index.js";
|
|
|
92
98
|
import "../../../shared-utils/three/PointSelector/utils/html.js";
|
|
93
99
|
import "../../../shared-utils/five/initialCSS3DRender.js";
|
|
94
100
|
import "../../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
95
|
-
import "../../../Sculpt/Meshes/Line.js";
|
|
96
|
-
import "../../../Sculpt/typings/style.js";
|
|
97
|
-
import "../../../shared-utils/five/FiveLine.js";
|
|
98
|
-
import "../../../shared-utils/tag.js";
|
|
99
|
-
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
100
|
-
import "../../../Sculpt/utils/removeAllTag.js";
|
|
101
101
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
102
102
|
import "../../../shared-utils/isTouchDevice.js";
|
|
103
103
|
import "../../../shared-utils/five/getPosition.js";
|
|
104
104
|
import "../../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
105
|
-
|
|
105
|
+
import "../../../Sculpt/utils/removeAllTag.js";
|
|
106
|
+
import "../../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
107
|
+
class ao extends y {
|
|
106
108
|
constructor(t) {
|
|
107
109
|
t.containerStyle = s(n({}, t.containerStyle), {
|
|
108
110
|
zIndex: "1"
|
|
@@ -133,5 +135,5 @@ class no extends y {
|
|
|
133
135
|
}
|
|
134
136
|
}
|
|
135
137
|
export {
|
|
136
|
-
|
|
138
|
+
ao as AreaItem
|
|
137
139
|
};
|
|
@@ -19,24 +19,31 @@ import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
|
19
19
|
import "../shared-utils/three/centerPoint.js";
|
|
20
20
|
import "../shared-utils/three/getObjectVisible.js";
|
|
21
21
|
import "hammerjs";
|
|
22
|
+
import "../Sculpt/Meshes/Line.js";
|
|
23
|
+
import "../Sculpt/typings/style.js";
|
|
24
|
+
import "../shared-utils/five/FiveLine.js";
|
|
22
25
|
import "@realsee/five/line";
|
|
26
|
+
import "../shared-utils/three/IObject3D.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";
|
|
23
35
|
import "../Sculpt/utils/Modules/Global.js";
|
|
24
36
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
25
37
|
import "../Object3DHelperPlugin/Controller.js";
|
|
26
38
|
import "../base/BasePlugin.js";
|
|
27
|
-
import "../shared-utils/three/THREESphere.js";
|
|
28
|
-
import "animejs";
|
|
29
39
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
30
40
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
31
41
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
32
42
|
import "../shared-utils/five/transformPosition.js";
|
|
33
|
-
import "../shared-utils/five/getFiveModel.js";
|
|
34
43
|
import "../shared-utils/url/absoluteUrl.js";
|
|
35
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
36
44
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
37
45
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
38
46
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
39
|
-
import "../shared-utils/three/IObject3D.js";
|
|
40
47
|
import "../shared-utils/three/boundingBox.js";
|
|
41
48
|
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
42
49
|
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -51,7 +58,6 @@ import "../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
|
51
58
|
import "../shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
52
59
|
import "../shared-utils/Object3DHelper/Base/BaseController.js";
|
|
53
60
|
import "../shared-utils/threex/domevents/index.js";
|
|
54
|
-
import "../shared-utils/isNil.js";
|
|
55
61
|
import "../shared-utils/util.js";
|
|
56
62
|
import "../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
57
63
|
import "../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
@@ -80,12 +86,6 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
80
86
|
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
81
87
|
import "../shared-utils/five/initialCSS3DRender.js";
|
|
82
88
|
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 "../shared-utils/tag.js";
|
|
87
|
-
import "../shared-utils/five/vector3ToScreen.js";
|
|
88
|
-
import "../Sculpt/utils/removeAllTag.js";
|
|
89
89
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
90
90
|
import "../shared-utils/isTouchDevice.js";
|
|
91
91
|
import "../shared-utils/five/getPosition.js";
|
|
@@ -93,10 +93,12 @@ import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
|
93
93
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
94
94
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
95
95
|
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
96
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
97
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
96
98
|
import "../vendor/svelte/internal/index.js";
|
|
97
99
|
import "./store.js";
|
|
98
100
|
import "../vendor/svelte/store/index.js";
|
|
99
|
-
const D = 1e-3, v = 0.01, Io = "https://vrlab-image4.ljcdn.com/release/web/PanoSpatialTagPlugin__blur.png",
|
|
101
|
+
const D = 1e-3, v = 0.01, Io = "https://vrlab-image4.ljcdn.com/release/web/PanoSpatialTagPlugin__blur.png", we = (n, r) => {
|
|
100
102
|
var k, z, q, B, G, J, K, Q;
|
|
101
103
|
let j = r == null ? void 0 : r.container, y = 1.4;
|
|
102
104
|
const oo = (k = r == null ? void 0 : r.wait) != null ? k : 200, to = (z = r == null ? void 0 : r.maxNumberOnScreen) != null ? z : 3, I = (q = r == null ? void 0 : r.minRad) != null ? q : Math.PI / 4, L = (B = r == null ? void 0 : r.nearTolerance) != null ? B : 100, eo = (G = r == null ? void 0 : r.upsideHeight) != null ? G : 1.6, A = (J = r == null ? void 0 : r.minDistance) != null ? J : 1.2, f = (K = r == null ? void 0 : r.maxDistance) != null ? K : 3.5, C = Mo(n), S = document.createElement("div");
|
|
@@ -321,6 +323,6 @@ const D = 1e-3, v = 0.01, Io = "https://vrlab-image4.ljcdn.com/release/web/PanoS
|
|
|
321
323
|
};
|
|
322
324
|
};
|
|
323
325
|
export {
|
|
324
|
-
|
|
325
|
-
|
|
326
|
+
we as PanoSpatialTagPlugin,
|
|
327
|
+
we as default
|
|
326
328
|
};
|
|
@@ -16,24 +16,31 @@ import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
|
16
16
|
import "../shared-utils/three/centerPoint.js";
|
|
17
17
|
import "../shared-utils/three/getObjectVisible.js";
|
|
18
18
|
import "hammerjs";
|
|
19
|
+
import "../Sculpt/Meshes/Line.js";
|
|
20
|
+
import "../Sculpt/typings/style.js";
|
|
21
|
+
import "../shared-utils/five/FiveLine.js";
|
|
19
22
|
import "@realsee/five/line";
|
|
23
|
+
import "../shared-utils/three/IObject3D.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";
|
|
20
32
|
import "../Sculpt/utils/Modules/Global.js";
|
|
21
33
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
22
34
|
import "../Object3DHelperPlugin/Controller.js";
|
|
23
35
|
import "../base/BasePlugin.js";
|
|
24
|
-
import "../shared-utils/three/THREESphere.js";
|
|
25
|
-
import "animejs";
|
|
26
36
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
27
37
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
28
38
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
29
39
|
import "../shared-utils/five/transformPosition.js";
|
|
30
|
-
import "../shared-utils/five/getFiveModel.js";
|
|
31
40
|
import "../shared-utils/url/absoluteUrl.js";
|
|
32
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
33
41
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
34
42
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
35
43
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
36
|
-
import "../shared-utils/three/IObject3D.js";
|
|
37
44
|
import "../shared-utils/three/boundingBox.js";
|
|
38
45
|
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
39
46
|
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -48,7 +55,6 @@ import "../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
|
48
55
|
import "../shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
49
56
|
import "../shared-utils/Object3DHelper/Base/BaseController.js";
|
|
50
57
|
import "../shared-utils/threex/domevents/index.js";
|
|
51
|
-
import "../shared-utils/isNil.js";
|
|
52
58
|
import "../shared-utils/util.js";
|
|
53
59
|
import "../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
54
60
|
import "../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
@@ -77,12 +83,6 @@ import "../shared-utils/three/Assets/index.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";
|
|
@@ -90,6 +90,8 @@ import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
|
90
90
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
91
91
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
92
92
|
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
93
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
94
|
+
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
93
95
|
import "./Components/origins.js";
|
|
94
96
|
import "../vendor/svelte/internal/index.js";
|
|
95
97
|
import "./store.js";
|
|
@@ -6,8 +6,7 @@ import { isModelLike as N } from "../../../shared-utils/five/mode.js";
|
|
|
6
6
|
import "three";
|
|
7
7
|
import "hammerjs";
|
|
8
8
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
9
|
-
import "
|
|
10
|
-
import "../../../Sculpt/utils/Modules/Global.js";
|
|
9
|
+
import "../../../Sculpt/Meshes/Line.js";
|
|
11
10
|
import "../../../shared-utils/three/THREESphere.js";
|
|
12
11
|
import "animejs";
|
|
13
12
|
import "../../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
@@ -16,6 +15,18 @@ import "../../../vendor/svelte/easing/index.js";
|
|
|
16
15
|
import "../../utils/noTypecheck.js";
|
|
17
16
|
import "../../utils/getImageInfo.js";
|
|
18
17
|
import "../../utils/px2rem.js";
|
|
18
|
+
import "../../../Sculpt/typings/style.js";
|
|
19
|
+
import "../../../shared-utils/five/FiveLine.js";
|
|
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/isNil.js";
|
|
25
|
+
import "../../../shared-utils/tag.js";
|
|
26
|
+
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
27
|
+
import "../../../shared-utils/five/getFiveModel.js";
|
|
28
|
+
import "../../../shared-utils/three/raycaster.js";
|
|
29
|
+
import "../../../Sculpt/utils/Modules/Global.js";
|
|
19
30
|
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
20
31
|
import "../../../Object3DHelperPlugin/Controller.js";
|
|
21
32
|
import "../../../base/BasePlugin.js";
|
|
@@ -24,28 +35,23 @@ import "../../../shared-utils/Utils/FiveUtil.js";
|
|
|
24
35
|
import "../../../shared-utils/Utils/BaseUtil.js";
|
|
25
36
|
import "../../../shared-utils/Utils/WorkUtil.js";
|
|
26
37
|
import "../../../shared-utils/five/transformPosition.js";
|
|
27
|
-
import "../../../shared-utils/five/getFiveModel.js";
|
|
28
38
|
import "../../../shared-utils/url/absoluteUrl.js";
|
|
29
39
|
import "../../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
30
40
|
import "../../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
31
41
|
import "../../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
32
|
-
import "../../../shared-utils/three/IObject3D.js";
|
|
33
42
|
import "../../../shared-utils/three/boundingBox.js";
|
|
34
43
|
import "../../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
35
44
|
import "../../../shared-utils/Object3DHelper/utils/direction.js";
|
|
36
45
|
import "../../../shared-utils/Object3DHelper/Constants/color.js";
|
|
37
46
|
import "../../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
38
47
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
39
|
-
import "../../../shared-utils/positionToVector3.js";
|
|
40
48
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
41
49
|
import "../../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
42
50
|
import "../../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
43
51
|
import "../../../CSS3DRenderPlugin/utils/even.js";
|
|
44
52
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
45
53
|
import "../../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
46
|
-
import "../../../shared-utils/three/centerPoint.js";
|
|
47
54
|
import "../../../shared-utils/three/getObjectVisible.js";
|
|
48
|
-
import "../../../shared-utils/isNil.js";
|
|
49
55
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
50
56
|
import "../../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
51
57
|
import "../../../shared-utils/util.js";
|
|
@@ -86,16 +92,12 @@ import "../../../shared-utils/three/Assets/index.js";
|
|
|
86
92
|
import "../../../shared-utils/three/PointSelector/utils/html.js";
|
|
87
93
|
import "../../../shared-utils/five/initialCSS3DRender.js";
|
|
88
94
|
import "../../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
89
|
-
import "../../../Sculpt/Meshes/Line.js";
|
|
90
|
-
import "../../../Sculpt/typings/style.js";
|
|
91
|
-
import "../../../shared-utils/five/FiveLine.js";
|
|
92
|
-
import "../../../shared-utils/tag.js";
|
|
93
|
-
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
94
|
-
import "../../../Sculpt/utils/removeAllTag.js";
|
|
95
95
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
96
96
|
import "../../../shared-utils/isTouchDevice.js";
|
|
97
97
|
import "../../../shared-utils/five/getPosition.js";
|
|
98
98
|
import "../../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
99
|
+
import "../../../Sculpt/utils/removeAllTag.js";
|
|
100
|
+
import "../../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
99
101
|
function Q(t) {
|
|
100
102
|
U(t, "svelte-7aiuwz", '@charset "UTF-8";.tag-point-click-helper.svelte-7aiuwz.svelte-7aiuwz{position:absolute;pointer-events:auto;cursor:pointer;width:calc(100% + 0.75rem);height:calc(100% + 0.75rem);left:50%;top:50%;transform:translate(-50%, -50%)}.tag-point-wrapper.svelte-7aiuwz.svelte-7aiuwz{pointer-events:none;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%)}.tag-folded-point.svelte-7aiuwz.svelte-7aiuwz,.tag-unfolded-point.svelte-7aiuwz.svelte-7aiuwz{transition:all 0.5s}.tag-point-wrapper.svelte-7aiuwz .tag-unfolded-point.svelte-7aiuwz{display:flex;justify-content:center;align-items:center;position:absolute;width:100%;height:100%;border-radius:50%}.tag-point-wrapper.svelte-7aiuwz .tag-unfolded-point.svelte-7aiuwz:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:0.3125rem;height:0.3125rem;border-radius:50%;background-color:white}.tag-point-wrapper.svelte-7aiuwz .tag-unfolded-point.svelte-7aiuwz:before{content:"";position:absolute;width:0.875rem;height:0.875rem;border-radius:50%;background-color:rgba(0, 0, 0, 0.2)}.tag-point-wrapper.folded.svelte-7aiuwz .tag-folded-point.svelte-7aiuwz{opacity:1;scale:1}.tag-point-wrapper.folded.svelte-7aiuwz .tag-unfolded-point.svelte-7aiuwz{opacity:0;scale:1}.tag-point-wrapper.unfolded.svelte-7aiuwz .tag-folded-point.svelte-7aiuwz{opacity:0;scale:0.2}.tag-point-wrapper.unfolded.svelte-7aiuwz .tag-unfolded-point.svelte-7aiuwz{opacity:1;scale:1}');
|
|
101
103
|
}
|
|
@@ -264,11 +266,11 @@ function Y(t, o, n) {
|
|
|
264
266
|
m
|
|
265
267
|
];
|
|
266
268
|
}
|
|
267
|
-
class
|
|
269
|
+
class Gi extends j {
|
|
268
270
|
constructor(o) {
|
|
269
271
|
super(), q(this, o, Y, V, O, { tag: 6 }, Q);
|
|
270
272
|
}
|
|
271
273
|
}
|
|
272
274
|
export {
|
|
273
|
-
|
|
275
|
+
Gi as default
|
|
274
276
|
};
|
|
@@ -2,8 +2,7 @@ import { SvelteComponent as te, init as ie, safe_not_equal as re, append_styles
|
|
|
2
2
|
import "three";
|
|
3
3
|
import "hammerjs";
|
|
4
4
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
5
|
-
import "
|
|
6
|
-
import "../../../Sculpt/utils/Modules/Global.js";
|
|
5
|
+
import "../../../Sculpt/Meshes/Line.js";
|
|
7
6
|
import "../../../shared-utils/three/THREESphere.js";
|
|
8
7
|
import "animejs";
|
|
9
8
|
import { notNil as ge } from "../../../shared-utils/isNil.js";
|
|
@@ -11,6 +10,17 @@ import "../../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
|
11
10
|
import qe from "../../utils/px2rem.js";
|
|
12
11
|
import de from "../Common/Shadow.js";
|
|
13
12
|
import { svelteResizeObserver as ve } from "../../../shared-utils/svelte/resizeObserver.js";
|
|
13
|
+
import "../../../Sculpt/typings/style.js";
|
|
14
|
+
import "../../../shared-utils/five/FiveLine.js";
|
|
15
|
+
import "@realsee/five/line";
|
|
16
|
+
import "../../../shared-utils/positionToVector3.js";
|
|
17
|
+
import "../../../shared-utils/three/IObject3D.js";
|
|
18
|
+
import "../../../shared-utils/three/centerPoint.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";
|
|
23
|
+
import "../../../Sculpt/utils/Modules/Global.js";
|
|
14
24
|
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
15
25
|
import "../../../Object3DHelperPlugin/Controller.js";
|
|
16
26
|
import "../../../base/BasePlugin.js";
|
|
@@ -19,26 +29,22 @@ import "../../../shared-utils/Utils/FiveUtil.js";
|
|
|
19
29
|
import "../../../shared-utils/Utils/BaseUtil.js";
|
|
20
30
|
import "../../../shared-utils/Utils/WorkUtil.js";
|
|
21
31
|
import "../../../shared-utils/five/transformPosition.js";
|
|
22
|
-
import "../../../shared-utils/five/getFiveModel.js";
|
|
23
32
|
import "../../../shared-utils/url/absoluteUrl.js";
|
|
24
33
|
import "../../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
25
34
|
import "../../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
26
35
|
import "../../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
27
|
-
import "../../../shared-utils/three/IObject3D.js";
|
|
28
36
|
import "../../../shared-utils/three/boundingBox.js";
|
|
29
37
|
import "../../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
30
38
|
import "../../../shared-utils/Object3DHelper/utils/direction.js";
|
|
31
39
|
import "../../../shared-utils/Object3DHelper/Constants/color.js";
|
|
32
40
|
import "../../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
33
41
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
34
|
-
import "../../../shared-utils/positionToVector3.js";
|
|
35
42
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
36
43
|
import "../../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
37
44
|
import "../../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
38
45
|
import "../../../CSS3DRenderPlugin/utils/even.js";
|
|
39
46
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
40
47
|
import "../../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
41
|
-
import "../../../shared-utils/three/centerPoint.js";
|
|
42
48
|
import "../../../shared-utils/three/getObjectVisible.js";
|
|
43
49
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
44
50
|
import "../../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -80,16 +86,12 @@ import "../../../shared-utils/three/Assets/index.js";
|
|
|
80
86
|
import "../../../shared-utils/three/PointSelector/utils/html.js";
|
|
81
87
|
import "../../../shared-utils/five/initialCSS3DRender.js";
|
|
82
88
|
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 "../../../shared-utils/tag.js";
|
|
87
|
-
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
88
|
-
import "../../../Sculpt/utils/removeAllTag.js";
|
|
89
89
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
90
90
|
import "../../../shared-utils/isTouchDevice.js";
|
|
91
91
|
import "../../../shared-utils/five/getPosition.js";
|
|
92
92
|
import "../../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
93
|
+
import "../../../Sculpt/utils/removeAllTag.js";
|
|
94
|
+
import "../../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
93
95
|
import "../../../vendor/svelte/transition/index.js";
|
|
94
96
|
import "../../../vendor/svelte/easing/index.js";
|
|
95
97
|
import "../../../vendor/resize-observer-polyfill/dist/ResizeObserver.es.js";
|
|
@@ -490,11 +492,11 @@ function ze(i, e, t) {
|
|
|
490
492
|
U
|
|
491
493
|
];
|
|
492
494
|
}
|
|
493
|
-
class
|
|
495
|
+
class mi extends te {
|
|
494
496
|
constructor(e) {
|
|
495
497
|
super(), ie(this, e, ze, ue, re, { tag: 0 }, he);
|
|
496
498
|
}
|
|
497
499
|
}
|
|
498
500
|
export {
|
|
499
|
-
|
|
501
|
+
mi as default
|
|
500
502
|
};
|
|
@@ -14,8 +14,7 @@ import { ModelTag as cA } from "../../controller/Tag/ModelTag.js";
|
|
|
14
14
|
import { isModelLike as dA } from "../../../shared-utils/five/mode.js";
|
|
15
15
|
import "hammerjs";
|
|
16
16
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
17
|
-
import "
|
|
18
|
-
import "../../../Sculpt/utils/Modules/Global.js";
|
|
17
|
+
import "../../../Sculpt/Meshes/Line.js";
|
|
19
18
|
import "../../../shared-utils/three/THREESphere.js";
|
|
20
19
|
import "animejs";
|
|
21
20
|
import "../../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
@@ -71,6 +70,17 @@ import "../../../vendor/svelte-carousel/src/utils/lazy.js";
|
|
|
71
70
|
import "../../../vendor/svelte-carousel/src/utils/ProgressManager.js";
|
|
72
71
|
import "../../../vendor/svelte-carousel/src/utils/interval.js";
|
|
73
72
|
import "../Common/MediaItem.js";
|
|
73
|
+
import "../../../Sculpt/typings/style.js";
|
|
74
|
+
import "../../../shared-utils/five/FiveLine.js";
|
|
75
|
+
import "@realsee/five/line";
|
|
76
|
+
import "../../../shared-utils/positionToVector3.js";
|
|
77
|
+
import "../../../shared-utils/three/IObject3D.js";
|
|
78
|
+
import "../../../shared-utils/three/centerPoint.js";
|
|
79
|
+
import "../../../shared-utils/tag.js";
|
|
80
|
+
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
81
|
+
import "../../../shared-utils/five/getFiveModel.js";
|
|
82
|
+
import "../../../shared-utils/three/raycaster.js";
|
|
83
|
+
import "../../../Sculpt/utils/Modules/Global.js";
|
|
74
84
|
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
75
85
|
import "../../../Object3DHelperPlugin/Controller.js";
|
|
76
86
|
import "../../../base/BasePlugin.js";
|
|
@@ -79,26 +89,22 @@ import "../../../shared-utils/Utils/FiveUtil.js";
|
|
|
79
89
|
import "../../../shared-utils/Utils/BaseUtil.js";
|
|
80
90
|
import "../../../shared-utils/Utils/WorkUtil.js";
|
|
81
91
|
import "../../../shared-utils/five/transformPosition.js";
|
|
82
|
-
import "../../../shared-utils/five/getFiveModel.js";
|
|
83
92
|
import "../../../shared-utils/url/absoluteUrl.js";
|
|
84
93
|
import "../../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
85
94
|
import "../../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
86
95
|
import "../../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
87
|
-
import "../../../shared-utils/three/IObject3D.js";
|
|
88
96
|
import "../../../shared-utils/three/boundingBox.js";
|
|
89
97
|
import "../../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
90
98
|
import "../../../shared-utils/Object3DHelper/utils/direction.js";
|
|
91
99
|
import "../../../shared-utils/Object3DHelper/Constants/color.js";
|
|
92
100
|
import "../../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
93
101
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
94
|
-
import "../../../shared-utils/positionToVector3.js";
|
|
95
102
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
96
103
|
import "../../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
97
104
|
import "../../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
98
105
|
import "../../../CSS3DRenderPlugin/utils/even.js";
|
|
99
106
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
100
107
|
import "../../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
101
|
-
import "../../../shared-utils/three/centerPoint.js";
|
|
102
108
|
import "../../../shared-utils/three/getObjectVisible.js";
|
|
103
109
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
104
110
|
import "../../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -140,16 +146,12 @@ import "../../../shared-utils/three/Assets/index.js";
|
|
|
140
146
|
import "../../../shared-utils/three/PointSelector/utils/html.js";
|
|
141
147
|
import "../../../shared-utils/five/initialCSS3DRender.js";
|
|
142
148
|
import "../../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
143
|
-
import "../../../Sculpt/Meshes/Line.js";
|
|
144
|
-
import "../../../Sculpt/typings/style.js";
|
|
145
|
-
import "../../../shared-utils/five/FiveLine.js";
|
|
146
|
-
import "../../../shared-utils/tag.js";
|
|
147
|
-
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
148
|
-
import "../../../Sculpt/utils/removeAllTag.js";
|
|
149
149
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
150
150
|
import "../../../shared-utils/isTouchDevice.js";
|
|
151
151
|
import "../../../shared-utils/five/getPosition.js";
|
|
152
152
|
import "../../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
153
|
+
import "../../../Sculpt/utils/removeAllTag.js";
|
|
154
|
+
import "../../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
153
155
|
import "./AudioTag/AudioTag.js";
|
|
154
156
|
import "../Common/Audio.js";
|
|
155
157
|
import "../../utils/audio/SharedAudio.js";
|
|
@@ -822,7 +824,7 @@ function TA(i, A, t) {
|
|
|
822
824
|
y
|
|
823
825
|
];
|
|
824
826
|
}
|
|
825
|
-
class
|
|
827
|
+
class ao extends tA {
|
|
826
828
|
constructor(A) {
|
|
827
829
|
super(), iA(
|
|
828
830
|
this,
|
|
@@ -844,5 +846,5 @@ class no extends tA {
|
|
|
844
846
|
}
|
|
845
847
|
}
|
|
846
848
|
export {
|
|
847
|
-
|
|
849
|
+
ao as default
|
|
848
850
|
};
|