@realsee/dnalogel 3.45.0 → 3.46.0

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 (96) hide show
  1. package/CHANGELOG.md +3 -0
  2. package/dist/Sculpt/Meshes/Line.d.ts +6 -1
  3. package/dist/index.cjs.js +53 -53
  4. package/dist/index.js +29609 -29576
  5. package/dist/index.umd.js +49 -49
  6. package/dist/shared-utils/tag.d.ts +6 -3
  7. package/libs/AreaMakerPlugin/Controller.js +150 -78
  8. package/libs/AreaMakerPlugin/index.js +76 -4
  9. package/libs/AreaMakerPlugin/utils/Item.js +190 -111
  10. package/libs/CSS3DRenderPlugin/Controller.js +89 -29
  11. package/libs/CSS3DRenderPlugin/index.js +75 -15
  12. package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +132 -58
  13. package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +181 -116
  14. package/libs/CruisePlugin/BaseController.js +121 -49
  15. package/libs/CruisePlugin/Move.js +73 -21
  16. package/libs/CruisePlugin/Work.js +98 -46
  17. package/libs/CruisePlugin/index.js +79 -27
  18. package/libs/CurrentPanoImagePlugin/Controller.js +176 -104
  19. package/libs/CurrentPanoImagePlugin/index.js +76 -4
  20. package/libs/GuideLinePlugin/Controller.js +82 -30
  21. package/libs/GuideLinePlugin/GuideLineItem.js +82 -30
  22. package/libs/GuideLinePlugin/GuideLineModeItem/index.js +3 -2
  23. package/libs/GuideLinePlugin/GuideLineModeItem.js +81 -29
  24. package/libs/GuideLinePlugin/index.js +79 -27
  25. package/libs/ModelMakerPlugin/Controller.js +139 -82
  26. package/libs/ModelMakerPlugin/index.js +75 -18
  27. package/libs/ModelTVVideoPlugin/Plugin.js +117 -57
  28. package/libs/ModelTVVideoPlugin/index.js +68 -8
  29. package/libs/Object3DHelperPlugin/Controller.js +54 -31
  30. package/libs/Object3DHelperPlugin/index.js +35 -13
  31. package/libs/PanoCompassPlugin/Controller.js +97 -42
  32. package/libs/PanoCompassPlugin/index.js +71 -16
  33. package/libs/PanoDoorLabelPlugin/BaseController.js +98 -26
  34. package/libs/PanoDoorLabelPlugin/Controller.js +187 -115
  35. package/libs/PanoDoorLabelPlugin/index.js +76 -4
  36. package/libs/PanoMeasurePlugin/Components/Controller0.js +140 -88
  37. package/libs/PanoMeasurePlugin/Components/Controller1.js +178 -126
  38. package/libs/PanoMeasurePlugin/Controller/EditController.js +124 -72
  39. package/libs/PanoMeasurePlugin/Controller/WatchController.js +167 -92
  40. package/libs/PanoMeasurePlugin/Controller/index.js +109 -64
  41. package/libs/PanoMeasurePlugin/Model/area.js +114 -38
  42. package/libs/PanoMeasurePlugin/Modules/Magnifier.js +78 -0
  43. package/libs/PanoMeasurePlugin/Modules/UIController/index.js +97 -45
  44. package/libs/PanoMeasurePlugin/index.js +76 -31
  45. package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +98 -20
  46. package/libs/PanoSpatialTagPlugin/Plugin.js +210 -150
  47. package/libs/PanoSpatialTagPlugin/index.js +66 -6
  48. package/libs/PanoTagPlugin/Components/Common/TagPoint.js +133 -53
  49. package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +295 -216
  50. package/libs/PanoTagPlugin/Components/Tag/index.js +257 -187
  51. package/libs/PanoTagPlugin/Components/TagContainer.js +157 -87
  52. package/libs/PanoTagPlugin/Components/TagItem.js +144 -74
  53. package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +73 -3
  54. package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +109 -39
  55. package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +105 -35
  56. package/libs/PanoTagPlugin/controller/Tag/PointTag.js +113 -43
  57. package/libs/PanoTagPlugin/controller/TagRender.js +132 -80
  58. package/libs/PanoTagPlugin/controller/TagUtil.js +136 -84
  59. package/libs/PanoTagPlugin/controller/index.js +113 -61
  60. package/libs/PanoTagPlugin/index.js +89 -37
  61. package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +121 -41
  62. package/libs/PanoVideoPlugin/Controller.js +137 -65
  63. package/libs/PanoVideoPlugin/VideoMeshController.js +149 -69
  64. package/libs/PanoVideoPlugin/index.js +82 -10
  65. package/libs/PipelinePlugin/Controller.js +199 -128
  66. package/libs/PipelinePlugin/index.js +76 -5
  67. package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +102 -22
  68. package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +95 -15
  69. package/libs/PipelinePlugin/utils/Objects/Pipe.js +136 -56
  70. package/libs/Sculpt/Meshes/Box.js +6 -5
  71. package/libs/Sculpt/Meshes/Cylinder.js +7 -6
  72. package/libs/Sculpt/Meshes/Line.d.ts +6 -1
  73. package/libs/Sculpt/Meshes/Line.js +76 -56
  74. package/libs/Sculpt/Meshes/Point.js +6 -5
  75. package/libs/Sculpt/Meshes/Polyline.js +5 -4
  76. package/libs/Sculpt/Meshes/Rectangle.js +3 -2
  77. package/libs/Sculpt/Objects/Line/Editor.js +11 -10
  78. package/libs/Sculpt/utils/three/ColoredMesh.js +14 -13
  79. package/libs/base/BasePlugin.js +14 -13
  80. package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +128 -59
  81. package/libs/floorplan/MapviewFloorplanPlugin/index.js +75 -6
  82. package/libs/floorplan/ModelFloorplanPlugin/Controller.js +129 -59
  83. package/libs/floorplan/ModelFloorplanPlugin/index.js +75 -5
  84. package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +158 -86
  85. package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +76 -4
  86. package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +151 -81
  87. package/libs/floorplan/TopviewFloorplanPlugin/index.js +75 -5
  88. package/libs/floorplan/index.js +1 -0
  89. package/libs/index.js +67 -67
  90. package/libs/shared-utils/five/index.js +3 -2
  91. package/libs/shared-utils/five/lookObject.js +3 -2
  92. package/libs/shared-utils/logger.js +1 -1
  93. package/libs/shared-utils/tag.d.ts +6 -3
  94. package/libs/shared-utils/tag.js +38 -24
  95. package/libs/shared-utils/three/index.js +1 -0
  96. 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,118 @@ 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 "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
