@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
|
@@ -31,20 +31,27 @@ import "../utils/dom/areaDom.js";
|
|
|
31
31
|
import "../../shared-utils/three/geometryUtil.js";
|
|
32
32
|
import "hammerjs";
|
|
33
33
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
34
|
+
import "../../Sculpt/Meshes/Line.js";
|
|
35
|
+
import "../../Sculpt/typings/style.js";
|
|
36
|
+
import "../../shared-utils/positionToVector3.js";
|
|
37
|
+
import "../../shared-utils/three/THREESphere.js";
|
|
38
|
+
import "animejs";
|
|
39
|
+
import "../../shared-utils/isNil.js";
|
|
40
|
+
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
41
|
+
import "../../shared-utils/tag.js";
|
|
42
|
+
import "../../shared-utils/five/vector3ToScreen.js";
|
|
43
|
+
import "../../shared-utils/five/getFiveModel.js";
|
|
44
|
+
import "../../shared-utils/three/raycaster.js";
|
|
34
45
|
import "../../Sculpt/utils/Modules/Global.js";
|
|
35
46
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
36
47
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
37
48
|
import "../../base/BasePlugin.js";
|
|
38
49
|
import "../../shared-utils/Subscribe.js";
|
|
39
|
-
import "../../shared-utils/three/THREESphere.js";
|
|
40
|
-
import "animejs";
|
|
41
50
|
import "../../shared-utils/Utils/FiveUtil.js";
|
|
42
51
|
import "../../shared-utils/Utils/BaseUtil.js";
|
|
43
52
|
import "../../shared-utils/Utils/WorkUtil.js";
|
|
44
53
|
import "../../shared-utils/five/transformPosition.js";
|
|
45
|
-
import "../../shared-utils/five/getFiveModel.js";
|
|
46
54
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
47
|
-
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
48
55
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
49
56
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
50
57
|
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
@@ -54,7 +61,6 @@ import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
|
54
61
|
import "../../shared-utils/Object3DHelper/Constants/color.js";
|
|
55
62
|
import "../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
56
63
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
57
|
-
import "../../shared-utils/positionToVector3.js";
|
|
58
64
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
59
65
|
import "../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
60
66
|
import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
@@ -62,7 +68,6 @@ import "../../CSS3DRenderPlugin/utils/even.js";
|
|
|
62
68
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
63
69
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
64
70
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
65
|
-
import "../../shared-utils/isNil.js";
|
|
66
71
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
67
72
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
68
73
|
import "../../shared-utils/util.js";
|
|
@@ -103,15 +108,12 @@ import "../../shared-utils/three/Assets/index.js";
|
|
|
103
108
|
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
104
109
|
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
105
110
|
import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
106
|
-
import "../../Sculpt/Meshes/Line.js";
|
|
107
|
-
import "../../Sculpt/typings/style.js";
|
|
108
|
-
import "../../shared-utils/tag.js";
|
|
109
|
-
import "../../shared-utils/five/vector3ToScreen.js";
|
|
110
|
-
import "../../Sculpt/utils/removeAllTag.js";
|
|
111
111
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
112
112
|
import "../../shared-utils/isTouchDevice.js";
|
|
113
113
|
import "../../shared-utils/five/getPosition.js";
|
|
114
114
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
115
|
+
import "../../Sculpt/utils/removeAllTag.js";
|
|
116
|
+
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
115
117
|
import "../utils/isIntersecting.js";
|
|
116
118
|
import "../Modules/DeleteDom/index.js";
|
|
117
119
|
import "../Modules/DeleteDom/_Assets/delete.svg.js";
|
|
@@ -327,7 +329,7 @@ function rt(n, o, i) {
|
|
|
327
329
|
u
|
|
328
330
|
];
|
|
329
331
|
}
|
|
330
|
-
class
|
|
332
|
+
class _o extends j {
|
|
331
333
|
constructor(o) {
|
|
332
334
|
super(), x(
|
|
333
335
|
this,
|
|
@@ -345,5 +347,5 @@ class bo extends j {
|
|
|
345
347
|
}
|
|
346
348
|
}
|
|
347
349
|
export {
|
|
348
|
-
|
|
350
|
+
_o as default
|
|
349
351
|
};
|
|
@@ -35,20 +35,27 @@ import "../utils/dom/areaDom.js";
|
|
|
35
35
|
import "../../shared-utils/three/geometryUtil.js";
|
|
36
36
|
import "hammerjs";
|
|
37
37
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
38
|
+
import "../../Sculpt/Meshes/Line.js";
|
|
39
|
+
import "../../Sculpt/typings/style.js";
|
|
40
|
+
import "../../shared-utils/positionToVector3.js";
|
|
41
|
+
import "../../shared-utils/three/THREESphere.js";
|
|
42
|
+
import "animejs";
|
|
43
|
+
import "../../shared-utils/isNil.js";
|
|
44
|
+
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
45
|
+
import "../../shared-utils/tag.js";
|
|
46
|
+
import "../../shared-utils/five/vector3ToScreen.js";
|
|
47
|
+
import "../../shared-utils/five/getFiveModel.js";
|
|
48
|
+
import "../../shared-utils/three/raycaster.js";
|
|
38
49
|
import "../../Sculpt/utils/Modules/Global.js";
|
|
39
50
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
40
51
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
41
52
|
import "../../base/BasePlugin.js";
|
|
42
53
|
import "../../shared-utils/Subscribe.js";
|
|
43
|
-
import "../../shared-utils/three/THREESphere.js";
|
|
44
|
-
import "animejs";
|
|
45
54
|
import "../../shared-utils/Utils/FiveUtil.js";
|
|
46
55
|
import "../../shared-utils/Utils/BaseUtil.js";
|
|
47
56
|
import "../../shared-utils/Utils/WorkUtil.js";
|
|
48
57
|
import "../../shared-utils/five/transformPosition.js";
|
|
49
|
-
import "../../shared-utils/five/getFiveModel.js";
|
|
50
58
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
51
|
-
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
52
59
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
53
60
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
54
61
|
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
@@ -58,7 +65,6 @@ import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
|
58
65
|
import "../../shared-utils/Object3DHelper/Constants/color.js";
|
|
59
66
|
import "../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
60
67
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
61
|
-
import "../../shared-utils/positionToVector3.js";
|
|
62
68
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
63
69
|
import "../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
64
70
|
import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
@@ -66,7 +72,6 @@ import "../../CSS3DRenderPlugin/utils/even.js";
|
|
|
66
72
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
67
73
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
68
74
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
69
|
-
import "../../shared-utils/isNil.js";
|
|
70
75
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
71
76
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
72
77
|
import "../../shared-utils/util.js";
|
|
@@ -107,15 +112,12 @@ import "../../shared-utils/three/Assets/index.js";
|
|
|
107
112
|
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
108
113
|
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
109
114
|
import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
110
|
-
import "../../Sculpt/Meshes/Line.js";
|
|
111
|
-
import "../../Sculpt/typings/style.js";
|
|
112
|
-
import "../../shared-utils/tag.js";
|
|
113
|
-
import "../../shared-utils/five/vector3ToScreen.js";
|
|
114
|
-
import "../../Sculpt/utils/removeAllTag.js";
|
|
115
115
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
116
116
|
import "../../shared-utils/isTouchDevice.js";
|
|
117
117
|
import "../../shared-utils/five/getPosition.js";
|
|
118
118
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
119
|
+
import "../../Sculpt/utils/removeAllTag.js";
|
|
120
|
+
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
119
121
|
import "../utils/isIntersecting.js";
|
|
120
122
|
import "../Modules/DeleteDom/index.js";
|
|
121
123
|
import "../Modules/DeleteDom/_Assets/delete.svg.js";
|
|
@@ -477,7 +479,7 @@ function de(o, t, i) {
|
|
|
477
479
|
x
|
|
478
480
|
];
|
|
479
481
|
}
|
|
480
|
-
class
|
|
482
|
+
class Bo extends ee {
|
|
481
483
|
constructor(t) {
|
|
482
484
|
super(), te(
|
|
483
485
|
this,
|
|
@@ -495,5 +497,5 @@ class Ao extends ee {
|
|
|
495
497
|
}
|
|
496
498
|
}
|
|
497
499
|
export {
|
|
498
|
-
|
|
500
|
+
Bo as default
|
|
499
501
|
};
|
|
@@ -45,19 +45,26 @@ import "../utils/dom/areaDom.js";
|
|
|
45
45
|
import "../../shared-utils/three/geometryUtil.js";
|
|
46
46
|
import "hammerjs";
|
|
47
47
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
48
|
+
import "../../Sculpt/Meshes/Line.js";
|
|
49
|
+
import "../../Sculpt/typings/style.js";
|
|
50
|
+
import "../../shared-utils/positionToVector3.js";
|
|
51
|
+
import "../../shared-utils/three/THREESphere.js";
|
|
52
|
+
import "animejs";
|
|
53
|
+
import "../../shared-utils/isNil.js";
|
|
54
|
+
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
55
|
+
import "../../shared-utils/tag.js";
|
|
56
|
+
import "../../shared-utils/five/vector3ToScreen.js";
|
|
57
|
+
import "../../shared-utils/three/raycaster.js";
|
|
48
58
|
import "../../Sculpt/utils/Modules/Global.js";
|
|
49
59
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
50
60
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
51
61
|
import "../../base/BasePlugin.js";
|
|
52
62
|
import "../../shared-utils/Subscribe.js";
|
|
53
|
-
import "../../shared-utils/three/THREESphere.js";
|
|
54
|
-
import "animejs";
|
|
55
63
|
import "../../shared-utils/Utils/FiveUtil.js";
|
|
56
64
|
import "../../shared-utils/Utils/BaseUtil.js";
|
|
57
65
|
import "../../shared-utils/Utils/WorkUtil.js";
|
|
58
66
|
import "../../shared-utils/five/transformPosition.js";
|
|
59
67
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
60
|
-
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
61
68
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
62
69
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
63
70
|
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
@@ -67,7 +74,6 @@ import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
|
67
74
|
import "../../shared-utils/Object3DHelper/Constants/color.js";
|
|
68
75
|
import "../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
69
76
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
70
|
-
import "../../shared-utils/positionToVector3.js";
|
|
71
77
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
72
78
|
import "../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
73
79
|
import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
@@ -75,7 +81,6 @@ import "../../CSS3DRenderPlugin/utils/even.js";
|
|
|
75
81
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
76
82
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
77
83
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
78
|
-
import "../../shared-utils/isNil.js";
|
|
79
84
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
80
85
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
81
86
|
import "../../shared-utils/util.js";
|
|
@@ -115,20 +120,17 @@ import "../../shared-utils/three/Assets/index.js";
|
|
|
115
120
|
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
116
121
|
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
117
122
|
import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
118
|
-
import "../../Sculpt/Meshes/Line.js";
|
|
119
|
-
import "../../Sculpt/typings/style.js";
|
|
120
|
-
import "../../shared-utils/tag.js";
|
|
121
|
-
import "../../shared-utils/five/vector3ToScreen.js";
|
|
122
|
-
import "../../Sculpt/utils/removeAllTag.js";
|
|
123
123
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
124
124
|
import "../../shared-utils/isTouchDevice.js";
|
|
125
125
|
import "../../shared-utils/five/getPosition.js";
|
|
126
126
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
127
|
+
import "../../Sculpt/utils/removeAllTag.js";
|
|
128
|
+
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
127
129
|
import "../Modules/DeleteDom/_Assets/delete.svg.js";
|
|
128
130
|
import "../Modules/DeleteDom/_Assets/delete_bg.png.js";
|
|
129
131
|
import "../Modules/DeleteDom/_Assets/delete_hover_bg.png.js";
|
|
130
132
|
const b = () => !1;
|
|
131
|
-
class
|
|
133
|
+
class ni extends z {
|
|
132
134
|
constructor(e) {
|
|
133
135
|
super(e);
|
|
134
136
|
o(this, "type", "edit");
|
|
@@ -408,5 +410,5 @@ class oi extends z {
|
|
|
408
410
|
}
|
|
409
411
|
}
|
|
410
412
|
export {
|
|
411
|
-
|
|
413
|
+
ni as default
|
|
412
414
|
};
|
|
@@ -32,30 +32,36 @@ import "../Model/polyline.js";
|
|
|
32
32
|
import "../utils/dom/areaDom.js";
|
|
33
33
|
import "../../shared-utils/three/geometryUtil.js";
|
|
34
34
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
35
|
+
import "../../Sculpt/Meshes/Line.js";
|
|
36
|
+
import "../../Sculpt/typings/style.js";
|
|
37
|
+
import "../../shared-utils/positionToVector3.js";
|
|
38
|
+
import "../../shared-utils/three/IObject3D.js";
|
|
39
|
+
import "../../shared-utils/three/THREESphere.js";
|
|
40
|
+
import "animejs";
|
|
41
|
+
import "../../shared-utils/isNil.js";
|
|
42
|
+
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
43
|
+
import "../../shared-utils/tag.js";
|
|
44
|
+
import "../../shared-utils/five/vector3ToScreen.js";
|
|
45
|
+
import "../../shared-utils/three/raycaster.js";
|
|
35
46
|
import "../../Sculpt/utils/Modules/Global.js";
|
|
36
47
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
37
48
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
38
49
|
import "../../base/BasePlugin.js";
|
|
39
50
|
import "../../shared-utils/Subscribe.js";
|
|
40
|
-
import "../../shared-utils/three/THREESphere.js";
|
|
41
|
-
import "animejs";
|
|
42
51
|
import "../../shared-utils/Utils/FiveUtil.js";
|
|
43
52
|
import "../../shared-utils/Utils/BaseUtil.js";
|
|
44
53
|
import "../../shared-utils/Utils/WorkUtil.js";
|
|
45
54
|
import "../../shared-utils/five/transformPosition.js";
|
|
46
55
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
47
|
-
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
48
56
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
49
57
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
50
58
|
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
51
|
-
import "../../shared-utils/three/IObject3D.js";
|
|
52
59
|
import "../../shared-utils/three/boundingBox.js";
|
|
53
60
|
import "../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
54
61
|
import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
55
62
|
import "../../shared-utils/Object3DHelper/Constants/color.js";
|
|
56
63
|
import "../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
57
64
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
58
|
-
import "../../shared-utils/positionToVector3.js";
|
|
59
65
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
60
66
|
import "../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
61
67
|
import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
@@ -63,7 +69,6 @@ import "../../CSS3DRenderPlugin/utils/even.js";
|
|
|
63
69
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
64
70
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
65
71
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
66
|
-
import "../../shared-utils/isNil.js";
|
|
67
72
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
68
73
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
69
74
|
import "../../shared-utils/util.js";
|
|
@@ -104,21 +109,18 @@ import "../../shared-utils/three/Assets/index.js";
|
|
|
104
109
|
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
105
110
|
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
106
111
|
import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
107
|
-
import "../../Sculpt/Meshes/Line.js";
|
|
108
|
-
import "../../Sculpt/typings/style.js";
|
|
109
|
-
import "../../shared-utils/tag.js";
|
|
110
|
-
import "../../shared-utils/five/vector3ToScreen.js";
|
|
111
|
-
import "../../Sculpt/utils/removeAllTag.js";
|
|
112
112
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
113
113
|
import "../../shared-utils/isTouchDevice.js";
|
|
114
114
|
import "../../shared-utils/five/getPosition.js";
|
|
115
115
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
116
|
+
import "../../Sculpt/utils/removeAllTag.js";
|
|
117
|
+
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
116
118
|
import "../../shared-utils/three/generatePolygonGeometry.js";
|
|
117
119
|
import "../../shared-utils/three/earcut3D.js";
|
|
118
120
|
import "earcut";
|
|
119
121
|
import "../../shared-utils/three/getNormal.js";
|
|
120
122
|
const E = () => !1;
|
|
121
|
-
class
|
|
123
|
+
class Ye extends U {
|
|
122
124
|
constructor(t) {
|
|
123
125
|
super(t);
|
|
124
126
|
o(this, "type", "watch");
|
|
@@ -291,5 +293,5 @@ class Qe extends U {
|
|
|
291
293
|
}
|
|
292
294
|
}
|
|
293
295
|
export {
|
|
294
|
-
|
|
296
|
+
Ye as default
|
|
295
297
|
};
|
|
@@ -24,8 +24,7 @@ import { ShortcutKeyController as B } from "./ShortcutKeyController.js";
|
|
|
24
24
|
import { safeObj as U } from "../../shared-utils/safeObj.js";
|
|
25
25
|
import { Magnifier as V } from "../../shared-utils/three/Magnifier.js";
|
|
26
26
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
27
|
-
import "
|
|
28
|
-
import "../../Sculpt/utils/Modules/Global.js";
|
|
27
|
+
import "../../Sculpt/Meshes/Line.js";
|
|
29
28
|
import "../../shared-utils/three/THREESphere.js";
|
|
30
29
|
import "animejs";
|
|
31
30
|
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
@@ -35,6 +34,7 @@ import "../Model/line.js";
|
|
|
35
34
|
import "../../shared-utils/uuid.js";
|
|
36
35
|
import "../utils/line.js";
|
|
37
36
|
import "../../shared-utils/five/FiveLine.js";
|
|
37
|
+
import "@realsee/five/line";
|
|
38
38
|
import "../utils/constants.js";
|
|
39
39
|
import "@realsee/five";
|
|
40
40
|
import "../utils/dom/distanceItem.js";
|
|
@@ -67,6 +67,13 @@ import "../../CSS3DRenderPlugin/utils/even.js";
|
|
|
67
67
|
import "../../shared-utils/Subscribe.js";
|
|
68
68
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
69
69
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
70
|
+
import "../../Sculpt/typings/style.js";
|
|
71
|
+
import "../../shared-utils/positionToVector3.js";
|
|
72
|
+
import "../../shared-utils/tag.js";
|
|
73
|
+
import "../../shared-utils/five/vector3ToScreen.js";
|
|
74
|
+
import "../../shared-utils/five/getFiveModel.js";
|
|
75
|
+
import "../../shared-utils/three/raycaster.js";
|
|
76
|
+
import "../../Sculpt/utils/Modules/Global.js";
|
|
70
77
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
71
78
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
72
79
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
@@ -78,7 +85,6 @@ import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
|
78
85
|
import "../../shared-utils/Object3DHelper/Constants/color.js";
|
|
79
86
|
import "../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
80
87
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
81
|
-
import "../../shared-utils/positionToVector3.js";
|
|
82
88
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
83
89
|
import "../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
84
90
|
import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
@@ -90,7 +96,6 @@ import "../../shared-utils/Utils/FiveUtil.js";
|
|
|
90
96
|
import "../../shared-utils/Utils/BaseUtil.js";
|
|
91
97
|
import "../../shared-utils/Utils/WorkUtil.js";
|
|
92
98
|
import "../../shared-utils/five/transformPosition.js";
|
|
93
|
-
import "../../shared-utils/five/getFiveModel.js";
|
|
94
99
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
95
100
|
import "../../shared-utils/Object3DHelper/Helper/RotateHelper.js";
|
|
96
101
|
import "../../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
|
|
@@ -123,14 +128,11 @@ import "../../shared-utils/three/THREERaycaster.js";
|
|
|
123
128
|
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
124
129
|
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
125
130
|
import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
126
|
-
import "../../Sculpt/Meshes/Line.js";
|
|
127
|
-
import "../../Sculpt/typings/style.js";
|
|
128
|
-
import "../../shared-utils/tag.js";
|
|
129
|
-
import "../../shared-utils/five/vector3ToScreen.js";
|
|
130
|
-
import "../../Sculpt/utils/removeAllTag.js";
|
|
131
131
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
132
132
|
import "../../shared-utils/five/getPosition.js";
|
|
133
133
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
134
|
+
import "../../Sculpt/utils/removeAllTag.js";
|
|
135
|
+
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
134
136
|
import "../Modules/DeleteDom/index.js";
|
|
135
137
|
import "../Modules/DeleteDom/_Assets/delete.svg.js";
|
|
136
138
|
import "../Modules/DeleteDom/_Assets/delete_bg.png.js";
|
|
@@ -161,7 +163,7 @@ import "../../vendor/svelte/transition/index.js";
|
|
|
161
163
|
import "../../vendor/svelte/easing/index.js";
|
|
162
164
|
import "../../vendor/object-assign-deep/objectAssignDeep.js";
|
|
163
165
|
import "../Components/Tip.js";
|
|
164
|
-
class
|
|
166
|
+
class Le extends H {
|
|
165
167
|
constructor(t, i) {
|
|
166
168
|
var l, u, d, f, g, y, C, M, w, P, b, v;
|
|
167
169
|
super(t);
|
|
@@ -370,5 +372,5 @@ class Ge extends H {
|
|
|
370
372
|
}
|
|
371
373
|
}
|
|
372
374
|
export {
|
|
373
|
-
|
|
375
|
+
Le as default
|
|
374
376
|
};
|
|
@@ -25,20 +25,27 @@ import "../../shared-utils/three/getNormal.js";
|
|
|
25
25
|
import "../../shared-utils/three/geometryUtil.js";
|
|
26
26
|
import "hammerjs";
|
|
27
27
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
28
|
+
import "../../Sculpt/Meshes/Line.js";
|
|
29
|
+
import "../../Sculpt/typings/style.js";
|
|
30
|
+
import "../../shared-utils/positionToVector3.js";
|
|
31
|
+
import "../../shared-utils/three/THREESphere.js";
|
|
32
|
+
import "animejs";
|
|
33
|
+
import "../../shared-utils/isNil.js";
|
|
34
|
+
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
35
|
+
import "../../shared-utils/tag.js";
|
|
36
|
+
import "../../shared-utils/five/vector3ToScreen.js";
|
|
37
|
+
import "../../shared-utils/five/getFiveModel.js";
|
|
38
|
+
import "../../shared-utils/three/raycaster.js";
|
|
28
39
|
import "../../Sculpt/utils/Modules/Global.js";
|
|
29
40
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
30
41
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
31
42
|
import "../../base/BasePlugin.js";
|
|
32
43
|
import "../../shared-utils/Subscribe.js";
|
|
33
|
-
import "../../shared-utils/three/THREESphere.js";
|
|
34
|
-
import "animejs";
|
|
35
44
|
import "../../shared-utils/Utils/FiveUtil.js";
|
|
36
45
|
import "../../shared-utils/Utils/BaseUtil.js";
|
|
37
46
|
import "../../shared-utils/Utils/WorkUtil.js";
|
|
38
47
|
import "../../shared-utils/five/transformPosition.js";
|
|
39
|
-
import "../../shared-utils/five/getFiveModel.js";
|
|
40
48
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
41
|
-
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
42
49
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
43
50
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
44
51
|
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
@@ -48,7 +55,6 @@ import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
|
48
55
|
import "../../shared-utils/Object3DHelper/Constants/color.js";
|
|
49
56
|
import "../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
50
57
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
51
|
-
import "../../shared-utils/positionToVector3.js";
|
|
52
58
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
53
59
|
import "../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
54
60
|
import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
@@ -56,7 +62,6 @@ import "../../CSS3DRenderPlugin/utils/even.js";
|
|
|
56
62
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
57
63
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
58
64
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
59
|
-
import "../../shared-utils/isNil.js";
|
|
60
65
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
61
66
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
62
67
|
import "../../shared-utils/util.js";
|
|
@@ -97,16 +102,13 @@ import "../../shared-utils/three/Assets/index.js";
|
|
|
97
102
|
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
98
103
|
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
99
104
|
import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
100
|
-
import "../../Sculpt/Meshes/Line.js";
|
|
101
|
-
import "../../Sculpt/typings/style.js";
|
|
102
|
-
import "../../shared-utils/tag.js";
|
|
103
|
-
import "../../shared-utils/five/vector3ToScreen.js";
|
|
104
|
-
import "../../Sculpt/utils/removeAllTag.js";
|
|
105
105
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
106
106
|
import "../../shared-utils/isTouchDevice.js";
|
|
107
107
|
import "../../shared-utils/five/getPosition.js";
|
|
108
108
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
109
|
-
|
|
109
|
+
import "../../Sculpt/utils/removeAllTag.js";
|
|
110
|
+
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
111
|
+
class Ci {
|
|
110
112
|
constructor(t, o) {
|
|
111
113
|
i(this, "id", f());
|
|
112
114
|
i(this, "selected", !1);
|
|
@@ -205,5 +207,5 @@ class vi {
|
|
|
205
207
|
}
|
|
206
208
|
}
|
|
207
209
|
export {
|
|
208
|
-
|
|
210
|
+
Ci as default
|
|
209
211
|
};
|
|
@@ -1,13 +1,24 @@
|
|
|
1
1
|
import "three";
|
|
2
2
|
import { Magnifier as o } from "../../shared-utils/three/Magnifier.js";
|
|
3
3
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
4
|
-
import "
|
|
5
|
-
import "../../Sculpt/utils/Modules/Global.js";
|
|
4
|
+
import "../../Sculpt/Meshes/Line.js";
|
|
6
5
|
import "../../shared-utils/three/THREESphere.js";
|
|
7
6
|
import "animejs";
|
|
8
7
|
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
9
8
|
import "hammerjs";
|
|
10
9
|
import "../../shared-utils/Subscribe.js";
|
|
10
|
+
import "../../Sculpt/typings/style.js";
|
|
11
|
+
import "../../shared-utils/five/FiveLine.js";
|
|
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/isNil.js";
|
|
17
|
+
import "../../shared-utils/tag.js";
|
|
18
|
+
import "../../shared-utils/five/vector3ToScreen.js";
|
|
19
|
+
import "../../shared-utils/five/getFiveModel.js";
|
|
20
|
+
import "../../shared-utils/three/raycaster.js";
|
|
21
|
+
import "../../Sculpt/utils/Modules/Global.js";
|
|
11
22
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
12
23
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
13
24
|
import "../../base/BasePlugin.js";
|
|
@@ -15,28 +26,23 @@ import "../../shared-utils/Utils/FiveUtil.js";
|
|
|
15
26
|
import "../../shared-utils/Utils/BaseUtil.js";
|
|
16
27
|
import "../../shared-utils/Utils/WorkUtil.js";
|
|
17
28
|
import "../../shared-utils/five/transformPosition.js";
|
|
18
|
-
import "../../shared-utils/five/getFiveModel.js";
|
|
19
29
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
20
30
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
21
31
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
22
32
|
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
23
|
-
import "../../shared-utils/three/IObject3D.js";
|
|
24
33
|
import "../../shared-utils/three/boundingBox.js";
|
|
25
34
|
import "../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
26
35
|
import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
27
36
|
import "../../shared-utils/Object3DHelper/Constants/color.js";
|
|
28
37
|
import "../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
29
38
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
30
|
-
import "../../shared-utils/positionToVector3.js";
|
|
31
39
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
32
40
|
import "../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
33
41
|
import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
34
42
|
import "../../CSS3DRenderPlugin/utils/even.js";
|
|
35
43
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
36
44
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
37
|
-
import "../../shared-utils/three/centerPoint.js";
|
|
38
45
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
39
|
-
import "../../shared-utils/isNil.js";
|
|
40
46
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
41
47
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
42
48
|
import "../../shared-utils/util.js";
|
|
@@ -76,16 +82,12 @@ import "../../shared-utils/three/Assets/index.js";
|
|
|
76
82
|
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
77
83
|
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
78
84
|
import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
79
|
-
import "../../Sculpt/Meshes/Line.js";
|
|
80
|
-
import "../../Sculpt/typings/style.js";
|
|
81
|
-
import "../../shared-utils/five/FiveLine.js";
|
|
82
|
-
import "../../shared-utils/tag.js";
|
|
83
|
-
import "../../shared-utils/five/vector3ToScreen.js";
|
|
84
|
-
import "../../Sculpt/utils/removeAllTag.js";
|
|
85
85
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
86
86
|
import "../../shared-utils/isTouchDevice.js";
|
|
87
87
|
import "../../shared-utils/five/getPosition.js";
|
|
88
88
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
89
|
+
import "../../Sculpt/utils/removeAllTag.js";
|
|
90
|
+
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
89
91
|
export {
|
|
90
92
|
o as default
|
|
91
93
|
};
|
|
@@ -41,20 +41,27 @@ import "../../utils/dom/areaDom.js";
|
|
|
41
41
|
import "../../../shared-utils/three/geometryUtil.js";
|
|
42
42
|
import "hammerjs";
|
|
43
43
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
44
|
+
import "../../../Sculpt/Meshes/Line.js";
|
|
45
|
+
import "../../../Sculpt/typings/style.js";
|
|
46
|
+
import "../../../shared-utils/positionToVector3.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";
|
|
44
55
|
import "../../../Sculpt/utils/Modules/Global.js";
|
|
45
56
|
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
46
57
|
import "../../../Object3DHelperPlugin/Controller.js";
|
|
47
58
|
import "../../../base/BasePlugin.js";
|
|
48
59
|
import "../../../shared-utils/Subscribe.js";
|
|
49
|
-
import "../../../shared-utils/three/THREESphere.js";
|
|
50
|
-
import "animejs";
|
|
51
60
|
import "../../../shared-utils/Utils/FiveUtil.js";
|
|
52
61
|
import "../../../shared-utils/Utils/BaseUtil.js";
|
|
53
62
|
import "../../../shared-utils/Utils/WorkUtil.js";
|
|
54
63
|
import "../../../shared-utils/five/transformPosition.js";
|
|
55
|
-
import "../../../shared-utils/five/getFiveModel.js";
|
|
56
64
|
import "../../../shared-utils/url/absoluteUrl.js";
|
|
57
|
-
import "../../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
58
65
|
import "../../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
59
66
|
import "../../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
60
67
|
import "../../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
@@ -64,7 +71,6 @@ import "../../../shared-utils/Object3DHelper/utils/direction.js";
|
|
|
64
71
|
import "../../../shared-utils/Object3DHelper/Constants/color.js";
|
|
65
72
|
import "../../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
66
73
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
67
|
-
import "../../../shared-utils/positionToVector3.js";
|
|
68
74
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
69
75
|
import "../../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
70
76
|
import "../../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
@@ -72,7 +78,6 @@ import "../../../CSS3DRenderPlugin/utils/even.js";
|
|
|
72
78
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
73
79
|
import "../../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
74
80
|
import "../../../shared-utils/three/getObjectVisible.js";
|
|
75
|
-
import "../../../shared-utils/isNil.js";
|
|
76
81
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
77
82
|
import "../../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
78
83
|
import "../../../shared-utils/util.js";
|
|
@@ -113,15 +118,12 @@ import "../../../shared-utils/three/Assets/index.js";
|
|
|
113
118
|
import "../../../shared-utils/three/PointSelector/utils/html.js";
|
|
114
119
|
import "../../../shared-utils/five/initialCSS3DRender.js";
|
|
115
120
|
import "../../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
116
|
-
import "../../../Sculpt/Meshes/Line.js";
|
|
117
|
-
import "../../../Sculpt/typings/style.js";
|
|
118
|
-
import "../../../shared-utils/tag.js";
|
|
119
|
-
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
120
|
-
import "../../../Sculpt/utils/removeAllTag.js";
|
|
121
121
|
import "../../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
122
122
|
import "../../../shared-utils/isTouchDevice.js";
|
|
123
123
|
import "../../../shared-utils/five/getPosition.js";
|
|
124
124
|
import "../../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
125
|
+
import "../../../Sculpt/utils/removeAllTag.js";
|
|
126
|
+
import "../../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
125
127
|
import "../../utils/isIntersecting.js";
|
|
126
128
|
import "../DeleteDom/index.js";
|
|
127
129
|
import "../DeleteDom/_Assets/delete.svg.js";
|
|
@@ -133,7 +135,7 @@ import "../../Components/Common/Switcher1.js";
|
|
|
133
135
|
import "../../Components/Common/CircleButton.js";
|
|
134
136
|
import "../../../vendor/svelte/transition/index.js";
|
|
135
137
|
import "../../../vendor/svelte/easing/index.js";
|
|
136
|
-
class
|
|
138
|
+
class ti {
|
|
137
139
|
constructor(o, t) {
|
|
138
140
|
i(this, "revoke");
|
|
139
141
|
i(this, "container");
|
|
@@ -187,5 +189,5 @@ class Yo {
|
|
|
187
189
|
}
|
|
188
190
|
}
|
|
189
191
|
export {
|
|
190
|
-
|
|
192
|
+
ti as UIController
|
|
191
193
|
};
|