@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.
- package/CHANGELOG.md +6 -0
- package/dist/Sculpt/Meshes/Line.d.ts +6 -1
- package/dist/Sculpt/utils/removeAllTag.d.ts +2 -0
- package/dist/index.cjs.js +53 -53
- package/dist/index.js +29600 -29557
- package/dist/index.umd.js +49 -49
- package/dist/shared-utils/tag.d.ts +6 -3
- package/libs/AreaMakerPlugin/Controller.js +151 -78
- package/libs/AreaMakerPlugin/index.js +77 -4
- package/libs/AreaMakerPlugin/utils/Item.js +191 -111
- package/libs/CSS3DRenderPlugin/Controller.js +90 -29
- package/libs/CSS3DRenderPlugin/index.js +76 -15
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +133 -58
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +182 -116
- package/libs/CruisePlugin/BaseController.js +122 -49
- package/libs/CruisePlugin/Move.js +74 -21
- package/libs/CruisePlugin/Work.js +99 -46
- package/libs/CruisePlugin/index.js +80 -27
- package/libs/CurrentPanoImagePlugin/Controller.js +177 -104
- package/libs/CurrentPanoImagePlugin/index.js +77 -4
- package/libs/GuideLinePlugin/Controller.js +79 -26
- package/libs/GuideLinePlugin/GuideLineItem.js +83 -30
- package/libs/GuideLinePlugin/GuideLineModeItem/index.js +3 -2
- package/libs/GuideLinePlugin/GuideLineModeItem.js +82 -29
- package/libs/GuideLinePlugin/index.js +80 -27
- package/libs/ModelMakerPlugin/Controller.js +140 -82
- package/libs/ModelMakerPlugin/index.js +76 -18
- package/libs/ModelTVVideoPlugin/Plugin.js +118 -57
- package/libs/ModelTVVideoPlugin/index.js +69 -8
- package/libs/Object3DHelperPlugin/Controller.js +67 -43
- package/libs/Object3DHelperPlugin/index.js +36 -13
- package/libs/PanoCompassPlugin/Controller.js +98 -42
- package/libs/PanoCompassPlugin/index.js +72 -16
- package/libs/PanoDoorLabelPlugin/BaseController.js +99 -26
- package/libs/PanoDoorLabelPlugin/Controller.js +188 -115
- package/libs/PanoDoorLabelPlugin/index.js +77 -4
- package/libs/PanoMeasurePlugin/Components/Controller0.js +141 -88
- package/libs/PanoMeasurePlugin/Components/Controller1.js +179 -126
- package/libs/PanoMeasurePlugin/Controller/EditController.js +125 -72
- package/libs/PanoMeasurePlugin/Controller/WatchController.js +168 -92
- package/libs/PanoMeasurePlugin/Controller/index.js +110 -64
- package/libs/PanoMeasurePlugin/Model/area.js +115 -38
- package/libs/PanoMeasurePlugin/Modules/Magnifier.js +79 -0
- package/libs/PanoMeasurePlugin/Modules/UIController/index.js +98 -45
- package/libs/PanoMeasurePlugin/index.js +77 -31
- package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +99 -20
- package/libs/PanoSpatialTagPlugin/Plugin.js +211 -150
- package/libs/PanoSpatialTagPlugin/index.js +67 -6
- package/libs/PanoTagPlugin/Components/Common/TagPoint.js +149 -68
- package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +296 -216
- package/libs/PanoTagPlugin/Components/Tag/index.js +258 -187
- package/libs/PanoTagPlugin/Components/TagContainer.js +158 -87
- package/libs/PanoTagPlugin/Components/TagItem.js +145 -74
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +133 -62
- package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +110 -39
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +106 -35
- package/libs/PanoTagPlugin/controller/Tag/PointTag.js +114 -43
- package/libs/PanoTagPlugin/controller/TagRender.js +133 -80
- package/libs/PanoTagPlugin/controller/TagUtil.js +137 -84
- package/libs/PanoTagPlugin/controller/index.js +114 -61
- package/libs/PanoTagPlugin/index.js +90 -37
- package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +122 -41
- package/libs/PanoVideoPlugin/Controller.js +138 -65
- package/libs/PanoVideoPlugin/VideoMeshController.js +150 -69
- package/libs/PanoVideoPlugin/index.js +83 -10
- package/libs/PipelinePlugin/Controller.js +200 -128
- package/libs/PipelinePlugin/index.js +77 -5
- package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +103 -22
- package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +96 -15
- package/libs/PipelinePlugin/utils/Objects/Pipe.js +137 -56
- package/libs/Sculpt/Meshes/Box.js +6 -5
- package/libs/Sculpt/Meshes/Cylinder.js +7 -6
- package/libs/Sculpt/Meshes/Line.d.ts +6 -1
- package/libs/Sculpt/Meshes/Line.js +80 -57
- package/libs/Sculpt/Meshes/Point.js +6 -5
- package/libs/Sculpt/Meshes/Polyline.js +5 -4
- package/libs/Sculpt/Meshes/Rectangle.js +3 -2
- package/libs/Sculpt/Objects/Base/index.js +20 -17
- package/libs/Sculpt/Objects/Line/Editor.js +11 -10
- package/libs/Sculpt/utils/removeAllTag.d.ts +2 -0
- package/libs/Sculpt/utils/removeAllTag.js +10 -0
- package/libs/Sculpt/utils/three/ColoredMesh.js +14 -13
- package/libs/base/BasePlugin.js +14 -13
- package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +129 -59
- package/libs/floorplan/MapviewFloorplanPlugin/index.js +76 -6
- package/libs/floorplan/ModelFloorplanPlugin/Controller.js +130 -59
- package/libs/floorplan/ModelFloorplanPlugin/index.js +76 -5
- package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +159 -86
- package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +77 -4
- package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +152 -81
- package/libs/floorplan/TopviewFloorplanPlugin/index.js +76 -5
- package/libs/floorplan/index.js +1 -0
- package/libs/index.js +193 -192
- package/libs/shared-utils/five/index.js +3 -2
- package/libs/shared-utils/five/lookObject.js +3 -2
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/tag.d.ts +6 -3
- package/libs/shared-utils/tag.js +38 -24
- package/libs/shared-utils/three/index.js +1 -0
- package/package.json +1 -1
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
var T = Object.defineProperty;
|
|
2
2
|
var G = Object.getOwnPropertySymbols;
|
|
3
3
|
var k = Object.prototype.hasOwnProperty, x = Object.prototype.propertyIsEnumerable;
|
|
4
|
-
var c = (s,
|
|
5
|
-
for (var t in
|
|
6
|
-
k.call(
|
|
4
|
+
var c = (s, e, t) => e in s ? T(s, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : s[e] = t, f = (s, e) => {
|
|
5
|
+
for (var t in e || (e = {}))
|
|
6
|
+
k.call(e, t) && c(s, t, e[t]);
|
|
7
7
|
if (G)
|
|
8
|
-
for (var t of G(
|
|
9
|
-
x.call(
|
|
8
|
+
for (var t of G(e))
|
|
9
|
+
x.call(e, t) && c(s, t, e[t]);
|
|
10
10
|
return s;
|
|
11
11
|
};
|
|
12
|
-
var h = (s,
|
|
13
|
-
var u = (s,
|
|
12
|
+
var h = (s, e, t) => (c(s, typeof e != "symbol" ? e + "" : e, t), t);
|
|
13
|
+
var u = (s, e, t) => new Promise((i, a) => {
|
|
14
14
|
var p = (m) => {
|
|
15
15
|
try {
|
|
16
16
|
r(t.next(m));
|
|
17
17
|
} catch (n) {
|
|
18
18
|
a(n);
|
|
19
19
|
}
|
|
20
|
-
},
|
|
20
|
+
}, o = (m) => {
|
|
21
21
|
try {
|
|
22
22
|
r(t.throw(m));
|
|
23
23
|
} catch (n) {
|
|
24
24
|
a(n);
|
|
25
25
|
}
|
|
26
|
-
}, r = (m) => m.done ? i(m.value) : Promise.resolve(m.value).then(p,
|
|
27
|
-
r((t = t.apply(s,
|
|
26
|
+
}, r = (m) => m.done ? i(m.value) : Promise.resolve(m.value).then(p, o);
|
|
27
|
+
r((t = t.apply(s, e)).next());
|
|
28
28
|
});
|
|
29
29
|
import { Controller as N } from "../base/BasePluginWithData.js";
|
|
30
30
|
import { equal as $ } from "../shared-utils/equal.js";
|
|
@@ -35,6 +35,7 @@ import * as V from "three";
|
|
|
35
35
|
import "hammerjs";
|
|
36
36
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
37
37
|
import "@realsee/five/line";
|
|
38
|
+
import "../Sculpt/utils/Modules/Global.js";
|
|
38
39
|
import "../shared-utils/three/THREESphere.js";
|
|
39
40
|
import "animejs";
|
|
40
41
|
import { uuid as H } from "../shared-utils/uuid.js";
|
|
@@ -188,13 +189,65 @@ import "../CSS3DRenderPlugin/utils/even.js";
|
|
|
188
189
|
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
189
190
|
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
190
191
|
import "../shared-utils/three/getObjectVisible.js";
|
|
192
|
+
import "../Sculpt/utils/Modules/Cursor.js";
|
|
193
|
+
import "../Object3DHelperPlugin/Controller.js";
|
|
194
|
+
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
195
|
+
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
196
|
+
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
197
|
+
import "../shared-utils/three/IObject3D.js";
|
|
198
|
+
import "../shared-utils/three/boundingBox.js";
|
|
199
|
+
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
200
|
+
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
201
|
+
import "../shared-utils/Object3DHelper/Constants/color.js";
|
|
202
|
+
import "../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
203
|
+
import "../shared-utils/Object3DHelper/Helper/RotateHelper.js";
|
|
204
|
+
import "../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
|
|
205
|
+
import "../shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
|
|
206
|
+
import "../shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
|
|
207
|
+
import "../shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
|
|
208
|
+
import "../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
209
|
+
import "../shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
210
|
+
import "../shared-utils/Object3DHelper/Base/BaseController.js";
|
|
211
|
+
import "../shared-utils/threex/domevents/index.js";
|
|
212
|
+
import "../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
213
|
+
import "../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
214
|
+
import "../Sculpt/utils/three/rayOnLine.js";
|
|
215
|
+
import "../Object3DHelperPlugin/FiveControllerWrapper.js";
|
|
216
|
+
import "../shared-utils/Object3DHelper/index.js";
|
|
217
|
+
import "../shared-utils/Object3DHelper/Controller/RotateController.js";
|
|
218
|
+
import "../shared-utils/math/rad2Deg.js";
|
|
219
|
+
import "../shared-utils/math/deg2Rad.js";
|
|
220
|
+
import "../shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
|
|
221
|
+
import "../shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
|
|
222
|
+
import "../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
|
|
223
|
+
import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
224
|
+
import "../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
|
|
225
|
+
import "../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
|
|
226
|
+
import "../shared-utils/Object3DHelper/Controller/ScaleController.js";
|
|
191
227
|
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
192
228
|
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
193
229
|
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
194
|
-
import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
195
230
|
import "../shared-utils/five/FiveDomEvents.js";
|
|
196
231
|
import "../shared-utils/five/calculateThreeMouse.js";
|
|
197
232
|
import "../shared-utils/three/THREERaycaster.js";
|
|
233
|
+
import "../shared-utils/three/PointSelector/index.js";
|
|
234
|
+
import "../shared-utils/three/PointSelector/utils/PointSelectorHelper.js";
|
|
235
|
+
import "../shared-utils/three/Magnifier.js";
|
|
236
|
+
import "../shared-utils/three/PointSelector/utils/PointHelper.js";
|
|
237
|
+
import "../shared-utils/three/Assets/index.js";
|
|
238
|
+
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
239
|
+
import "../shared-utils/five/initialCSS3DRender.js";
|
|
240
|
+
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
241
|
+
import "../Sculpt/Meshes/Line.js";
|
|
242
|
+
import "../Sculpt/typings/style.js";
|
|
243
|
+
import "../shared-utils/five/FiveLine.js";
|
|
244
|
+
import "../shared-utils/tag.js";
|
|
245
|
+
import "../shared-utils/five/vector3ToScreen.js";
|
|
246
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
247
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
248
|
+
import "../shared-utils/isTouchDevice.js";
|
|
249
|
+
import "../shared-utils/five/getPosition.js";
|
|
250
|
+
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
198
251
|
import "../PanoTagPlugin/utils/DebugUtil.js";
|
|
199
252
|
import "../PanoTagPlugin/utils/addDebugPoints.js";
|
|
200
253
|
import "../PanoTagPlugin/controller/Tag/PointTag.js";
|
|
@@ -248,24 +301,24 @@ class ge extends N {
|
|
|
248
301
|
load(t, i, a = !0) {
|
|
249
302
|
return u(this, null, function* () {
|
|
250
303
|
var v, _, E, I, w, D, y, L;
|
|
251
|
-
const p = this.data ? JSON.parse(JSON.stringify(this.data)) : void 0,
|
|
252
|
-
this.hooks.emit("dataChange",
|
|
253
|
-
const r =
|
|
304
|
+
const p = this.data ? JSON.parse(JSON.stringify(this.data)) : void 0, o = yield this.formatData(t);
|
|
305
|
+
this.hooks.emit("dataChange", o, p), this.data = o;
|
|
306
|
+
const r = o.config, n = {
|
|
254
307
|
panorama_style: {
|
|
255
|
-
visible: !!(!
|
|
308
|
+
visible: !!(!o.lines && o.routes),
|
|
256
309
|
unit_length: (v = r == null ? void 0 : r.unitHeight) != null ? v : 0.4,
|
|
257
310
|
width: (_ = r == null ? void 0 : r.unitWidth) != null ? _ : 0.6,
|
|
258
311
|
texture: { url: (E = r == null ? void 0 : r.arrowTextureUrl) != null ? E : this.staticPrefix + "/release/web/arrow-white.5c2c79a5.png" },
|
|
259
312
|
use_auto_depthtest: (I = this.config.useAutoDepthTest) != null ? I : !1,
|
|
260
313
|
auto_depth_test_effect_distance: this.config.autoDepthTestEffectDistance
|
|
261
314
|
}
|
|
262
|
-
}, d = (D = (w =
|
|
315
|
+
}, d = (D = (w = o.routes) == null ? void 0 : w.map((l) => {
|
|
263
316
|
var A;
|
|
264
317
|
return S({}, n, { id: (A = l.id) != null ? A : H(), pano_group: l.panoIndexList });
|
|
265
|
-
})) != null ? D : [], M = (L = (y =
|
|
318
|
+
})) != null ? D : [], M = (L = (y = o.lines) == null ? void 0 : y.map((l) => S({}, n, l))) != null ? L : [], O = [...d, ...M];
|
|
266
319
|
yield U(this.five), this.clear(), O.forEach((l) => {
|
|
267
320
|
this.addGuideLineItem(l);
|
|
268
|
-
}), this.updateTagsEnable(), this.handleVisible(this.state.visible), this.handleEnable(this.state.enabled), i && this.setState(i, { userAction: a }), this.hooks.emit("dataLoaded",
|
|
321
|
+
}), this.updateTagsEnable(), this.handleVisible(this.state.visible), this.handleEnable(this.state.enabled), i && this.setState(i, { userAction: a }), this.hooks.emit("dataLoaded", o), console.debug(`${g} loaded`, o);
|
|
269
322
|
});
|
|
270
323
|
}
|
|
271
324
|
formatData(t) {
|
|
@@ -322,22 +375,22 @@ class ge extends N {
|
|
|
322
375
|
/** 全量更新 tag */
|
|
323
376
|
updateTagsEnable() {
|
|
324
377
|
const t = [];
|
|
325
|
-
function i(
|
|
326
|
-
return Array.isArray(
|
|
378
|
+
function i(o) {
|
|
379
|
+
return Array.isArray(o) && o.every((r) => typeof r == "number");
|
|
327
380
|
}
|
|
328
|
-
function a(
|
|
329
|
-
return new V.Vector3().fromArray(
|
|
381
|
+
function a(o, r) {
|
|
382
|
+
return new V.Vector3().fromArray(o).distanceTo(new V.Vector3().fromArray(r)) < 0.01;
|
|
330
383
|
}
|
|
331
|
-
function p(
|
|
384
|
+
function p(o) {
|
|
332
385
|
var m;
|
|
333
|
-
const r = (m =
|
|
386
|
+
const r = (m = o == null ? void 0 : o.tag) == null ? void 0 : m.position;
|
|
334
387
|
return i(r) ? t.every((n) => {
|
|
335
388
|
var d;
|
|
336
389
|
return i((d = n.tag) == null ? void 0 : d.position) ? !a(r, n.tag.position) : !0;
|
|
337
390
|
}) : !1;
|
|
338
391
|
}
|
|
339
|
-
this.itemMap.forEach((
|
|
340
|
-
const r =
|
|
392
|
+
this.itemMap.forEach((o) => {
|
|
393
|
+
const r = o.modelItem.startTagContainer, m = o.modelItem.endTagContainer, n = p(r);
|
|
341
394
|
n && t.push(r), r == null || r.plugin.setState({ enabled: n }, {});
|
|
342
395
|
const d = p(m);
|
|
343
396
|
d && t.push(m), m == null || m.plugin.setState({ enabled: d }, {});
|
|
@@ -5,7 +5,7 @@ import "../shared-utils/five/changeMode.js";
|
|
|
5
5
|
import "../CruisePlugin/Move.js";
|
|
6
6
|
import "../CruisePlugin/Work.js";
|
|
7
7
|
import "../shared-utils/Subscribe.js";
|
|
8
|
-
import { GuideLineItem as
|
|
8
|
+
import { GuideLineItem as Br } from "./GuideLineItem/index.js";
|
|
9
9
|
import "three";
|
|
10
10
|
import "./utils/createLineGeometry.js";
|
|
11
11
|
import "../vendor/polyline-normals/index.js";
|
|
@@ -20,18 +20,95 @@ import "../shared-utils/five/mode.js";
|
|
|
20
20
|
import "hammerjs";
|
|
21
21
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
22
22
|
import "@realsee/five/line";
|
|
23
|
+
import "../Sculpt/utils/Modules/Global.js";
|
|
24
|
+
import "../Sculpt/utils/Modules/Cursor.js";
|
|
25
|
+
import "../Object3DHelperPlugin/Controller.js";
|
|
26
|
+
import "../base/BasePlugin.js";
|
|
23
27
|
import "../shared-utils/three/THREESphere.js";
|
|
24
|
-
import "../shared-utils/three/blink.js";
|
|
25
28
|
import "animejs";
|
|
26
|
-
import "../shared-utils/
|
|
29
|
+
import "../shared-utils/Utils/FiveUtil.js";
|
|
30
|
+
import "../shared-utils/Utils/BaseUtil.js";
|
|
31
|
+
import "../shared-utils/Utils/WorkUtil.js";
|
|
32
|
+
import "../shared-utils/five/transformPosition.js";
|
|
33
|
+
import "../shared-utils/five/getFiveModel.js";
|
|
34
|
+
import "../shared-utils/url/absoluteUrl.js";
|
|
35
|
+
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
36
|
+
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
37
|
+
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
38
|
+
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
39
|
+
import "../shared-utils/three/IObject3D.js";
|
|
40
|
+
import "../shared-utils/three/boundingBox.js";
|
|
41
|
+
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
42
|
+
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
43
|
+
import "../shared-utils/Object3DHelper/Constants/color.js";
|
|
44
|
+
import "../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
45
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
46
|
+
import "../shared-utils/positionToVector3.js";
|
|
47
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
48
|
+
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
49
|
+
import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
50
|
+
import "../CSS3DRenderPlugin/utils/even.js";
|
|
51
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
52
|
+
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
53
|
+
import "../shared-utils/three/centerPoint.js";
|
|
54
|
+
import "../shared-utils/three/getObjectVisible.js";
|
|
27
55
|
import "../shared-utils/isNil.js";
|
|
56
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
57
|
+
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
58
|
+
import "../shared-utils/util.js";
|
|
59
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
60
|
+
import "../shared-utils/Object3DHelper/Helper/RotateHelper.js";
|
|
61
|
+
import "../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
|
|
62
|
+
import "../shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
|
|
63
|
+
import "../shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
|
|
64
|
+
import "../shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
|
|
65
|
+
import "../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
66
|
+
import "../shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
67
|
+
import "../shared-utils/Object3DHelper/Base/BaseController.js";
|
|
68
|
+
import "../shared-utils/threex/domevents/index.js";
|
|
69
|
+
import "../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
70
|
+
import "../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
71
|
+
import "../Sculpt/utils/three/rayOnLine.js";
|
|
72
|
+
import "../Object3DHelperPlugin/FiveControllerWrapper.js";
|
|
73
|
+
import "../shared-utils/Object3DHelper/index.js";
|
|
74
|
+
import "../shared-utils/Object3DHelper/Controller/RotateController.js";
|
|
75
|
+
import "../shared-utils/math/rad2Deg.js";
|
|
76
|
+
import "../shared-utils/math/deg2Rad.js";
|
|
77
|
+
import "../shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
|
|
78
|
+
import "../shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
|
|
79
|
+
import "../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
|
|
80
|
+
import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
81
|
+
import "../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
|
|
82
|
+
import "../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
|
|
83
|
+
import "../shared-utils/Object3DHelper/Controller/ScaleController.js";
|
|
84
|
+
import "../shared-utils/five/fiveModelLoad.js";
|
|
85
|
+
import "../shared-utils/five/FiveDomEvents.js";
|
|
86
|
+
import "../shared-utils/five/calculateThreeMouse.js";
|
|
87
|
+
import "../shared-utils/three/THREERaycaster.js";
|
|
88
|
+
import "../shared-utils/three/PointSelector/index.js";
|
|
89
|
+
import "../shared-utils/three/PointSelector/utils/PointSelectorHelper.js";
|
|
90
|
+
import "../shared-utils/three/Magnifier.js";
|
|
91
|
+
import "../shared-utils/three/PointSelector/utils/PointHelper.js";
|
|
92
|
+
import "../shared-utils/three/Assets/index.js";
|
|
93
|
+
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
94
|
+
import "../shared-utils/five/initialCSS3DRender.js";
|
|
95
|
+
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
96
|
+
import "../Sculpt/Meshes/Line.js";
|
|
97
|
+
import "../Sculpt/typings/style.js";
|
|
98
|
+
import "../shared-utils/five/FiveLine.js";
|
|
99
|
+
import "../shared-utils/tag.js";
|
|
100
|
+
import "../shared-utils/five/vector3ToScreen.js";
|
|
101
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
102
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
103
|
+
import "../shared-utils/isTouchDevice.js";
|
|
104
|
+
import "../shared-utils/five/getPosition.js";
|
|
105
|
+
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
106
|
+
import "../shared-utils/three/blink.js";
|
|
28
107
|
import "../shared-utils/animationFrame/BetterTween.js";
|
|
29
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
30
108
|
import "../shared-utils/animationFrame/index.js";
|
|
31
109
|
import "../shared-utils/three/loadTexture.js";
|
|
32
110
|
import "../PanoTagPlugin/controller/index.js";
|
|
33
111
|
import "../vendor/object-assign-deep/objectAssignDeep.js";
|
|
34
|
-
import "../shared-utils/positionToVector3.js";
|
|
35
112
|
import "../PanoTagPlugin/utils/tag/tagCheck.js";
|
|
36
113
|
import "../PanoTagPlugin/utils/debounce.js";
|
|
37
114
|
import "../PanoTagPlugin/utils/throttle.js";
|
|
@@ -114,7 +191,6 @@ import "../shared-utils/three/GLTFLoader.js";
|
|
|
114
191
|
import "@realsee/five/gltf-loader";
|
|
115
192
|
import "../PanoTagPlugin/utils/planeNormal.js";
|
|
116
193
|
import "../PanoTagPlugin/utils/model/mediaPlane.js";
|
|
117
|
-
import "../shared-utils/three/centerPoint.js";
|
|
118
194
|
import "../shared-utils/three/Quadrangle.js";
|
|
119
195
|
import "../shared-utils/math/pointsIsRectangle.js";
|
|
120
196
|
import "../shared-utils/three/loadVideoTexture.js";
|
|
@@ -130,12 +206,7 @@ import "../PanoTagPlugin/typings/tag/TagConfig.js";
|
|
|
130
206
|
import "@realsee/five";
|
|
131
207
|
import "../shared-utils/vectorToCoordinate.js";
|
|
132
208
|
import "../shared-utils/formatRad.js";
|
|
133
|
-
import "../shared-utils/five/transformPosition.js";
|
|
134
209
|
import "../shared-utils/five/lookPoint.js";
|
|
135
|
-
import "../shared-utils/Utils/FiveUtil.js";
|
|
136
|
-
import "../shared-utils/Utils/BaseUtil.js";
|
|
137
|
-
import "../shared-utils/Utils/WorkUtil.js";
|
|
138
|
-
import "../shared-utils/five/getFiveModel.js";
|
|
139
210
|
import "../PanoTagPlugin/utils/tagPosition.js";
|
|
140
211
|
import "../PanoTagPlugin/utils/checkRange.js";
|
|
141
212
|
import "../shared-utils/url/getUrl.js";
|
|
@@ -149,24 +220,6 @@ import "../PanoTagPlugin/utils/normalPositionToPositions.js";
|
|
|
149
220
|
import "../vendor/svelte/store/index.js";
|
|
150
221
|
import "../CSS3DRenderPlugin/index.js";
|
|
151
222
|
import "../CSS3DRenderPlugin/Controller.js";
|
|
152
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
153
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
154
|
-
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
155
|
-
import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
156
|
-
import "../CSS3DRenderPlugin/utils/even.js";
|
|
157
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
158
|
-
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
159
|
-
import "../shared-utils/three/getObjectVisible.js";
|
|
160
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
161
|
-
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
162
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
163
|
-
import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
164
|
-
import "../shared-utils/url/absoluteUrl.js";
|
|
165
|
-
import "../shared-utils/five/fiveModelLoad.js";
|
|
166
|
-
import "../shared-utils/five/FiveDomEvents.js";
|
|
167
|
-
import "../shared-utils/five/calculateThreeMouse.js";
|
|
168
|
-
import "../shared-utils/three/THREERaycaster.js";
|
|
169
|
-
import "../base/BasePlugin.js";
|
|
170
223
|
import "../PanoTagPlugin/utils/DebugUtil.js";
|
|
171
224
|
import "../PanoTagPlugin/utils/addDebugPoints.js";
|
|
172
225
|
import "../PanoTagPlugin/controller/Tag/PointTag.js";
|
|
@@ -190,5 +243,5 @@ import "../CruisePlugin/utils/coordinatesToVector.js";
|
|
|
190
243
|
import "../CruisePlugin/utils/safeCall.js";
|
|
191
244
|
import "../shared-utils/five/fiveLoaded.js";
|
|
192
245
|
export {
|
|
193
|
-
|
|
246
|
+
Br as GuideLineItem
|
|
194
247
|
};
|
|
@@ -18,6 +18,7 @@ import { isPanoramaLike as L, isModelLike as S } from "../../shared-utils/five/m
|
|
|
18
18
|
import "hammerjs";
|
|
19
19
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
20
20
|
import "@realsee/five/line";
|
|
21
|
+
import "../../Sculpt/utils/Modules/Global.js";
|
|
21
22
|
import "../../shared-utils/three/THREESphere.js";
|
|
22
23
|
import { blink as O } from "../../shared-utils/three/blink.js";
|
|
23
24
|
import { notNil as C } from "../../shared-utils/isNil.js";
|
|
@@ -564,11 +565,11 @@ class R {
|
|
|
564
565
|
function H(m) {
|
|
565
566
|
return m.contentType === "Custom";
|
|
566
567
|
}
|
|
567
|
-
const
|
|
568
|
+
const he = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
568
569
|
__proto__: null,
|
|
569
570
|
GuideLineModeItem: R
|
|
570
571
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
571
572
|
export {
|
|
572
573
|
R as GuideLineModeItem,
|
|
573
|
-
|
|
574
|
+
he as GuideLineModeItem$1
|
|
574
575
|
};
|
|
@@ -5,6 +5,7 @@ import "../shared-utils/five/mode.js";
|
|
|
5
5
|
import "hammerjs";
|
|
6
6
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
7
7
|
import "@realsee/five/line";
|
|
8
|
+
import "../Sculpt/utils/Modules/Global.js";
|
|
8
9
|
import "../shared-utils/three/THREESphere.js";
|
|
9
10
|
import "../shared-utils/three/blink.js";
|
|
10
11
|
import "../shared-utils/isNil.js";
|
|
@@ -14,7 +15,7 @@ import "../PanoTagPlugin/controller/index.js";
|
|
|
14
15
|
import "./Components/Tag.js";
|
|
15
16
|
import "./utils/index.js";
|
|
16
17
|
import "../vendor/object-assign-deep/objectAssignDeep.js";
|
|
17
|
-
import { GuideLineModeItem as
|
|
18
|
+
import { GuideLineModeItem as Ir } from "./GuideLineModeItem/index.js";
|
|
18
19
|
import "../vendor/polyline-normals/index.js";
|
|
19
20
|
import "../vendor/polyline-miter-util/index.js";
|
|
20
21
|
import "../vendor/gl-vec2/add.js";
|
|
@@ -23,11 +24,88 @@ import "../vendor/gl-vec2/normalize.js";
|
|
|
23
24
|
import "../vendor/gl-vec2/subtract.js";
|
|
24
25
|
import "../vendor/gl-vec2/dot.js";
|
|
25
26
|
import "../shared-utils/math/intersecting.js";
|
|
27
|
+
import "../Sculpt/utils/Modules/Cursor.js";
|
|
28
|
+
import "../Object3DHelperPlugin/Controller.js";
|
|
29
|
+
import "../base/BasePlugin.js";
|
|
30
|
+
import "../shared-utils/Subscribe.js";
|
|
26
31
|
import "animejs";
|
|
27
|
-
import "../shared-utils/
|
|
32
|
+
import "../shared-utils/Utils/FiveUtil.js";
|
|
33
|
+
import "../shared-utils/Utils/BaseUtil.js";
|
|
34
|
+
import "../shared-utils/Utils/WorkUtil.js";
|
|
35
|
+
import "../shared-utils/five/transformPosition.js";
|
|
36
|
+
import "../shared-utils/five/getFiveModel.js";
|
|
37
|
+
import "../shared-utils/url/absoluteUrl.js";
|
|
28
38
|
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
29
|
-
import "../shared-utils/
|
|
39
|
+
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
40
|
+
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
41
|
+
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
42
|
+
import "../shared-utils/three/IObject3D.js";
|
|
43
|
+
import "../shared-utils/three/boundingBox.js";
|
|
44
|
+
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
45
|
+
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
46
|
+
import "../shared-utils/Object3DHelper/Constants/color.js";
|
|
47
|
+
import "../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
48
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
30
49
|
import "../shared-utils/positionToVector3.js";
|
|
50
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
51
|
+
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
52
|
+
import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
53
|
+
import "../CSS3DRenderPlugin/utils/even.js";
|
|
54
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
55
|
+
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
56
|
+
import "../shared-utils/three/centerPoint.js";
|
|
57
|
+
import "../shared-utils/three/getObjectVisible.js";
|
|
58
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
59
|
+
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
60
|
+
import "../shared-utils/util.js";
|
|
61
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
62
|
+
import "../shared-utils/Object3DHelper/Helper/RotateHelper.js";
|
|
63
|
+
import "../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
|
|
64
|
+
import "../shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
|
|
65
|
+
import "../shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
|
|
66
|
+
import "../shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
|
|
67
|
+
import "../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
68
|
+
import "../shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
69
|
+
import "../shared-utils/Object3DHelper/Base/BaseController.js";
|
|
70
|
+
import "../shared-utils/threex/domevents/index.js";
|
|
71
|
+
import "../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
72
|
+
import "../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
73
|
+
import "../Sculpt/utils/three/rayOnLine.js";
|
|
74
|
+
import "../Object3DHelperPlugin/FiveControllerWrapper.js";
|
|
75
|
+
import "../shared-utils/Object3DHelper/index.js";
|
|
76
|
+
import "../shared-utils/Object3DHelper/Controller/RotateController.js";
|
|
77
|
+
import "../shared-utils/math/rad2Deg.js";
|
|
78
|
+
import "../shared-utils/math/deg2Rad.js";
|
|
79
|
+
import "../shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
|
|
80
|
+
import "../shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
|
|
81
|
+
import "../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
|
|
82
|
+
import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
83
|
+
import "../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
|
|
84
|
+
import "../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
|
|
85
|
+
import "../shared-utils/Object3DHelper/Controller/ScaleController.js";
|
|
86
|
+
import "../shared-utils/five/fiveModelLoad.js";
|
|
87
|
+
import "../shared-utils/five/FiveDomEvents.js";
|
|
88
|
+
import "../shared-utils/five/calculateThreeMouse.js";
|
|
89
|
+
import "../shared-utils/three/THREERaycaster.js";
|
|
90
|
+
import "../shared-utils/three/PointSelector/index.js";
|
|
91
|
+
import "../shared-utils/three/PointSelector/utils/PointSelectorHelper.js";
|
|
92
|
+
import "../shared-utils/three/Magnifier.js";
|
|
93
|
+
import "../shared-utils/three/PointSelector/utils/PointHelper.js";
|
|
94
|
+
import "../shared-utils/three/Assets/index.js";
|
|
95
|
+
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
96
|
+
import "../shared-utils/five/initialCSS3DRender.js";
|
|
97
|
+
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
98
|
+
import "../Sculpt/Meshes/Line.js";
|
|
99
|
+
import "../Sculpt/typings/style.js";
|
|
100
|
+
import "../shared-utils/five/FiveLine.js";
|
|
101
|
+
import "../shared-utils/tag.js";
|
|
102
|
+
import "../shared-utils/five/vector3ToScreen.js";
|
|
103
|
+
import "../Sculpt/utils/removeAllTag.js";
|
|
104
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
105
|
+
import "../shared-utils/isTouchDevice.js";
|
|
106
|
+
import "../shared-utils/five/getPosition.js";
|
|
107
|
+
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
108
|
+
import "../shared-utils/animationFrame/index.js";
|
|
31
109
|
import "../PanoTagPlugin/utils/tag/tagCheck.js";
|
|
32
110
|
import "../PanoTagPlugin/utils/debounce.js";
|
|
33
111
|
import "../PanoTagPlugin/utils/throttle.js";
|
|
@@ -110,7 +188,6 @@ import "../shared-utils/three/GLTFLoader.js";
|
|
|
110
188
|
import "@realsee/five/gltf-loader";
|
|
111
189
|
import "../PanoTagPlugin/utils/planeNormal.js";
|
|
112
190
|
import "../PanoTagPlugin/utils/model/mediaPlane.js";
|
|
113
|
-
import "../shared-utils/three/centerPoint.js";
|
|
114
191
|
import "../shared-utils/three/Quadrangle.js";
|
|
115
192
|
import "../shared-utils/math/pointsIsRectangle.js";
|
|
116
193
|
import "../shared-utils/three/loadVideoTexture.js";
|
|
@@ -119,7 +196,6 @@ import "../shared-utils/three/getPositionsByObjectFit.js";
|
|
|
119
196
|
import "../shared-utils/three/FragmentTransparencyMaterial.js";
|
|
120
197
|
import "../shared-utils/three/getNormal.js";
|
|
121
198
|
import "../PanoTagPlugin/controller/Tag/BaseTag.js";
|
|
122
|
-
import "../shared-utils/Subscribe.js";
|
|
123
199
|
import "../PanoTagPlugin/utils/tag/calculateTagConfig.js";
|
|
124
200
|
import "../shared-utils/typescript/entries.js";
|
|
125
201
|
import "../PanoTagPlugin/utils/tag/adaptConfig.js";
|
|
@@ -127,12 +203,7 @@ import "../PanoTagPlugin/typings/tag/TagConfig.js";
|
|
|
127
203
|
import "@realsee/five";
|
|
128
204
|
import "../shared-utils/vectorToCoordinate.js";
|
|
129
205
|
import "../shared-utils/formatRad.js";
|
|
130
|
-
import "../shared-utils/five/transformPosition.js";
|
|
131
206
|
import "../shared-utils/five/lookPoint.js";
|
|
132
|
-
import "../shared-utils/Utils/FiveUtil.js";
|
|
133
|
-
import "../shared-utils/Utils/BaseUtil.js";
|
|
134
|
-
import "../shared-utils/Utils/WorkUtil.js";
|
|
135
|
-
import "../shared-utils/five/getFiveModel.js";
|
|
136
207
|
import "../PanoTagPlugin/utils/tagPosition.js";
|
|
137
208
|
import "../PanoTagPlugin/utils/checkRange.js";
|
|
138
209
|
import "../shared-utils/url/getUrl.js";
|
|
@@ -146,24 +217,6 @@ import "../PanoTagPlugin/utils/normalPositionToPositions.js";
|
|
|
146
217
|
import "../vendor/svelte/store/index.js";
|
|
147
218
|
import "../CSS3DRenderPlugin/index.js";
|
|
148
219
|
import "../CSS3DRenderPlugin/Controller.js";
|
|
149
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
150
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
151
|
-
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
152
|
-
import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
153
|
-
import "../CSS3DRenderPlugin/utils/even.js";
|
|
154
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
155
|
-
import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
156
|
-
import "../shared-utils/three/getObjectVisible.js";
|
|
157
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
158
|
-
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
159
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
160
|
-
import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
161
|
-
import "../shared-utils/url/absoluteUrl.js";
|
|
162
|
-
import "../shared-utils/five/fiveModelLoad.js";
|
|
163
|
-
import "../shared-utils/five/FiveDomEvents.js";
|
|
164
|
-
import "../shared-utils/five/calculateThreeMouse.js";
|
|
165
|
-
import "../shared-utils/three/THREERaycaster.js";
|
|
166
|
-
import "../base/BasePlugin.js";
|
|
167
220
|
import "../PanoTagPlugin/utils/DebugUtil.js";
|
|
168
221
|
import "../PanoTagPlugin/utils/addDebugPoints.js";
|
|
169
222
|
import "../PanoTagPlugin/controller/Tag/PointTag.js";
|
|
@@ -173,5 +226,5 @@ import "../PanoTagPlugin/Components/TagContainer.js";
|
|
|
173
226
|
import "../PanoTagPlugin/Components/TagItem.js";
|
|
174
227
|
import "../PanoTagPlugin/Components/Common/TagPoint.js";
|
|
175
228
|
export {
|
|
176
|
-
|
|
229
|
+
Ir as GuideLineModeItem
|
|
177
230
|
};
|