@realsee/dnalogel 3.45.0 → 3.46.1

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.
Files changed (100) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/Sculpt/Meshes/Line.d.ts +6 -1
  3. package/dist/Sculpt/utils/removeAllTag.d.ts +2 -0
  4. package/dist/index.cjs.js +53 -53
  5. package/dist/index.js +29600 -29557
  6. package/dist/index.umd.js +49 -49
  7. package/dist/shared-utils/tag.d.ts +6 -3
  8. package/libs/AreaMakerPlugin/Controller.js +151 -78
  9. package/libs/AreaMakerPlugin/index.js +77 -4
  10. package/libs/AreaMakerPlugin/utils/Item.js +191 -111
  11. package/libs/CSS3DRenderPlugin/Controller.js +90 -29
  12. package/libs/CSS3DRenderPlugin/index.js +76 -15
  13. package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +133 -58
  14. package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +182 -116
  15. package/libs/CruisePlugin/BaseController.js +122 -49
  16. package/libs/CruisePlugin/Move.js +74 -21
  17. package/libs/CruisePlugin/Work.js +99 -46
  18. package/libs/CruisePlugin/index.js +80 -27
  19. package/libs/CurrentPanoImagePlugin/Controller.js +177 -104
  20. package/libs/CurrentPanoImagePlugin/index.js +77 -4
  21. package/libs/GuideLinePlugin/Controller.js +79 -26
  22. package/libs/GuideLinePlugin/GuideLineItem.js +83 -30
  23. package/libs/GuideLinePlugin/GuideLineModeItem/index.js +3 -2
  24. package/libs/GuideLinePlugin/GuideLineModeItem.js +82 -29
  25. package/libs/GuideLinePlugin/index.js +80 -27
  26. package/libs/ModelMakerPlugin/Controller.js +140 -82
  27. package/libs/ModelMakerPlugin/index.js +76 -18
  28. package/libs/ModelTVVideoPlugin/Plugin.js +118 -57
  29. package/libs/ModelTVVideoPlugin/index.js +69 -8
  30. package/libs/Object3DHelperPlugin/Controller.js +67 -43
  31. package/libs/Object3DHelperPlugin/index.js +36 -13
  32. package/libs/PanoCompassPlugin/Controller.js +98 -42
  33. package/libs/PanoCompassPlugin/index.js +72 -16
  34. package/libs/PanoDoorLabelPlugin/BaseController.js +99 -26
  35. package/libs/PanoDoorLabelPlugin/Controller.js +188 -115
  36. package/libs/PanoDoorLabelPlugin/index.js +77 -4
  37. package/libs/PanoMeasurePlugin/Components/Controller0.js +141 -88
  38. package/libs/PanoMeasurePlugin/Components/Controller1.js +179 -126
  39. package/libs/PanoMeasurePlugin/Controller/EditController.js +125 -72
  40. package/libs/PanoMeasurePlugin/Controller/WatchController.js +168 -92
  41. package/libs/PanoMeasurePlugin/Controller/index.js +110 -64
  42. package/libs/PanoMeasurePlugin/Model/area.js +115 -38
  43. package/libs/PanoMeasurePlugin/Modules/Magnifier.js +79 -0
  44. package/libs/PanoMeasurePlugin/Modules/UIController/index.js +98 -45
  45. package/libs/PanoMeasurePlugin/index.js +77 -31
  46. package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +99 -20
  47. package/libs/PanoSpatialTagPlugin/Plugin.js +211 -150
  48. package/libs/PanoSpatialTagPlugin/index.js +67 -6
  49. package/libs/PanoTagPlugin/Components/Common/TagPoint.js +149 -68
  50. package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +296 -216
  51. package/libs/PanoTagPlugin/Components/Tag/index.js +258 -187
  52. package/libs/PanoTagPlugin/Components/TagContainer.js +158 -87
  53. package/libs/PanoTagPlugin/Components/TagItem.js +145 -74
  54. package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +133 -62
  55. package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +110 -39
  56. package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +106 -35
  57. package/libs/PanoTagPlugin/controller/Tag/PointTag.js +114 -43
  58. package/libs/PanoTagPlugin/controller/TagRender.js +133 -80
  59. package/libs/PanoTagPlugin/controller/TagUtil.js +137 -84
  60. package/libs/PanoTagPlugin/controller/index.js +114 -61
  61. package/libs/PanoTagPlugin/index.js +90 -37
  62. package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +122 -41
  63. package/libs/PanoVideoPlugin/Controller.js +138 -65
  64. package/libs/PanoVideoPlugin/VideoMeshController.js +150 -69
  65. package/libs/PanoVideoPlugin/index.js +83 -10
  66. package/libs/PipelinePlugin/Controller.js +200 -128
  67. package/libs/PipelinePlugin/index.js +77 -5
  68. package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +103 -22
  69. package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +96 -15
  70. package/libs/PipelinePlugin/utils/Objects/Pipe.js +137 -56
  71. package/libs/Sculpt/Meshes/Box.js +6 -5
  72. package/libs/Sculpt/Meshes/Cylinder.js +7 -6
  73. package/libs/Sculpt/Meshes/Line.d.ts +6 -1
  74. package/libs/Sculpt/Meshes/Line.js +80 -57
  75. package/libs/Sculpt/Meshes/Point.js +6 -5
  76. package/libs/Sculpt/Meshes/Polyline.js +5 -4
  77. package/libs/Sculpt/Meshes/Rectangle.js +3 -2
  78. package/libs/Sculpt/Objects/Base/index.js +20 -17
  79. package/libs/Sculpt/Objects/Line/Editor.js +11 -10
  80. package/libs/Sculpt/utils/removeAllTag.d.ts +2 -0
  81. package/libs/Sculpt/utils/removeAllTag.js +10 -0
  82. package/libs/Sculpt/utils/three/ColoredMesh.js +14 -13
  83. package/libs/base/BasePlugin.js +14 -13
  84. package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +129 -59
  85. package/libs/floorplan/MapviewFloorplanPlugin/index.js +76 -6
  86. package/libs/floorplan/ModelFloorplanPlugin/Controller.js +130 -59
  87. package/libs/floorplan/ModelFloorplanPlugin/index.js +76 -5
  88. package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +159 -86
  89. package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +77 -4
  90. package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +152 -81
  91. package/libs/floorplan/TopviewFloorplanPlugin/index.js +76 -5
  92. package/libs/floorplan/index.js +1 -0
  93. package/libs/index.js +193 -192
  94. package/libs/shared-utils/five/index.js +3 -2
  95. package/libs/shared-utils/five/lookObject.js +3 -2
  96. package/libs/shared-utils/logger.js +1 -1
  97. package/libs/shared-utils/tag.d.ts +6 -3
  98. package/libs/shared-utils/tag.js +38 -24
  99. package/libs/shared-utils/three/index.js +1 -0
  100. package/package.json +1 -1