115
+ import "../shared-utils/isTouchDevice.js";
116
+ import "../shared-utils/five/getPosition.js";
117
+ import "../shared-utils/five/getRaycasterByNdcPosition.js";
46
118
  import "../shared-utils/isTruelyObject.js";
47
- const b = "CruisePlugin", l = `${b}`, F = (a) => `${l}--${a}`;
48
- class H extends y {
119
+ const g = "CruisePlugin", d = `${g}`, ot = (r) => `${d}--${r}`;
120
+ class pt extends y {
49
121
  constructor(e, t) {
50
122
  super(e, t);
51
- d(this, "state", {
123
+ o(this, "state", {
52
124
  visible: !0,
53
125
  enabled: !0,
54
126
  disposed: !1,
55
127
  playing: !1,
56
128
  speed: 1
57
129
  });
58
- d(this, "data");
59
- d(this, "config");
60
- d(this, "pauseDataMap", /* @__PURE__ */ new Map());
61
- d(this, "privateState", {
130
+ o(this, "data");
131
+ o(this, "config");
132
+ o(this, "pauseDataMap", /* @__PURE__ */ new Map());
133
+ o(this, "privateState", {
62
134
  playing: !1,
63
135
  broke: !1,
64
136
  modeChanging: !1
65
137
  });
66
- d(this, "GuideLine");
67
- d(this, "disposedErrorLog", () => {
68
- console.error(`${l} is disposed`);
138
+ o(this, "GuideLine");
139
+ o(this, "disposedErrorLog", () => {
140
+ console.error(`${d} is disposed`);
69
141
  });
70
- d(this, "disableWarnLog", () => {
71
- console.warn(`${l} is disabled`);
142
+ o(this, "disableWarnLog", () => {
143
+ console.warn(`${d} is disabled`);
72
144
  });
73
- d(this, "disableErrorLog", () => {
74
- console.error(`${l} is disabled`);
145
+ o(this, "disableErrorLog", () => {
146
+ console.error(`${d} is disabled`);
75
147
  });
76
- this.config = t, Object.assign(window, { [`__${b}_DEBUG__`]: this });
148
+ this.config = t, Object.assign(window, { [`__${g}_DEBUG__`]: this });
77
149
  }
78
150
  /**
79
151
  * @description Play | Continue play. if have been paused, continue play from the pause position; if playing, do nothing
@@ -91,7 +163,7 @@ class H extends y {
91
163
  * @description Show guide line
92
164
  */
93
165
  show(e) {
94
- return f(this, null, function* () {
166
+ return n(this, null, function* () {
95
167
  this.setState({ visible: !0 }, e);
96
168
  });
97
169
  }
@@ -99,7 +171,7 @@ class H extends y {
99
171
  * @description Hide guide line
100
172
  */
101
173
  hide(e) {
102
- return f(this, null, function* () {
174
+ return n(this, null, function* () {
103
175
  this.setState({ visible: !1 }, e);
104
176
  });
105
177
  }
@@ -125,13 +197,13 @@ class H extends y {
125
197
  * @description Set state
126
198
  */
127
199
  setState(e, t) {
128
- var r;
200
+ var a;
129
201
  if (this.state.disposed)
130
202
  return this.disposedErrorLog();
131
203
  if (!this.state.enabled && e.enabled !== !0 && e.disposed !== !0)
132
204
  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 });
205
+ const i = f({}, this.state);
206
+ 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
207
  }
136
208
  /**
137
209
  * @description Clear pause data
@@ -150,12 +222,12 @@ class H extends y {
150
222
  ), e ? this.handlePlay(t) : this.handlePause(t), this.state.playing = e;
151
223
  }
152
224
  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;
225
+ var i, a;
226
+ 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
227
  }
156
228
  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;
229
+ var i, a;
230
+ 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
231
  }
160
232
  /**
161
233
  * @description: listen interupted by five gesture
@@ -163,8 +235,8 @@ class H extends y {
163
235
  addInterruptListener(e) {
164
236
  const t = () => {
165
237
  this.privateState.modeChanging || e();
166
- }, i = (r) => {
167
- r !== "mouseMove" && (e(), this.five.off("gesture", i));
238
+ }, i = (a) => {
239
+ a !== "mouseMove" && (e(), this.five.off("gesture", i));
168
240
  };
169
241
  return this.five.on("gesture", i), this.five.once("wantsChangeMode", t), () => {
170
242
  this.five.off("gesture", i), this.five.off("wantsChangeMode", t);
@@ -220,6 +292,6 @@ class H extends y {
220
292
  }
221
293
  }
222
294
  export {
223
- H as default,
224
- F as pluginFlag
295
+ pt as default,
296
+ ot as pluginFlag
225
297
  };
@@ -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,76 @@ 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 "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
121
+ import "../shared-utils/isTouchDevice.js";
122
+ import "../shared-utils/five/getPosition.js";
123
+ import "../shared-utils/five/getRaycasterByNdcPosition.js";
53
124
  import "../shared-utils/vectorToCoordinate.js";
54
125
  import "../shared-utils/formatRad.js";
55
126
  import "../GuideLinePlugin/Controller.js";
@@ -68,8 +139,6 @@ import "../vendor/gl-vec2/dot.js";
68
139
  import "../shared-utils/math/intersecting.js";
69
140
  import "../shared-utils/five/mode.js";
70
141
  import "../shared-utils/three/blink.js";
71
- import "../shared-utils/util.js";
72
- import "../shared-utils/isNil.js";
73
142
  import "../shared-utils/animationFrame/BetterTween.js";
74
143
  import "../shared-utils/animationFrame/index.js";
75
144
  import "../shared-utils/three/loadTexture.js";
@@ -155,7 +224,6 @@ import "../shared-utils/three/GLTFLoader.js";
155
224
  import "@realsee/five/gltf-loader";
156
225
  import "../PanoTagPlugin/utils/planeNormal.js";
157
226
  import "../PanoTagPlugin/utils/model/mediaPlane.js";
158
- import "../shared-utils/three/centerPoint.js";
159
227
  import "../shared-utils/three/Quadrangle.js";
160
228
  import "../shared-utils/math/pointsIsRectangle.js";
161
229
  import "../shared-utils/three/loadVideoTexture.js";
@@ -183,22 +251,6 @@ import "../PanoTagPlugin/utils/normalPositionToPositions.js";
183
251
  import "../vendor/svelte/store/index.js";
184
252
  import "../CSS3DRenderPlugin/index.js";
185
253
  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
254
  import "../PanoTagPlugin/utils/DebugUtil.js";
203
255
  import "../PanoTagPlugin/utils/addDebugPoints.js";
204
256
  import "../PanoTagPlugin/controller/Tag/PointTag.js";
@@ -218,7 +270,7 @@ import "./utils/coordinatesAngle.js";
218
270
  import "./utils/coordinatesToVector.js";
219
271
  import "./utils/safeCall.js";
220
272
  import "../shared-utils/five/fiveLoaded.js";
221
- class fo extends z {
273
+ class he extends z {
222
274
  constructor(t, r) {
223
275
  var h;
224
276
  super(t, r);
@@ -326,5 +378,5 @@ class fo extends z {
326
378
  }
327
379
  }
328
380
  export {
329
- fo as default
381
+ he as default
330
382
  };