@realsee/dnalogel 3.47.6 → 3.47.8
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/PanoTagPlugin/controller/Tag/PointTag.d.ts +0 -1
- package/dist/index.cjs.js +21 -21
- package/dist/index.js +916 -917
- package/dist/index.umd.js +23 -23
- package/dist/shared-utils/tag.d.ts +1 -0
- package/libs/AreaMakerPlugin/index.js +4 -4
- package/libs/AreaMakerPlugin/utils/Item.js +4 -4
- package/libs/CSS3DRenderPlugin/Controller.js +4 -4
- package/libs/CSS3DRenderPlugin/index.js +5 -5
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +4 -4
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +4 -4
- package/libs/CruisePlugin/BaseController.js +4 -4
- package/libs/CruisePlugin/index.js +4 -4
- package/libs/CurrentPanoImagePlugin/index.js +4 -4
- package/libs/GuideLinePlugin/GuideLineItem.js +4 -4
- package/libs/GuideLinePlugin/GuideLineModeItem.js +5 -5
- package/libs/GuideLinePlugin/index.js +4 -4
- package/libs/ModelMakerPlugin/index.js +4 -4
- package/libs/ModelMakerPlugin/item/baseItem.js +10 -6
- package/libs/ModelMakerPlugin/item/boxItem.js +6 -2
- package/libs/ModelMakerPlugin/item/polygonItem.js +6 -2
- package/libs/ModelMakerPlugin/item/prismItem.js +13 -9
- package/libs/ModelTVVideoPlugin/Plugin.js +4 -4
- package/libs/ModelTVVideoPlugin/index.js +4 -4
- package/libs/Object3DHelperPlugin/Controller.js +4 -4
- package/libs/Object3DHelperPlugin/index.js +4 -4
- package/libs/PanoCompassPlugin/Controller.js +4 -4
- package/libs/PanoCompassPlugin/index.js +4 -4
- package/libs/PanoDoorLabelPlugin/BaseController.js +4 -4
- package/libs/PanoDoorLabelPlugin/Controller.js +4 -4
- package/libs/PanoDoorLabelPlugin/index.js +4 -4
- package/libs/PanoMeasurePlugin/Components/Controller0.js +5 -5
- package/libs/PanoMeasurePlugin/Components/Controller1.js +5 -5
- package/libs/PanoMeasurePlugin/Controller/EditController.js +5 -5
- package/libs/PanoMeasurePlugin/Controller/WatchController.js +5 -5
- package/libs/PanoMeasurePlugin/Controller/index.js +4 -4
- package/libs/PanoMeasurePlugin/Model/area.js +5 -5
- package/libs/PanoMeasurePlugin/Modules/Magnifier.js +4 -4
- package/libs/PanoMeasurePlugin/Modules/UIController/index.js +5 -5
- package/libs/PanoMeasurePlugin/index.js +5 -5
- package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +5 -5
- package/libs/PanoSpatialTagPlugin/Plugin.js +4 -4
- package/libs/PanoSpatialTagPlugin/index.js +4 -4
- package/libs/PanoTagPlugin/Components/Common/TagPoint.js +5 -5
- package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +5 -5
- package/libs/PanoTagPlugin/Components/Tag/index.js +5 -5
- package/libs/PanoTagPlugin/Components/TagContainer.js +5 -5
- package/libs/PanoTagPlugin/Components/TagItem.js +5 -5
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +3 -3
- package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +4 -4
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +4 -4
- package/libs/PanoTagPlugin/controller/Tag/PointTag.d.ts +0 -1
- package/libs/PanoTagPlugin/controller/Tag/PointTag.js +4 -7
- package/libs/PanoTagPlugin/controller/TagRender.js +59 -59
- package/libs/PanoTagPlugin/controller/TagUtil.js +4 -4
- package/libs/PanoTagPlugin/controller/index.js +5 -5
- package/libs/PanoTagPlugin/index.js +5 -5
- package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +5 -5
- package/libs/PanoVideoPlugin/Controller.js +5 -5
- package/libs/PanoVideoPlugin/VideoMeshController.js +5 -5
- package/libs/PanoVideoPlugin/index.js +5 -5
- package/libs/PipelinePlugin/Controller.js +4 -4
- package/libs/PipelinePlugin/index.js +4 -4
- package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +5 -5
- package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +5 -5
- package/libs/PipelinePlugin/utils/Objects/Pipe.js +5 -5
- package/libs/base/BasePlugin.js +1 -1
- package/libs/floorplan/MapviewFloorplanPlugin/index.js +4 -4
- package/libs/floorplan/ModelFloorplanPlugin/index.js +4 -4
- package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +4 -4
- package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +4 -4
- package/libs/floorplan/TopviewFloorplanPlugin/index.js +4 -4
- package/libs/index.js +5 -5
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/tag.d.ts +1 -0
- package/libs/shared-utils/tag.js +31 -28
- package/package.json +1 -1
|
@@ -20,6 +20,10 @@ import "../shared-utils/tag.js";
|
|
|
20
20
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
21
21
|
import "../shared-utils/five/getFiveModel.js";
|
|
22
22
|
import "../shared-utils/three/raycaster.js";
|
|
23
|
+
import "../shared-utils/Utils/FiveUtil.js";
|
|
24
|
+
import "../shared-utils/Utils/BaseUtil.js";
|
|
25
|
+
import "../shared-utils/Utils/WorkUtil.js";
|
|
26
|
+
import "../shared-utils/five/transformPosition.js";
|
|
23
27
|
import "../Sculpt/utils/Modules/Global.js";
|
|
24
28
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
25
29
|
import "../Object3DHelperPlugin/Controller.js";
|
|
@@ -85,10 +89,6 @@ import "../shared-utils/five/getPosition.js";
|
|
|
85
89
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
86
90
|
import "../Sculpt/utils/removeAllTag.js";
|
|
87
91
|
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
88
|
-
import "../shared-utils/Utils/FiveUtil.js";
|
|
89
|
-
import "../shared-utils/Utils/BaseUtil.js";
|
|
90
|
-
import "../shared-utils/Utils/WorkUtil.js";
|
|
91
|
-
import "../shared-utils/five/transformPosition.js";
|
|
92
92
|
import "../shared-utils/url/absoluteUrl.js";
|
|
93
93
|
import "../shared-utils/equal.js";
|
|
94
94
|
import "../shared-utils/isTruelyObject.js";
|
|
@@ -26,14 +26,14 @@ import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
|
26
26
|
import "../../shared-utils/tag.js";
|
|
27
27
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
28
28
|
import "../../shared-utils/five/getFiveModel.js";
|
|
29
|
-
import "../../Sculpt/utils/Modules/Global.js";
|
|
30
|
-
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
31
|
-
import "../../Object3DHelperPlugin/Controller.js";
|
|
32
|
-
import "../../base/BasePlugin.js";
|
|
33
29
|
import "../../shared-utils/Utils/FiveUtil.js";
|
|
34
30
|
import "../../shared-utils/Utils/BaseUtil.js";
|
|
35
31
|
import "../../shared-utils/Utils/WorkUtil.js";
|
|
36
32
|
import "../../shared-utils/five/transformPosition.js";
|
|
33
|
+
import "../../Sculpt/utils/Modules/Global.js";
|
|
34
|
+
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
35
|
+
import "../../Object3DHelperPlugin/Controller.js";
|
|
36
|
+
import "../../base/BasePlugin.js";
|
|
37
37
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
38
38
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
39
39
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -45,14 +45,14 @@ import "../shared-utils/tag.js";
|
|
|
45
45
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
46
46
|
import "../shared-utils/five/getFiveModel.js";
|
|
47
47
|
import "../shared-utils/three/raycaster.js";
|
|
48
|
-
import "../Sculpt/utils/Modules/Global.js";
|
|
49
|
-
import "../Sculpt/utils/Modules/Cursor.js";
|
|
50
|
-
import "../Object3DHelperPlugin/Controller.js";
|
|
51
|
-
import "../base/BasePlugin.js";
|
|
52
48
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
53
49
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
54
50
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
55
51
|
import "../shared-utils/five/transformPosition.js";
|
|
52
|
+
import "../Sculpt/utils/Modules/Global.js";
|
|
53
|
+
import "../Sculpt/utils/Modules/Cursor.js";
|
|
54
|
+
import "../Object3DHelperPlugin/Controller.js";
|
|
55
|
+
import "../base/BasePlugin.js";
|
|
56
56
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
57
57
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
58
58
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
@@ -19,15 +19,15 @@ import "../shared-utils/tag.js";
|
|
|
19
19
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
20
20
|
import "../shared-utils/five/getFiveModel.js";
|
|
21
21
|
import "../shared-utils/three/raycaster.js";
|
|
22
|
-
import "../Sculpt/utils/Modules/Global.js";
|
|
23
|
-
import "../Sculpt/utils/Modules/Cursor.js";
|
|
24
|
-
import "../Object3DHelperPlugin/Controller.js";
|
|
25
|
-
import "../base/BasePlugin.js";
|
|
26
|
-
import "../shared-utils/Subscribe.js";
|
|
27
22
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
28
23
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
24
|
+
import "../shared-utils/Subscribe.js";
|
|
29
25
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
30
26
|
import "../shared-utils/five/transformPosition.js";
|
|
27
|
+
import "../Sculpt/utils/Modules/Global.js";
|
|
28
|
+
import "../Sculpt/utils/Modules/Cursor.js";
|
|
29
|
+
import "../Object3DHelperPlugin/Controller.js";
|
|
30
|
+
import "../base/BasePlugin.js";
|
|
31
31
|
import "../shared-utils/url/absoluteUrl.js";
|
|
32
32
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
33
33
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -23,14 +23,14 @@ import "../../../shared-utils/tag.js";
|
|
|
23
23
|
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
24
24
|
import "../../../shared-utils/five/getFiveModel.js";
|
|
25
25
|
import "../../../shared-utils/three/raycaster.js";
|
|
26
|
-
import "../../../Sculpt/utils/Modules/Global.js";
|
|
27
|
-
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
28
|
-
import "../../../Object3DHelperPlugin/Controller.js";
|
|
29
|
-
import "../../../base/BasePlugin.js";
|
|
30
26
|
import "../../../shared-utils/Utils/FiveUtil.js";
|
|
31
27
|
import "../../../shared-utils/Utils/BaseUtil.js";
|
|
32
28
|
import "../../../shared-utils/Utils/WorkUtil.js";
|
|
33
29
|
import "../../../shared-utils/five/transformPosition.js";
|
|
30
|
+
import "../../../Sculpt/utils/Modules/Global.js";
|
|
31
|
+
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
32
|
+
import "../../../Object3DHelperPlugin/Controller.js";
|
|
33
|
+
import "../../../base/BasePlugin.js";
|
|
34
34
|
import "../../../shared-utils/url/absoluteUrl.js";
|
|
35
35
|
import "../../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
36
36
|
import "../../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -56,14 +56,14 @@ import "../../../shared-utils/tag.js";
|
|
|
56
56
|
import "../../../shared-utils/five/vector3ToScreen.js";
|
|
57
57
|
import "../../../shared-utils/five/getFiveModel.js";
|
|
58
58
|
import "../../../shared-utils/three/raycaster.js";
|
|
59
|
-
import "../../../Sculpt/utils/Modules/Global.js";
|
|
60
|
-
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
61
|
-
import "../../../Object3DHelperPlugin/Controller.js";
|
|
62
|
-
import "../../../base/BasePlugin.js";
|
|
63
59
|
import "../../../shared-utils/Utils/FiveUtil.js";
|
|
64
60
|
import "../../../shared-utils/Utils/BaseUtil.js";
|
|
65
61
|
import "../../../shared-utils/Utils/WorkUtil.js";
|
|
66
62
|
import "../../../shared-utils/five/transformPosition.js";
|
|
63
|
+
import "../../../Sculpt/utils/Modules/Global.js";
|
|
64
|
+
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
65
|
+
import "../../../Object3DHelperPlugin/Controller.js";
|
|
66
|
+
import "../../../base/BasePlugin.js";
|
|
67
67
|
import "../../../shared-utils/url/absoluteUrl.js";
|
|
68
68
|
import "../../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
69
69
|
import "../../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -48,6 +48,10 @@ import "../shared-utils/tag.js";
|
|
|
48
48
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
49
49
|
import "../shared-utils/five/getFiveModel.js";
|
|
50
50
|
import "../shared-utils/three/raycaster.js";
|
|
51
|
+
import "../shared-utils/Utils/FiveUtil.js";
|
|
52
|
+
import "../shared-utils/Utils/BaseUtil.js";
|
|
53
|
+
import "../shared-utils/Utils/WorkUtil.js";
|
|
54
|
+
import "../shared-utils/five/transformPosition.js";
|
|
51
55
|
import "../Sculpt/utils/Modules/Global.js";
|
|
52
56
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
53
57
|
import "../Object3DHelperPlugin/Controller.js";
|
|
@@ -67,10 +71,6 @@ import "../CSS3DRenderPlugin/utils/even.js";
|
|
|
67
71
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
68
72
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
69
73
|
import "../shared-utils/three/getObjectVisible.js";
|
|
70
|
-
import "../shared-utils/Utils/FiveUtil.js";
|
|
71
|
-
import "../shared-utils/Utils/BaseUtil.js";
|
|
72
|
-
import "../shared-utils/Utils/WorkUtil.js";
|
|
73
|
-
import "../shared-utils/five/transformPosition.js";
|
|
74
74
|
import "../shared-utils/url/absoluteUrl.js";
|
|
75
75
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
76
76
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -24,6 +24,10 @@ import "../shared-utils/tag.js";
|
|
|
24
24
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
25
25
|
import "../shared-utils/five/getFiveModel.js";
|
|
26
26
|
import "../shared-utils/three/raycaster.js";
|
|
27
|
+
import "../shared-utils/Utils/FiveUtil.js";
|
|
28
|
+
import "../shared-utils/Utils/BaseUtil.js";
|
|
29
|
+
import "../shared-utils/Utils/WorkUtil.js";
|
|
30
|
+
import "../shared-utils/five/transformPosition.js";
|
|
27
31
|
import "../Sculpt/utils/Modules/Global.js";
|
|
28
32
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
29
33
|
import "../Object3DHelperPlugin/Controller.js";
|
|
@@ -43,10 +47,6 @@ import "../CSS3DRenderPlugin/utils/even.js";
|
|
|
43
47
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
44
48
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
45
49
|
import "../shared-utils/three/getObjectVisible.js";
|
|
46
|
-
import "../shared-utils/Utils/FiveUtil.js";
|
|
47
|
-
import "../shared-utils/Utils/BaseUtil.js";
|
|
48
|
-
import "../shared-utils/Utils/WorkUtil.js";
|
|
49
|
-
import "../shared-utils/five/transformPosition.js";
|
|
50
50
|
import "../shared-utils/url/absoluteUrl.js";
|
|
51
51
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
52
52
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -19,6 +19,10 @@ import "../shared-utils/tag.js";
|
|
|
19
19
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
20
20
|
import "../shared-utils/five/getFiveModel.js";
|
|
21
21
|
import "../shared-utils/three/raycaster.js";
|
|
22
|
+
import "../shared-utils/Utils/FiveUtil.js";
|
|
23
|
+
import "../shared-utils/Utils/BaseUtil.js";
|
|
24
|
+
import "../shared-utils/Utils/WorkUtil.js";
|
|
25
|
+
import "../shared-utils/five/transformPosition.js";
|
|
22
26
|
import "../Sculpt/utils/Modules/Global.js";
|
|
23
27
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
24
28
|
import "../Object3DHelperPlugin/Controller.js";
|
|
@@ -38,10 +42,6 @@ import "../CSS3DRenderPlugin/utils/even.js";
|
|
|
38
42
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
39
43
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
40
44
|
import "../shared-utils/three/getObjectVisible.js";
|
|
41
|
-
import "../shared-utils/Utils/FiveUtil.js";
|
|
42
|
-
import "../shared-utils/Utils/BaseUtil.js";
|
|
43
|
-
import "../shared-utils/Utils/WorkUtil.js";
|
|
44
|
-
import "../shared-utils/five/transformPosition.js";
|
|
45
45
|
import "../shared-utils/url/absoluteUrl.js";
|
|
46
46
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
47
47
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -34,14 +34,14 @@ import "../shared-utils/tag.js";
|
|
|
34
34
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
35
35
|
import "../shared-utils/five/getFiveModel.js";
|
|
36
36
|
import "../shared-utils/three/raycaster.js";
|
|
37
|
-
import "../Sculpt/utils/Modules/Global.js";
|
|
38
|
-
import "../Sculpt/utils/Modules/Cursor.js";
|
|
39
|
-
import "../Object3DHelperPlugin/Controller.js";
|
|
40
|
-
import "../base/BasePlugin.js";
|
|
41
37
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
42
38
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
43
39
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
44
40
|
import "../shared-utils/five/transformPosition.js";
|
|
41
|
+
import "../Sculpt/utils/Modules/Global.js";
|
|
42
|
+
import "../Sculpt/utils/Modules/Cursor.js";
|
|
43
|
+
import "../Object3DHelperPlugin/Controller.js";
|
|
44
|
+
import "../base/BasePlugin.js";
|
|
45
45
|
import "../shared-utils/url/absoluteUrl.js";
|
|
46
46
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
47
47
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -35,15 +35,15 @@ import "../shared-utils/tag.js";
|
|
|
35
35
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
36
36
|
import "../shared-utils/five/getFiveModel.js";
|
|
37
37
|
import "../shared-utils/three/raycaster.js";
|
|
38
|
-
import "../Sculpt/utils/Modules/Global.js";
|
|
39
|
-
import "../Sculpt/utils/Modules/Cursor.js";
|
|
40
|
-
import "../Object3DHelperPlugin/Controller.js";
|
|
41
|
-
import "../base/BasePlugin.js";
|
|
42
|
-
import "../shared-utils/Subscribe.js";
|
|
43
38
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
44
39
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
40
|
+
import "../shared-utils/Subscribe.js";
|
|
45
41
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
46
42
|
import "../shared-utils/five/transformPosition.js";
|
|
43
|
+
import "../Sculpt/utils/Modules/Global.js";
|
|
44
|
+
import "../Sculpt/utils/Modules/Cursor.js";
|
|
45
|
+
import "../Object3DHelperPlugin/Controller.js";
|
|
46
|
+
import "../base/BasePlugin.js";
|
|
47
47
|
import "../shared-utils/url/absoluteUrl.js";
|
|
48
48
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
49
49
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -22,6 +22,10 @@ import "../shared-utils/tag.js";
|
|
|
22
22
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
23
23
|
import "../shared-utils/five/getFiveModel.js";
|
|
24
24
|
import "../shared-utils/three/raycaster.js";
|
|
25
|
+
import "../shared-utils/Utils/FiveUtil.js";
|
|
26
|
+
import "../shared-utils/Utils/BaseUtil.js";
|
|
27
|
+
import "../shared-utils/Utils/WorkUtil.js";
|
|
28
|
+
import "../shared-utils/five/transformPosition.js";
|
|
25
29
|
import "../Sculpt/utils/Modules/Global.js";
|
|
26
30
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
27
31
|
import "../Object3DHelperPlugin/Controller.js";
|
|
@@ -41,10 +45,6 @@ import "../CSS3DRenderPlugin/utils/even.js";
|
|
|
41
45
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
42
46
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
43
47
|
import "../shared-utils/three/getObjectVisible.js";
|
|
44
|
-
import "../shared-utils/Utils/FiveUtil.js";
|
|
45
|
-
import "../shared-utils/Utils/BaseUtil.js";
|
|
46
|
-
import "../shared-utils/Utils/WorkUtil.js";
|
|
47
|
-
import "../shared-utils/five/transformPosition.js";
|
|
48
48
|
import "../shared-utils/url/absoluteUrl.js";
|
|
49
49
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
50
50
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -20,6 +20,10 @@ import "../shared-utils/tag.js";
|
|
|
20
20
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
21
21
|
import "../shared-utils/five/getFiveModel.js";
|
|
22
22
|
import "../shared-utils/three/raycaster.js";
|
|
23
|
+
import "../shared-utils/Utils/FiveUtil.js";
|
|
24
|
+
import "../shared-utils/Utils/BaseUtil.js";
|
|
25
|
+
import "../shared-utils/Utils/WorkUtil.js";
|
|
26
|
+
import "../shared-utils/five/transformPosition.js";
|
|
23
27
|
import "../Sculpt/utils/Modules/Global.js";
|
|
24
28
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
25
29
|
import "../Object3DHelperPlugin/Controller.js";
|
|
@@ -39,10 +43,6 @@ import "../CSS3DRenderPlugin/utils/even.js";
|
|
|
39
43
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
40
44
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
41
45
|
import "../shared-utils/three/getObjectVisible.js";
|
|
42
|
-
import "../shared-utils/Utils/FiveUtil.js";
|
|
43
|
-
import "../shared-utils/Utils/BaseUtil.js";
|
|
44
|
-
import "../shared-utils/Utils/WorkUtil.js";
|
|
45
|
-
import "../shared-utils/five/transformPosition.js";
|
|
46
46
|
import "../shared-utils/url/absoluteUrl.js";
|
|
47
47
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
48
48
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
var m = Object.defineProperty;
|
|
2
|
-
var n = (
|
|
3
|
-
var i = (
|
|
2
|
+
var n = (o, e, t) => e in o ? m(o, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : o[e] = t;
|
|
3
|
+
var i = (o, e, t) => (n(o, typeof e != "symbol" ? e + "" : e, t), t);
|
|
4
4
|
import * as d from "three";
|
|
5
5
|
import { addIfNotExists as l } from "../../shared-utils/three/addIfNotExists.js";
|
|
6
6
|
import { Subscribe as a } from "../../shared-utils/Subscribe.js";
|
|
@@ -11,14 +11,18 @@ import "../../shared-utils/positionToVector3.js";
|
|
|
11
11
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
12
12
|
import "../../shared-utils/five/getFiveModel.js";
|
|
13
13
|
import "../../shared-utils/three/raycaster.js";
|
|
14
|
+
import "../../shared-utils/Utils/FiveUtil.js";
|
|
15
|
+
import "../../shared-utils/Utils/BaseUtil.js";
|
|
16
|
+
import "../../shared-utils/Utils/WorkUtil.js";
|
|
17
|
+
import "../../shared-utils/five/transformPosition.js";
|
|
14
18
|
import "../../shared-utils/three/THREESphere.js";
|
|
15
19
|
import "../../shared-utils/five/FiveDomEvents.js";
|
|
16
20
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
17
21
|
import "../../shared-utils/five/calculateThreeMouse.js";
|
|
18
22
|
import "../../shared-utils/three/THREERaycaster.js";
|
|
19
|
-
class
|
|
23
|
+
class H extends a {
|
|
20
24
|
constructor(t) {
|
|
21
|
-
var
|
|
25
|
+
var s, r;
|
|
22
26
|
super();
|
|
23
27
|
i(this, "type");
|
|
24
28
|
i(this, "tag");
|
|
@@ -28,7 +32,7 @@ class I extends a {
|
|
|
28
32
|
i(this, "group");
|
|
29
33
|
i(this, "fiveDomEvents");
|
|
30
34
|
this.five = t.five, this.model = t.model, this.group = t.group, this.type = t.type, this.rawData = t.rawData, this.fiveDomEvents = c(this.five);
|
|
31
|
-
const h = (r = (
|
|
35
|
+
const h = (r = (s = t.position) != null ? s : this.model.center) != null ? r : v(this.model).getCenter(new d.Vector3());
|
|
32
36
|
this.tag = p(this.five, h, { wrapper: t.tagWrapper });
|
|
33
37
|
}
|
|
34
38
|
get container() {
|
|
@@ -59,5 +63,5 @@ class I extends a {
|
|
|
59
63
|
}
|
|
60
64
|
}
|
|
61
65
|
export {
|
|
62
|
-
|
|
66
|
+
H as ModelMakerBaseItem
|
|
63
67
|
};
|
|
@@ -8,6 +8,10 @@ import "../../shared-utils/positionToVector3.js";
|
|
|
8
8
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
9
9
|
import "../../shared-utils/five/getFiveModel.js";
|
|
10
10
|
import "../../shared-utils/three/raycaster.js";
|
|
11
|
+
import "../../shared-utils/Utils/FiveUtil.js";
|
|
12
|
+
import "../../shared-utils/Utils/BaseUtil.js";
|
|
13
|
+
import "../../shared-utils/Utils/WorkUtil.js";
|
|
14
|
+
import "../../shared-utils/five/transformPosition.js";
|
|
11
15
|
import "../../shared-utils/three/boundingBox.js";
|
|
12
16
|
import "../../shared-utils/three/THREESphere.js";
|
|
13
17
|
import "../utils/getFiveDomEvent.js";
|
|
@@ -15,11 +19,11 @@ import "../../shared-utils/five/FiveDomEvents.js";
|
|
|
15
19
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
16
20
|
import "../../shared-utils/five/calculateThreeMouse.js";
|
|
17
21
|
import "../../shared-utils/three/THREERaycaster.js";
|
|
18
|
-
class
|
|
22
|
+
class h extends r {
|
|
19
23
|
constructor(...o) {
|
|
20
24
|
super(...o);
|
|
21
25
|
}
|
|
22
26
|
}
|
|
23
27
|
export {
|
|
24
|
-
|
|
28
|
+
h as ModelMakerBoxItem
|
|
25
29
|
};
|
|
@@ -10,6 +10,10 @@ import "../../shared-utils/positionToVector3.js";
|
|
|
10
10
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
11
11
|
import "../../shared-utils/five/getFiveModel.js";
|
|
12
12
|
import "../../shared-utils/three/raycaster.js";
|
|
13
|
+
import "../../shared-utils/Utils/FiveUtil.js";
|
|
14
|
+
import "../../shared-utils/Utils/BaseUtil.js";
|
|
15
|
+
import "../../shared-utils/Utils/WorkUtil.js";
|
|
16
|
+
import "../../shared-utils/five/transformPosition.js";
|
|
13
17
|
import "../../shared-utils/three/boundingBox.js";
|
|
14
18
|
import "../../shared-utils/three/THREESphere.js";
|
|
15
19
|
import "../utils/getFiveDomEvent.js";
|
|
@@ -17,7 +21,7 @@ import "../../shared-utils/five/FiveDomEvents.js";
|
|
|
17
21
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
18
22
|
import "../../shared-utils/five/calculateThreeMouse.js";
|
|
19
23
|
import "../../shared-utils/three/THREERaycaster.js";
|
|
20
|
-
class
|
|
24
|
+
class B extends h {
|
|
21
25
|
constructor(...i) {
|
|
22
26
|
super(...i);
|
|
23
27
|
o(this, "hideTag", () => {
|
|
@@ -39,5 +43,5 @@ class x extends h {
|
|
|
39
43
|
}
|
|
40
44
|
}
|
|
41
45
|
export {
|
|
42
|
-
|
|
46
|
+
B as ModelMakerPolygonItem
|
|
43
47
|
};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
var c = Object.defineProperty, l = Object.defineProperties;
|
|
2
2
|
var x = Object.getOwnPropertyDescriptors;
|
|
3
|
-
var
|
|
3
|
+
var p = Object.getOwnPropertySymbols;
|
|
4
4
|
var d = Object.prototype.hasOwnProperty, b = Object.prototype.propertyIsEnumerable;
|
|
5
|
-
var
|
|
5
|
+
var i = (t, o, r) => o in t ? c(t, o, { enumerable: !0, configurable: !0, writable: !0, value: r }) : t[o] = r, e = (t, o) => {
|
|
6
6
|
for (var r in o || (o = {}))
|
|
7
|
-
d.call(o, r) &&
|
|
8
|
-
if (
|
|
9
|
-
for (var r of
|
|
10
|
-
b.call(o, r) &&
|
|
7
|
+
d.call(o, r) && i(t, r, o[r]);
|
|
8
|
+
if (p)
|
|
9
|
+
for (var r of p(o))
|
|
10
|
+
b.call(o, r) && i(t, r, o[r]);
|
|
11
11
|
return t;
|
|
12
12
|
}, s = (t, o) => l(t, x(o));
|
|
13
13
|
import { boundingBox as M, boxVertex as n } from "../../shared-utils/three/boundingBox.js";
|
|
@@ -21,17 +21,21 @@ import "../../shared-utils/positionToVector3.js";
|
|
|
21
21
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
22
22
|
import "../../shared-utils/five/getFiveModel.js";
|
|
23
23
|
import "../../shared-utils/three/raycaster.js";
|
|
24
|
+
import "../../shared-utils/Utils/FiveUtil.js";
|
|
25
|
+
import "../../shared-utils/Utils/BaseUtil.js";
|
|
26
|
+
import "../../shared-utils/Utils/WorkUtil.js";
|
|
27
|
+
import "../../shared-utils/five/transformPosition.js";
|
|
24
28
|
import "../utils/getFiveDomEvent.js";
|
|
25
29
|
import "../../shared-utils/five/FiveDomEvents.js";
|
|
26
30
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
27
31
|
import "../../shared-utils/five/calculateThreeMouse.js";
|
|
28
32
|
import "../../shared-utils/three/THREERaycaster.js";
|
|
29
|
-
class
|
|
33
|
+
class F extends f {
|
|
30
34
|
constructor(...o) {
|
|
31
35
|
const r = o[0], m = M(r.model), a = new u.Vector3().lerpVectors(n(m, 0), n(m, 5), 0.5);
|
|
32
|
-
super(s(
|
|
36
|
+
super(s(e({}, r), { position: a })), this.enable();
|
|
33
37
|
}
|
|
34
38
|
}
|
|
35
39
|
export {
|
|
36
|
-
|
|
40
|
+
F as ModelMakerPrismItem
|
|
37
41
|
};
|
|
@@ -46,14 +46,14 @@ import "../shared-utils/tag.js";
|
|
|
46
46
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
47
47
|
import "../shared-utils/five/getFiveModel.js";
|
|
48
48
|
import "../shared-utils/three/raycaster.js";
|
|
49
|
-
import "../Sculpt/utils/Modules/Global.js";
|
|
50
|
-
import "../Sculpt/utils/Modules/Cursor.js";
|
|
51
|
-
import "../Object3DHelperPlugin/Controller.js";
|
|
52
|
-
import "../base/BasePlugin.js";
|
|
53
49
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
54
50
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
55
51
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
56
52
|
import "../shared-utils/five/transformPosition.js";
|
|
53
|
+
import "../Sculpt/utils/Modules/Global.js";
|
|
54
|
+
import "../Sculpt/utils/Modules/Cursor.js";
|
|
55
|
+
import "../Object3DHelperPlugin/Controller.js";
|
|
56
|
+
import "../base/BasePlugin.js";
|
|
57
57
|
import "../shared-utils/url/absoluteUrl.js";
|
|
58
58
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
59
59
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -30,14 +30,14 @@ import "../shared-utils/tag.js";
|
|
|
30
30
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
31
31
|
import "../shared-utils/five/getFiveModel.js";
|
|
32
32
|
import "../shared-utils/three/raycaster.js";
|
|
33
|
-
import "../Sculpt/utils/Modules/Global.js";
|
|
34
|
-
import "../Sculpt/utils/Modules/Cursor.js";
|
|
35
|
-
import "../Object3DHelperPlugin/Controller.js";
|
|
36
|
-
import "../base/BasePlugin.js";
|
|
37
33
|
import "../shared-utils/Utils/FiveUtil.js";
|
|
38
34
|
import "../shared-utils/Utils/BaseUtil.js";
|
|
39
35
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
40
36
|
import "../shared-utils/five/transformPosition.js";
|
|
37
|
+
import "../Sculpt/utils/Modules/Global.js";
|
|
38
|
+
import "../Sculpt/utils/Modules/Cursor.js";
|
|
39
|
+
import "../Object3DHelperPlugin/Controller.js";
|
|
40
|
+
import "../base/BasePlugin.js";
|
|
41
41
|
import "../shared-utils/url/absoluteUrl.js";
|
|
42
42
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
43
43
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -61,6 +61,10 @@ import "../shared-utils/tag.js";
|
|
|
61
61
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
62
62
|
import "../shared-utils/five/getFiveModel.js";
|
|
63
63
|
import "../shared-utils/three/raycaster.js";
|
|
64
|
+
import "../shared-utils/Utils/FiveUtil.js";
|
|
65
|
+
import "../shared-utils/Utils/BaseUtil.js";
|
|
66
|
+
import "../shared-utils/Utils/WorkUtil.js";
|
|
67
|
+
import "../shared-utils/five/transformPosition.js";
|
|
64
68
|
import "../Sculpt/utils/Modules/Global.js";
|
|
65
69
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
66
70
|
import "./Controller.js";
|
|
@@ -76,10 +80,6 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
76
80
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
77
81
|
import "../CSS3DRenderPlugin/utils/even.js";
|
|
78
82
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
79
|
-
import "../shared-utils/Utils/FiveUtil.js";
|
|
80
|
-
import "../shared-utils/Utils/BaseUtil.js";
|
|
81
|
-
import "../shared-utils/Utils/WorkUtil.js";
|
|
82
|
-
import "../shared-utils/five/transformPosition.js";
|
|
83
83
|
import "../shared-utils/url/absoluteUrl.js";
|
|
84
84
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
85
85
|
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
@@ -20,6 +20,10 @@ import "../shared-utils/tag.js";
|
|
|
20
20
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
21
21
|
import "../shared-utils/five/getFiveModel.js";
|
|
22
22
|
import "../shared-utils/three/raycaster.js";
|
|
23
|
+
import "../shared-utils/Utils/FiveUtil.js";
|
|
24
|
+
import "../shared-utils/Utils/BaseUtil.js";
|
|
25
|
+
import "../shared-utils/Utils/WorkUtil.js";
|
|
26
|
+
import "../shared-utils/five/transformPosition.js";
|
|
23
27
|
import "../Sculpt/utils/Modules/Global.js";
|
|
24
28
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
25
29
|
import "../shared-utils/five/FiveDomEvents.js";
|
|
@@ -34,10 +38,6 @@ import "../shared-utils/three/Assets/index.js";
|
|
|
34
38
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
35
39
|
import "../CSS3DRenderPlugin/utils/even.js";
|
|
36
40
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
37
|
-
import "../shared-utils/Utils/FiveUtil.js";
|
|
38
|
-
import "../shared-utils/Utils/BaseUtil.js";
|
|
39
|
-
import "../shared-utils/Utils/WorkUtil.js";
|
|
40
|
-
import "../shared-utils/five/transformPosition.js";
|
|
41
41
|
import "../shared-utils/url/absoluteUrl.js";
|
|
42
42
|
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
43
43
|
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
@@ -52,6 +52,10 @@ import "../shared-utils/tag.js";
|
|
|
52
52
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
53
53
|
import "../shared-utils/five/getFiveModel.js";
|
|
54
54
|
import "../shared-utils/three/raycaster.js";
|
|
55
|
+
import "../shared-utils/Utils/FiveUtil.js";
|
|
56
|
+
import "../shared-utils/Utils/BaseUtil.js";
|
|
57
|
+
import "../shared-utils/Utils/WorkUtil.js";
|
|
58
|
+
import "../shared-utils/five/transformPosition.js";
|
|
55
59
|
import "../Sculpt/utils/Modules/Global.js";
|
|
56
60
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
57
61
|
import "../Object3DHelperPlugin/Controller.js";
|
|
@@ -71,10 +75,6 @@ import "../CSS3DRenderPlugin/utils/even.js";
|
|
|
71
75
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
72
76
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
73
77
|
import "../shared-utils/three/getObjectVisible.js";
|
|
74
|
-
import "../shared-utils/Utils/FiveUtil.js";
|
|
75
|
-
import "../shared-utils/Utils/BaseUtil.js";
|
|
76
|
-
import "../shared-utils/Utils/WorkUtil.js";
|
|
77
|
-
import "../shared-utils/five/transformPosition.js";
|
|
78
78
|
import "../shared-utils/url/absoluteUrl.js";
|
|
79
79
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
80
80
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -21,6 +21,10 @@ import "../shared-utils/tag.js";
|
|
|
21
21
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
22
22
|
import "../shared-utils/five/getFiveModel.js";
|
|
23
23
|
import "../shared-utils/three/raycaster.js";
|
|
24
|
+
import "../shared-utils/Utils/FiveUtil.js";
|
|
25
|
+
import "../shared-utils/Utils/BaseUtil.js";
|
|
26
|
+
import "../shared-utils/Utils/WorkUtil.js";
|
|
27
|
+
import "../shared-utils/five/transformPosition.js";
|
|
24
28
|
import "../Sculpt/utils/Modules/Global.js";
|
|
25
29
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
26
30
|
import "../Object3DHelperPlugin/Controller.js";
|
|
@@ -40,10 +44,6 @@ import "../CSS3DRenderPlugin/utils/even.js";
|
|
|
40
44
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
41
45
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
42
46
|
import "../shared-utils/three/getObjectVisible.js";
|
|
43
|
-
import "../shared-utils/Utils/FiveUtil.js";
|
|
44
|
-
import "../shared-utils/Utils/BaseUtil.js";
|
|
45
|
-
import "../shared-utils/Utils/WorkUtil.js";
|
|
46
|
-
import "../shared-utils/five/transformPosition.js";
|
|
47
47
|
import "../shared-utils/url/absoluteUrl.js";
|
|
48
48
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
49
49
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -32,6 +32,10 @@ import "../shared-utils/tag.js";
|
|
|
32
32
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
33
33
|
import "../shared-utils/five/getFiveModel.js";
|
|
34
34
|
import "../shared-utils/three/raycaster.js";
|
|
35
|
+
import "../shared-utils/Utils/FiveUtil.js";
|
|
36
|
+
import "../shared-utils/Utils/BaseUtil.js";
|
|
37
|
+
import "../shared-utils/Utils/WorkUtil.js";
|
|
38
|
+
import "../shared-utils/five/transformPosition.js";
|
|
35
39
|
import "../Sculpt/utils/Modules/Global.js";
|
|
36
40
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
37
41
|
import "../Object3DHelperPlugin/Controller.js";
|
|
@@ -51,10 +55,6 @@ import "../CSS3DRenderPlugin/utils/even.js";
|
|
|
51
55
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
52
56
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
53
57
|
import "../shared-utils/three/getObjectVisible.js";
|
|
54
|
-
import "../shared-utils/Utils/FiveUtil.js";
|
|
55
|
-
import "../shared-utils/Utils/BaseUtil.js";
|
|
56
|
-
import "../shared-utils/Utils/WorkUtil.js";
|
|
57
|
-
import "../shared-utils/five/transformPosition.js";
|
|
58
58
|
import "../shared-utils/url/absoluteUrl.js";
|
|
59
59
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
60
60
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -35,6 +35,10 @@ import "../shared-utils/tag.js";
|
|
|
35
35
|
import "../shared-utils/five/vector3ToScreen.js";
|
|
36
36
|
import "../shared-utils/five/getFiveModel.js";
|
|
37
37
|
import "../shared-utils/three/raycaster.js";
|
|
38
|
+
import "../shared-utils/Utils/FiveUtil.js";
|
|
39
|
+
import "../shared-utils/Utils/BaseUtil.js";
|
|
40
|
+
import "../shared-utils/Utils/WorkUtil.js";
|
|
41
|
+
import "../shared-utils/five/transformPosition.js";
|
|
38
42
|
import "../Sculpt/utils/Modules/Global.js";
|
|
39
43
|
import "../Sculpt/utils/Modules/Cursor.js";
|
|
40
44
|
import "../Object3DHelperPlugin/Controller.js";
|
|
@@ -54,10 +58,6 @@ import "../CSS3DRenderPlugin/utils/even.js";
|
|
|
54
58
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
55
59
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
56
60
|
import "../shared-utils/three/getObjectVisible.js";
|
|
57
|
-
import "../shared-utils/Utils/FiveUtil.js";
|
|
58
|
-
import "../shared-utils/Utils/BaseUtil.js";
|
|
59
|
-
import "../shared-utils/Utils/WorkUtil.js";
|
|
60
|
-
import "../shared-utils/five/transformPosition.js";
|
|
61
61
|
import "../shared-utils/url/absoluteUrl.js";
|
|
62
62
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
63
63
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|