@@ -1,30 +1,30 @@
1
- var m = Object.defineProperty;
2
- var p = Object.getOwnPropertySymbols;
1
+ var c = Object.defineProperty;
2
+ var u = Object.getOwnPropertySymbols;
3
3
  var v = Object.prototype.hasOwnProperty, S = Object.prototype.propertyIsEnumerable;
4
- var u = (a, s, e) => s in a ? m(a, s, { enumerable: !0, configurable: !0, writable: !0, value: e }) : a[s] = e, g = (a, s) => {
4
+ var l = (r, s, e) => s in r ? c(r, s, { enumerable: !0, configurable: !0, writable: !0, value: e }) : r[s] = e, f = (r, s) => {
5
5
  for (var e in s || (s = {}))
6
- v.call(s, e) && u(a, e, s[e]);
7
- if (p)
8
- for (var e of p(s))
9
- S.call(s, e) && u(a, e, s[e]);
10
- return a;
6
+ v.call(s, e) && l(r, e, s[e]);
7
+ if (u)
8
+ for (var e of u(s))
9
+ S.call(s, e) && l(r, e, s[e]);
10
+ return r;
11
11
  };
12
- var d = (a, s, e) => (u(a, typeof s != "symbol" ? s + "" : s, e), e);
13
- var f = (a, s, e) => new Promise((t, i) => {
14
- var r = (h) => {
12
+ var o = (r, s, e) => (l(r, typeof s != "symbol" ? s + "" : s, e), e);
13
+ var n = (r, s, e) => new Promise((t, i) => {
14
+ var a = (p) => {
15
15
  try {
16
- n(e.next(h));
17
- } catch (o) {
18
- i(o);
16
+ m(e.next(p));
17
+ } catch (h) {
18
+ i(h);
19
19
  }
20
- }, c = (h) => {
20
+ }, b = (p) => {
21
21
  try {
22
- n(e.throw(h));
23
- } catch (o) {
24
- i(o);
22
+ m(e.throw(p));
23
+ } catch (h) {
24
+ i(h);
25
25
  }
26
- }, n = (h) => h.done ? t(h.value) : Promise.resolve(h.value).then(r, c);
27
- n((e = e.apply(a, s)).next());
26
+ }, m = (p) => p.done ? t(p.value) : Promise.resolve(p.value).then(a, b);
27
+ m((e = e.apply(r, s)).next());
28
28
  });
29
29
  import { Controller as y } from "../base/BasePlugin.js";
30
30
  import { equal as L } from "../shared-utils/equal.js";
@@ -34,46 +34,119 @@ import "three";
34
34
  import "hammerjs";
35
35
  import "three/examples/jsm/renderers/CSS3DRenderer";
36
36
  import "@realsee/five/line";
37
+ import "../Sculpt/utils/Modules/Global.js";
38
+ import "../Sculpt/utils/Modules/Cursor.js";
39
+ import "../Object3DHelperPlugin/Controller.js";
37
40
  import "../shared-utils/three/THREESphere.js";
41
+ import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
42
+ import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
43
+ import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
44
+ import "../shared-utils/three/IObject3D.js";
45
+ import "../shared-utils/three/boundingBox.js";
46
+ import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
47
+ import "../shared-utils/Object3DHelper/utils/direction.js";
48
+ import "../shared-utils/Object3DHelper/Constants/color.js";
49
+ import "../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
50
+ import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
51
+ import "../shared-utils/positionToVector3.js";
52
+ import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
53
+ import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
54
+ import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
55
+ import "../CSS3DRenderPlugin/utils/even.js";
56
+ import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
57
+ import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
58
+ import "../shared-utils/three/centerPoint.js";
59
+ import "../shared-utils/three/getObjectVisible.js";
38
60
  import "animejs";
61
+ import "../shared-utils/isNil.js";
62
+ import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
39
63
  import "../shared-utils/Utils/FiveUtil.js";
40
64
  import "../shared-utils/Utils/BaseUtil.js";
41
65
  import "../shared-utils/Utils/WorkUtil.js";
42
66
  import "../shared-utils/five/transformPosition.js";
43
67
  import "../shared-utils/five/getFiveModel.js";
44
68
  import "../shared-utils/url/absoluteUrl.js";
45
- import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
69
+ import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
70
+ import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
71
+ import "../shared-utils/util.js";
72
+ import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
73
+ import "../shared-utils/Object3DHelper/Helper/RotateHelper.js";
74
+ import "../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
75
+ import "../shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
76
+ import "../shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
77
+ import "../shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
78
+ import "../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
79
+ import "../shared-utils/Object3DHelper/Controller/MoveController.js";
80
+ import "../shared-utils/Object3DHelper/Base/BaseController.js";
81
+ import "../shared-utils/threex/domevents/index.js";
82
+ import "../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
83
+ import "../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
84
+ import "../Sculpt/utils/three/rayOnLine.js";
85
+ import "../Object3DHelperPlugin/FiveControllerWrapper.js";
86
+ import "../shared-utils/Object3DHelper/index.js";
87
+ import "../shared-utils/Object3DHelper/Controller/RotateController.js";
88
+ import "../shared-utils/math/rad2Deg.js";
89
+ import "../shared-utils/math/deg2Rad.js";
90
+ import "../shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
91
+ import "../shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
92
+ import "../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
93
+ import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
94
+ import "../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
95
+ import "../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
96
+ import "../shared-utils/Object3DHelper/Controller/ScaleController.js";
97
+ import "../shared-utils/five/fiveModelLoad.js";
98
+ import "../shared-utils/five/FiveDomEvents.js";
99
+ import "../shared-utils/five/calculateThreeMouse.js";
100
+ import "../shared-utils/three/THREERaycaster.js";
101
+ import "../shared-utils/three/PointSelector/index.js";
102
+ import "../shared-utils/three/PointSelector/utils/PointSelectorHelper.js";
103
+ import "../shared-utils/three/Magnifier.js";
104
+ import "../shared-utils/three/PointSelector/utils/PointHelper.js";
105
+ import "../shared-utils/three/Assets/index.js";
106
+ import "../shared-utils/three/PointSelector/utils/html.js";
107
+ import "../shared-utils/five/initialCSS3DRender.js";
108
+ import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
109
+ import "../Sculpt/Meshes/Line.js";
110
+ import "../Sculpt/typings/style.js";
111
+ import "../shared-utils/five/FiveLine.js";
112
+ import "../shared-utils/tag.js";
113
+ import "../shared-utils/five/vector3ToScreen.js";
114
+ import "../Sculpt/utils/removeAllTag.js";
115
+ import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
116
+ import "../shared-utils/isTouchDevice.js";
117
+ import "../shared-utils/five/getPosition.js";
118
+ import "../shared-utils/five/getRaycasterByNdcPosition.js";
46
119
  import "../shared-utils/isTruelyObject.js";
47
- const b = "CruisePlugin", l = `${b}`, F = (a) => `${l}--${a}`;
48
- class H extends y {
120
+ const g = "CruisePlugin", d = `${g}`, pt = (r) => `${d}--${r}`;
121
+ class dt extends y {
49
122
  constructor(e, t) {
50
123
  super(e, t);
51
- d(this, "state", {
124
+ o(this, "state", {
52
125
  visible: !0,
53
126
  enabled: !0,
54
127
  disposed: !1,
55
128
  playing: !1,
56
129
  speed: 1
57
130
  });
58
- d(this, "data");
59
- d(this, "config");
60
- d(this, "pauseDataMap", /* @__PURE__ */ new Map());
61
- d(this, "privateState", {
131
+ o(this, "data");
132
+ o(this, "config");
133
+ o(this, "pauseDataMap", /* @__PURE__ */ new Map());
134
+ o(this, "privateState", {
62
135
  playing: !1,
63
136
  broke: !1,
64
137
  modeChanging: !1
65
138
  });
66
- d(this, "GuideLine");
67
- d(this, "disposedErrorLog", () => {
68
- console.error(`${l} is disposed`);
139
+ o(this, "GuideLine");
140
+ o(this, "disposedErrorLog", () => {
141
+ console.error(`${d} is disposed`);
69
142
  });
70
- d(this, "disableWarnLog", () => {
71
- console.warn(`${l} is disabled`);
143
+ o(this, "disableWarnLog", () => {
144
+ console.warn(`${d} is disabled`);
72
145
  });
73
- d(this, "disableErrorLog", () => {
74
- console.error(`${l} is disabled`);
146
+ o(this, "disableErrorLog", () => {
147
+ console.error(`${d} is disabled`);
75
148
  });
76
- this.config = t, Object.assign(window, { [`__${b}_DEBUG__`]: this });
149
+ this.config = t, Object.assign(window, { [`__${g}_DEBUG__`]: this });
77
150
  }
78
151
  /**
79
152
  * @description Play | Continue play. if have been paused, continue play from the pause position; if playing, do nothing
@@ -91,7 +164,7 @@ class H extends y {
91
164
  * @description Show guide line
92
165
  */
93
166
  show(e) {
94
- return f(this, null, function* () {
167
+ return n(this, null, function* () {
95
168
  this.setState({ visible: !0 }, e);
96
169
  });
97
170
  }
@@ -99,7 +172,7 @@ class H extends y {
99
172
  * @description Hide guide line
100
173
  */
101
174
  hide(e) {
102
- return f(this, null, function* () {
175
+ return n(this, null, function* () {
103
176
  this.setState({ visible: !1 }, e);
104
177
  });
105
178
  }
@@ -125,13 +198,13 @@ class H extends y {
125
198
  * @description Set state
126
199
  */
127
200
  setState(e, t) {
128
- var r;
201
+ var a;
129
202
  if (this.state.disposed)
130
203
  return this.disposedErrorLog();
131
204
  if (!this.state.enabled && e.enabled !== !0 && e.disposed !== !0)
132
205
  return this.disableErrorLog();
133
- const i = g({}, this.state);
134
- this.state = C({}, this.state, e), e.disposed !== void 0 && e.disposed !== i.disposed && e.disposed && this.handleDispose(), e.visible !== void 0 && e.visible !== i.visible && this.handleVisible(e.visible, t == null ? void 0 : t.userAction), e.enabled !== void 0 && e.enabled !== i.enabled && this.handleEnable(e.enabled, t == null ? void 0 : t.userAction), e.playing !== void 0 && e.playing !== i.playing && this.changePlayState(e.playing, t), e.speed !== void 0 && e.speed !== i.speed && this.changeSpeed(e.speed), L(i, this.state, { deep: !0 }) || this.hooks.emit("stateChange", { state: this.state, prevState: i, userAction: (r = t == null ? void 0 : t.userAction) != null ? r : !0 });
206
+ const i = f({}, this.state);
207
+ this.state = C({}, this.state, e), e.disposed !== void 0 && e.disposed !== i.disposed && e.disposed && this.handleDispose(), e.visible !== void 0 && e.visible !== i.visible && this.handleVisible(e.visible, t == null ? void 0 : t.userAction), e.enabled !== void 0 && e.enabled !== i.enabled && this.handleEnable(e.enabled, t == null ? void 0 : t.userAction), e.playing !== void 0 && e.playing !== i.playing && this.changePlayState(e.playing, t), e.speed !== void 0 && e.speed !== i.speed && this.changeSpeed(e.speed), L(i, this.state, { deep: !0 }) || this.hooks.emit("stateChange", { state: this.state, prevState: i, userAction: (a = t == null ? void 0 : t.userAction) != null ? a : !0 });
135
208
  }
136
209
  /**
137
210
  * @description Clear pause data
@@ -150,12 +223,12 @@ class H extends y {
150
223
  ), e ? this.handlePlay(t) : this.handlePause(t), this.state.playing = e;
151
224
  }
152
225
  handleEnable(e, t = !0) {
153
- var i, r;
154
- e ? ((i = this.GuideLine) == null || i.enable(), this.hooks.emit("enable", { userAction: t })) : ((r = this.GuideLine) == null || r.disable(), this.changePlayState(!1, { userAction: t }), this.hooks.emit("disable", { userAction: t })), this.state.enabled = e;
226
+ var i, a;
227
+ e ? ((i = this.GuideLine) == null || i.enable(), this.hooks.emit("enable", { userAction: t })) : ((a = this.GuideLine) == null || a.disable(), this.changePlayState(!1, { userAction: t }), this.hooks.emit("disable", { userAction: t })), this.state.enabled = e;
155
228
  }
156
229
  handleVisible(e, t = !0) {
157
- var i, r;
158
- e ? ((i = this.GuideLine) == null || i.show(), this.actionIfStateIsEnabled(() => this.hooks.emit("show", { userAction: t }))) : ((r = this.GuideLine) == null || r.hide(), this.actionIfStateIsEnabled(() => this.hooks.emit("hide", { userAction: t }))), this.state.visible = e;
230
+ var i, a;
231
+ e ? ((i = this.GuideLine) == null || i.show(), this.actionIfStateIsEnabled(() => this.hooks.emit("show", { userAction: t }))) : ((a = this.GuideLine) == null || a.hide(), this.actionIfStateIsEnabled(() => this.hooks.emit("hide", { userAction: t }))), this.state.visible = e;
159
232
  }
160
233
  /**
161
234
  * @description: listen interupted by five gesture
@@ -163,8 +236,8 @@ class H extends y {
163
236
  addInterruptListener(e) {
164
237
  const t = () => {
165
238
  this.privateState.modeChanging || e();
166
- }, i = (r) => {
167
- r !== "mouseMove" && (e(), this.five.off("gesture", i));
239
+ }, i = (a) => {
240
+ a !== "mouseMove" && (e(), this.five.off("gesture", i));
168
241
  };
169
242
  return this.five.on("gesture", i), this.five.once("wantsChangeMode", t), () => {
170
243
  this.five.off("gesture", i), this.five.off("wantsChangeMode", t);
@@ -220,6 +293,6 @@ class H extends y {
220
293
  }
221
294
  }
222
295
  export {
223
- H as default,
224
- F as pluginFlag
296
+ dt as default,
297
+ pt as pluginFlag
225
298
  };
@@ -34,6 +34,7 @@ import "hammerjs";
34
34
  import "three/examples/jsm/renderers/CSS3DRenderer";
35
35
  import "@realsee/five/line";
36
36
  import { anyPositionToVector3 as O } from "../shared-utils/positionToVector3.js";
37
+ import "../Sculpt/utils/Modules/Global.js";
37
38
  import "../shared-utils/three/THREESphere.js";
38
39
  import "animejs";
39
40
  import { uuid as A } from "../shared-utils/uuid.js";
@@ -50,6 +51,77 @@ import "../shared-utils/five/getFiveModel.js";
50
51
  import "../shared-utils/url/absoluteUrl.js";
51
52
  import "../shared-utils/equal.js";
52
53
  import "../shared-utils/isTruelyObject.js";
54
+ import "../Sculpt/utils/Modules/Cursor.js";
55
+ import "../Object3DHelperPlugin/Controller.js";
56
+ import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
57
+ import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
58
+ import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
59
+ import "../shared-utils/three/IObject3D.js";
60
+ import "../shared-utils/three/boundingBox.js";
61
+ import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
62
+ import "../shared-utils/Object3DHelper/utils/direction.js";
63
+ import "../shared-utils/Object3DHelper/Constants/color.js";
64
+ import "../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
65
+ import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
66
+ import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
67
+ import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
68
+ import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
69
+ import "../CSS3DRenderPlugin/utils/even.js";
70
+ import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
71
+ import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
72
+ import "../shared-utils/three/centerPoint.js";
73
+ import "../shared-utils/three/getObjectVisible.js";
74
+ import "../shared-utils/isNil.js";
75
+ import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
76
+ import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
77
+ import "../shared-utils/util.js";
78
+ import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
79
+ import "../shared-utils/Object3DHelper/Helper/RotateHelper.js";
80
+ import "../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
81
+ import "../shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
82
+ import "../shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
83
+ import "../shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
84
+ import "../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
85
+ import "../shared-utils/Object3DHelper/Controller/MoveController.js";
86
+ import "../shared-utils/Object3DHelper/Base/BaseController.js";
87
+ import "../shared-utils/threex/domevents/index.js";
88
+ import "../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
89
+ import "../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
90
+ import "../Sculpt/utils/three/rayOnLine.js";
91
+ import "../Object3DHelperPlugin/FiveControllerWrapper.js";
92
+ import "../shared-utils/Object3DHelper/index.js";
93
+ import "../shared-utils/Object3DHelper/Controller/RotateController.js";
94
+ import "../shared-utils/math/rad2Deg.js";
95
+ import "../shared-utils/math/deg2Rad.js";
96
+ import "../shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
97
+ import "../shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
98
+ import "../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
99
+ import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
100
+ import "../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
101
+ import "../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
102
+ import "../shared-utils/Object3DHelper/Controller/ScaleController.js";
103
+ import "../shared-utils/five/fiveModelLoad.js";
104
+ import "../shared-utils/five/FiveDomEvents.js";
105
+ import "../shared-utils/five/calculateThreeMouse.js";
106
+ import "../shared-utils/three/THREERaycaster.js";
107
+ import "../shared-utils/three/PointSelector/index.js";
108
+ import "../shared-utils/three/PointSelector/utils/PointSelectorHelper.js";
109
+ import "../shared-utils/three/Magnifier.js";
110
+ import "../shared-utils/three/PointSelector/utils/PointHelper.js";
111
+ import "../shared-utils/three/Assets/index.js";
112
+ import "../shared-utils/three/PointSelector/utils/html.js";
113
+ import "../shared-utils/five/initialCSS3DRender.js";
114
+ import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
115
+ import "../Sculpt/Meshes/Line.js";
116
+ import "../Sculpt/typings/style.js";
117
+ import "../shared-utils/five/FiveLine.js";
118
+ import "../shared-utils/tag.js";
119
+ import "../shared-utils/five/vector3ToScreen.js";
120
+ import "../Sculpt/utils/removeAllTag.js";
121
+ import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
122
+ import "../shared-utils/isTouchDevice.js";
123
+ import "../shared-utils/five/getPosition.js";
124
+ import "../shared-utils/five/getRaycasterByNdcPosition.js";
53
125
  import "../shared-utils/vectorToCoordinate.js";
54
126
  import "../shared-utils/formatRad.js";
55
127
  import "../GuideLinePlugin/Controller.js";
@@ -68,8 +140,6 @@ import "../vendor/gl-vec2/dot.js";
68
140
  import "../shared-utils/math/intersecting.js";
69
141
  import "../shared-utils/five/mode.js";
70
142
  import "../shared-utils/three/blink.js";
71
- import "../shared-utils/util.js";
72
- import "../shared-utils/isNil.js";
73
143
  import "../shared-utils/animationFrame/BetterTween.js";
74
144
  import "../shared-utils/animationFrame/index.js";
75
145
  import "../shared-utils/three/loadTexture.js";
@@ -155,7 +225,6 @@ import "../shared-utils/three/GLTFLoader.js";
155
225
  import "@realsee/five/gltf-loader";
156
226
  import "../PanoTagPlugin/utils/planeNormal.js";
157
227
  import "../PanoTagPlugin/utils/model/mediaPlane.js";
158
- import "../shared-utils/three/centerPoint.js";
159
228
  import "../shared-utils/three/Quadrangle.js";
160
229
  import "../shared-utils/math/pointsIsRectangle.js";
161
230
  import "../shared-utils/three/loadVideoTexture.js";
@@ -183,22 +252,6 @@ import "../PanoTagPlugin/utils/normalPositionToPositions.js";
183
252
  import "../vendor/svelte/store/index.js";
184
253
  import "../CSS3DRenderPlugin/index.js";
185
254
  import "../CSS3DRenderPlugin/Controller.js";
186
- import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
187
- import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
188
- import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
189
- import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
190
- import "../CSS3DRenderPlugin/utils/even.js";
191
- import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
192
- import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
193
- import "../shared-utils/three/getObjectVisible.js";
194
- import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
195
- import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
196
- import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
197
- import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
198
- import "../shared-utils/five/fiveModelLoad.js";
199
- import "../shared-utils/five/FiveDomEvents.js";
200
- import "../shared-utils/five/calculateThreeMouse.js";
201
- import "../shared-utils/three/THREERaycaster.js";
202
255
  import "../PanoTagPlugin/utils/DebugUtil.js";
203
256
  import "../PanoTagPlugin/utils/addDebugPoints.js";
204
257
  import "../PanoTagPlugin/controller/Tag/PointTag.js";
@@ -218,7 +271,7 @@ import "./utils/coordinatesAngle.js";
218
271
  import "./utils/coordinatesToVector.js";
219
272
  import "./utils/safeCall.js";
220
273
  import "../shared-utils/five/fiveLoaded.js";
221
- class fo extends z {
274
+ class fe extends z {
222
275
  constructor(t, r) {
223
276
  var h;
224
277
  super(t, r);
@@ -326,5 +379,5 @@ class fo extends z {
326
379
  }
327
380
  }
328
381
  export {
329
- fo as default
382
+ fe as default
330
383
  };