@realsee/dnalogel 3.47.13 → 3.47.15

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