@realsee/dnalogel 3.44.5 → 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.
- package/CHANGELOG.md +6 -0
- package/dist/Sculpt/Meshes/Area.d.ts +1 -1
- package/dist/Sculpt/Meshes/Box.d.ts +1 -1
- package/dist/Sculpt/Meshes/Circle.d.ts +1 -1
- package/dist/Sculpt/Meshes/CircleWithEdge.d.ts +1 -1
- package/dist/Sculpt/Meshes/Line.d.ts +8 -2
- package/dist/Sculpt/Meshes/LineWithDots.d.ts +1 -1
- package/dist/Sculpt/Meshes/Point.d.ts +1 -1
- package/dist/Sculpt/Meshes/PolygonWithEdge.d.ts +1 -1
- package/dist/Sculpt/Meshes/Prism.d.ts +1 -1
- package/dist/Sculpt/Meshes/RectangleWithEdge.d.ts +3 -4
- package/dist/Sculpt/Objects/Line/Editor.d.ts +22 -0
- package/dist/Sculpt/Objects/Line/index.d.ts +33 -0
- package/dist/Sculpt/Objects/Point/index.d.ts +1 -1
- package/dist/Sculpt/Objects/Polygon/Editor.d.ts +2 -2
- package/dist/Sculpt/Objects/Polygon/index.d.ts +3 -2
- package/dist/Sculpt/Objects/Polyline/Editor.d.ts +3 -17
- package/dist/Sculpt/Objects/Polyline/index.d.ts +7 -6
- package/dist/Sculpt/index.d.ts +5 -0
- package/dist/Sculpt/typings/index.d.ts +11 -6
- package/dist/Sculpt/{utils/color.d.ts → typings/style.d.ts} +7 -0
- package/dist/Sculpt/typings/utils.type.d.ts +2 -0
- package/dist/Sculpt/utils/three/ColoredMesh.d.ts +1 -1
- package/dist/Sculpt/utils/three/rayOnLine.d.ts +3 -5
- package/dist/index.cjs.js +56 -56
- package/dist/index.js +29820 -29686
- package/dist/index.umd.js +49 -49
- package/dist/shared-utils/Utils/WorkUtil.d.ts +6 -6
- package/dist/shared-utils/tag.d.ts +6 -3
- package/libs/AreaMakerPlugin/Controller.js +150 -78
- package/libs/AreaMakerPlugin/index.js +76 -4
- package/libs/AreaMakerPlugin/utils/Item.js +190 -111
- package/libs/CSS3DRenderPlugin/Controller.js +89 -29
- package/libs/CSS3DRenderPlugin/index.js +75 -15
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +132 -58
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +181 -116
- package/libs/CruisePlugin/BaseController.js +121 -49
- package/libs/CruisePlugin/Move.js +73 -21
- package/libs/CruisePlugin/Work.js +98 -46
- package/libs/CruisePlugin/index.js +79 -27
- package/libs/CurrentPanoImagePlugin/Controller.js +176 -104
- package/libs/CurrentPanoImagePlugin/index.js +76 -4
- package/libs/GuideLinePlugin/Controller.js +82 -30
- package/libs/GuideLinePlugin/GuideLineItem.js +82 -30
- package/libs/GuideLinePlugin/GuideLineModeItem/index.js +3 -2
- package/libs/GuideLinePlugin/GuideLineModeItem.js +81 -29
- package/libs/GuideLinePlugin/index.js +79 -27
- package/libs/ModelMakerPlugin/Controller.js +140 -83
- package/libs/ModelMakerPlugin/index.js +75 -18
- package/libs/ModelTVVideoPlugin/Plugin.js +117 -57
- package/libs/ModelTVVideoPlugin/index.js +68 -8
- package/libs/Object3DHelperPlugin/Controller.js +54 -31
- package/libs/Object3DHelperPlugin/index.js +35 -13
- package/libs/PanoCompassPlugin/Controller.js +97 -42
- package/libs/PanoCompassPlugin/index.js +71 -16
- package/libs/PanoDoorLabelPlugin/BaseController.js +98 -26
- package/libs/PanoDoorLabelPlugin/Controller.js +187 -115
- package/libs/PanoDoorLabelPlugin/index.js +76 -4
- package/libs/PanoMeasurePlugin/Components/Controller0.js +141 -89
- package/libs/PanoMeasurePlugin/Components/Controller1.js +179 -127
- package/libs/PanoMeasurePlugin/Controller/EditController.js +125 -73
- package/libs/PanoMeasurePlugin/Controller/WatchController.js +167 -92
- package/libs/PanoMeasurePlugin/Controller/index.js +110 -65
- package/libs/PanoMeasurePlugin/Model/area.js +114 -38
- package/libs/PanoMeasurePlugin/Modules/Magnifier.js +78 -0
- package/libs/PanoMeasurePlugin/Modules/UIController/index.js +98 -46
- package/libs/PanoMeasurePlugin/index.js +77 -32
- package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +98 -20
- package/libs/PanoSpatialTagPlugin/Plugin.js +210 -150
- package/libs/PanoSpatialTagPlugin/index.js +66 -6
- package/libs/PanoTagPlugin/Components/Common/TagPoint.js +133 -53
- package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +295 -216
- package/libs/PanoTagPlugin/Components/Tag/index.js +257 -187
- package/libs/PanoTagPlugin/Components/TagContainer.js +157 -87
- package/libs/PanoTagPlugin/Components/TagItem.js +144 -74
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +73 -3
- package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +109 -39
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +105 -35
- package/libs/PanoTagPlugin/controller/Tag/PointTag.js +113 -43
- package/libs/PanoTagPlugin/controller/TagRender.js +132 -80
- package/libs/PanoTagPlugin/controller/TagUtil.js +136 -84
- package/libs/PanoTagPlugin/controller/index.js +113 -61
- package/libs/PanoTagPlugin/index.js +89 -37
- package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +121 -41
- package/libs/PanoVideoPlugin/Controller.js +137 -65
- package/libs/PanoVideoPlugin/VideoMeshController.js +149 -69
- package/libs/PanoVideoPlugin/index.js +82 -10
- package/libs/PipelinePlugin/Controller.js +199 -128
- package/libs/PipelinePlugin/index.js +76 -5
- package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +102 -22
- package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +95 -15
- package/libs/PipelinePlugin/utils/Objects/Pipe.js +136 -56
- package/libs/Sculpt/Meshes/Area.d.ts +1 -1
- package/libs/Sculpt/Meshes/Box.d.ts +1 -1
- package/libs/Sculpt/Meshes/Box.js +16 -15
- package/libs/Sculpt/Meshes/Circle.d.ts +1 -1
- package/libs/Sculpt/Meshes/Circle.js +1 -1
- package/libs/Sculpt/Meshes/CircleWithEdge.d.ts +1 -1
- package/libs/Sculpt/Meshes/Cylinder.js +8 -7
- package/libs/Sculpt/Meshes/Line.d.ts +8 -2
- package/libs/Sculpt/Meshes/Line.js +93 -65
- package/libs/Sculpt/Meshes/LineWithDots.d.ts +1 -1
- package/libs/Sculpt/Meshes/LineWithDots.js +26 -26
- package/libs/Sculpt/Meshes/Point.d.ts +1 -1
- package/libs/Sculpt/Meshes/Point.js +7 -6
- package/libs/Sculpt/Meshes/Polygon.js +1 -1
- package/libs/Sculpt/Meshes/PolygonWithEdge.d.ts +1 -1
- package/libs/Sculpt/Meshes/Polyline.js +5 -4
- package/libs/Sculpt/Meshes/Prism.d.ts +1 -1
- package/libs/Sculpt/Meshes/Rectangle.js +3 -2
- package/libs/Sculpt/Meshes/RectangleWithEdge.d.ts +3 -4
- package/libs/Sculpt/Objects/Box/index.js +41 -43
- package/libs/Sculpt/Objects/Cylinder/index.js +35 -37
- package/libs/Sculpt/Objects/Line/Editor.d.ts +22 -0
- package/libs/Sculpt/Objects/Line/Editor.js +62 -0
- package/libs/Sculpt/Objects/Line/index.d.ts +33 -0
- package/libs/Sculpt/Objects/Line/index.js +107 -0
- package/libs/Sculpt/Objects/Point/index.d.ts +1 -1
- package/libs/Sculpt/Objects/Polygon/Editor.d.ts +2 -2
- package/libs/Sculpt/Objects/Polygon/Editor.js +5 -5
- package/libs/Sculpt/Objects/Polygon/index.d.ts +3 -2
- package/libs/Sculpt/Objects/Polygon/index.js +80 -80
- package/libs/Sculpt/Objects/Polyline/Editor.d.ts +3 -17
- package/libs/Sculpt/Objects/Polyline/Editor.js +10 -48
- package/libs/Sculpt/Objects/Polyline/index.d.ts +7 -6
- package/libs/Sculpt/Objects/Polyline/index.js +63 -58
- package/libs/Sculpt/Objects/Prism/index.js +56 -58
- package/libs/Sculpt/index.d.ts +5 -0
- package/libs/Sculpt/index.js +58 -48
- package/libs/Sculpt/typings/index.d.ts +11 -6
- package/libs/Sculpt/{utils/color.d.ts → typings/style.d.ts} +7 -0
- package/libs/Sculpt/typings/utils.type.d.ts +2 -0
- package/libs/Sculpt/utils/three/ColoredMesh.d.ts +1 -1
- package/libs/Sculpt/utils/three/ColoredMesh.js +15 -14
- package/libs/Sculpt/utils/three/rayOnLine.d.ts +3 -5
- package/libs/Sculpt/utils/three/rayOnLine.js +15 -14
- package/libs/base/BasePlugin.js +14 -13
- package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +131 -61
- package/libs/floorplan/MapviewFloorplanPlugin/index.js +75 -6
- package/libs/floorplan/ModelFloorplanPlugin/Controller.js +129 -59
- package/libs/floorplan/ModelFloorplanPlugin/index.js +75 -5
- package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +158 -86
- package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +76 -4
- package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +151 -81
- package/libs/floorplan/TopviewFloorplanPlugin/index.js +75 -5
- package/libs/floorplan/index.js +1 -0
- package/libs/index.js +194 -192
- package/libs/shared-utils/Object3DHelper/Controller/MoveController.js +1 -1
- package/libs/shared-utils/Object3DHelper/Controller/ScaleController.js +23 -23
- package/libs/shared-utils/Utils/WorkUtil.d.ts +6 -6
- package/libs/shared-utils/Utils/WorkUtil.js +8 -7
- 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/PointSelector/utils/PointSelectorHelper.js +15 -15
- package/libs/shared-utils/three/index.js +1 -0
- package/package.json +1 -1
- package/dist/Sculpt/typings/SimplifyDeep.d.ts +0 -3
- package/libs/Sculpt/typings/SimplifyDeep.d.ts +0 -3
- /package/libs/Sculpt/{utils/color.js → typings/style.js} +0 -0
|
@@ -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,64 @@ 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 "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
247
|
+
import "../shared-utils/isTouchDevice.js";
|
|
248
|
+
import "../shared-utils/five/getPosition.js";
|
|
249
|
+
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
198
250
|
import "../PanoTagPlugin/utils/DebugUtil.js";
|
|
199
251
|
import "../PanoTagPlugin/utils/addDebugPoints.js";
|
|
200
252
|
import "../PanoTagPlugin/controller/Tag/PointTag.js";
|
|
@@ -217,8 +269,8 @@ import "../CruisePlugin/utils/coordinatesAngle.js";
|
|
|
217
269
|
import "../CruisePlugin/utils/coordinatesToVector.js";
|
|
218
270
|
import "../CruisePlugin/utils/safeCall.js";
|
|
219
271
|
import "../shared-utils/five/fiveLoaded.js";
|
|
220
|
-
const b = "GuideLinePlugin", g = `${b}`,
|
|
221
|
-
class
|
|
272
|
+
const b = "GuideLinePlugin", g = `${b}`, ce = (s) => `${g}--${s}`;
|
|
273
|
+
class be extends N {
|
|
222
274
|
constructor(t, i) {
|
|
223
275
|
super(t, i);
|
|
224
276
|
h(this, "name", b);
|
|
@@ -248,24 +300,24 @@ class ge extends N {
|
|
|
248
300
|
load(t, i, a = !0) {
|
|
249
301
|
return u(this, null, function* () {
|
|
250
302
|
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 =
|
|
303
|
+
const p = this.data ? JSON.parse(JSON.stringify(this.data)) : void 0, o = yield this.formatData(t);
|
|
304
|
+
this.hooks.emit("dataChange", o, p), this.data = o;
|
|
305
|
+
const r = o.config, n = {
|
|
254
306
|
panorama_style: {
|
|
255
|
-
visible: !!(!
|
|
307
|
+
visible: !!(!o.lines && o.routes),
|
|
256
308
|
unit_length: (v = r == null ? void 0 : r.unitHeight) != null ? v : 0.4,
|
|
257
309
|
width: (_ = r == null ? void 0 : r.unitWidth) != null ? _ : 0.6,
|
|
258
310
|
texture: { url: (E = r == null ? void 0 : r.arrowTextureUrl) != null ? E : this.staticPrefix + "/release/web/arrow-white.5c2c79a5.png" },
|
|
259
311
|
use_auto_depthtest: (I = this.config.useAutoDepthTest) != null ? I : !1,
|
|
260
312
|
auto_depth_test_effect_distance: this.config.autoDepthTestEffectDistance
|
|
261
313
|
}
|
|
262
|
-
}, d = (D = (w =
|
|
314
|
+
}, d = (D = (w = o.routes) == null ? void 0 : w.map((l) => {
|
|
263
315
|
var A;
|
|
264
316
|
return S({}, n, { id: (A = l.id) != null ? A : H(), pano_group: l.panoIndexList });
|
|
265
|
-
})) != null ? D : [], M = (L = (y =
|
|
317
|
+
})) != null ? D : [], M = (L = (y = o.lines) == null ? void 0 : y.map((l) => S({}, n, l))) != null ? L : [], O = [...d, ...M];
|
|
266
318
|
yield U(this.five), this.clear(), O.forEach((l) => {
|
|
267
319
|
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",
|
|
320
|
+
}), 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
321
|
});
|
|
270
322
|
}
|
|
271
323
|
formatData(t) {
|
|
@@ -322,22 +374,22 @@ class ge extends N {
|
|
|
322
374
|
/** 全量更新 tag */
|
|
323
375
|
updateTagsEnable() {
|
|
324
376
|
const t = [];
|
|
325
|
-
function i(
|
|
326
|
-
return Array.isArray(
|
|
377
|
+
function i(o) {
|
|
378
|
+
return Array.isArray(o) && o.every((r) => typeof r == "number");
|
|
327
379
|
}
|
|
328
|
-
function a(
|
|
329
|
-
return new V.Vector3().fromArray(
|
|
380
|
+
function a(o, r) {
|
|
381
|
+
return new V.Vector3().fromArray(o).distanceTo(new V.Vector3().fromArray(r)) < 0.01;
|
|
330
382
|
}
|
|
331
|
-
function p(
|
|
383
|
+
function p(o) {
|
|
332
384
|
var m;
|
|
333
|
-
const r = (m =
|
|
385
|
+
const r = (m = o == null ? void 0 : o.tag) == null ? void 0 : m.position;
|
|
334
386
|
return i(r) ? t.every((n) => {
|
|
335
387
|
var d;
|
|
336
388
|
return i((d = n.tag) == null ? void 0 : d.position) ? !a(r, n.tag.position) : !0;
|
|
337
389
|
}) : !1;
|
|
338
390
|
}
|
|
339
|
-
this.itemMap.forEach((
|
|
340
|
-
const r =
|
|
391
|
+
this.itemMap.forEach((o) => {
|
|
392
|
+
const r = o.modelItem.startTagContainer, m = o.modelItem.endTagContainer, n = p(r);
|
|
341
393
|
n && t.push(r), r == null || r.plugin.setState({ enabled: n }, {});
|
|
342
394
|
const d = p(m);
|
|
343
395
|
d && t.push(m), m == null || m.plugin.setState({ enabled: d }, {});
|
|
@@ -360,6 +412,6 @@ class ge extends N {
|
|
|
360
412
|
}
|
|
361
413
|
}
|
|
362
414
|
export {
|
|
363
|
-
|
|
364
|
-
|
|
415
|
+
be as default,
|
|
416
|
+
ce as pluginFlag
|
|
365
417
|
};
|
|
@@ -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 Ar } 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,94 @@ 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 "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
102
|
+
import "../shared-utils/isTouchDevice.js";
|
|
103
|
+
import "../shared-utils/five/getPosition.js";
|
|
104
|
+
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
105
|
+
import "../shared-utils/three/blink.js";
|
|
28
106
|
import "../shared-utils/animationFrame/BetterTween.js";
|
|
29
|
-
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
30
107
|
import "../shared-utils/animationFrame/index.js";
|
|
31
108
|
import "../shared-utils/three/loadTexture.js";
|
|
32
109
|
import "../PanoTagPlugin/controller/index.js";
|
|
33
110
|
import "../vendor/object-assign-deep/objectAssignDeep.js";
|
|
34
|
-
import "../shared-utils/positionToVector3.js";
|
|
35
111
|
import "../PanoTagPlugin/utils/tag/tagCheck.js";
|
|
36
112
|
import "../PanoTagPlugin/utils/debounce.js";
|
|
37
113
|
import "../PanoTagPlugin/utils/throttle.js";
|
|
@@ -114,7 +190,6 @@ import "../shared-utils/three/GLTFLoader.js";
|
|
|
114
190
|
import "@realsee/five/gltf-loader";
|
|
115
191
|
import "../PanoTagPlugin/utils/planeNormal.js";
|
|
116
192
|
import "../PanoTagPlugin/utils/model/mediaPlane.js";
|
|
117
|
-
import "../shared-utils/three/centerPoint.js";
|
|
118
193
|
import "../shared-utils/three/Quadrangle.js";
|
|
119
194
|
import "../shared-utils/math/pointsIsRectangle.js";
|
|
120
195
|
import "../shared-utils/three/loadVideoTexture.js";
|
|
@@ -130,12 +205,7 @@ import "../PanoTagPlugin/typings/tag/TagConfig.js";
|
|
|
130
205
|
import "@realsee/five";
|
|
131
206
|
import "../shared-utils/vectorToCoordinate.js";
|
|
132
207
|
import "../shared-utils/formatRad.js";
|
|
133
|
-
import "../shared-utils/five/transformPosition.js";
|
|
134
208
|
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
209
|
import "../PanoTagPlugin/utils/tagPosition.js";
|
|
140
210
|
import "../PanoTagPlugin/utils/checkRange.js";
|
|
141
211
|
import "../shared-utils/url/getUrl.js";
|
|
@@ -149,24 +219,6 @@ import "../PanoTagPlugin/utils/normalPositionToPositions.js";
|
|
|
149
219
|
import "../vendor/svelte/store/index.js";
|
|
150
220
|
import "../CSS3DRenderPlugin/index.js";
|
|
151
221
|
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
222
|
import "../PanoTagPlugin/utils/DebugUtil.js";
|
|
171
223
|
import "../PanoTagPlugin/utils/addDebugPoints.js";
|
|
172
224
|
import "../PanoTagPlugin/controller/Tag/PointTag.js";
|
|
@@ -190,5 +242,5 @@ import "../CruisePlugin/utils/coordinatesToVector.js";
|
|
|
190
242
|
import "../CruisePlugin/utils/safeCall.js";
|
|
191
243
|
import "../shared-utils/five/fiveLoaded.js";
|
|
192
244
|
export {
|
|
193
|
-
|
|
245
|
+
Ar as GuideLineItem
|
|
194
246
|
};
|
|
@@ -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 Gr } 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,87 @@ 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 "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
104
|
+
import "../shared-utils/isTouchDevice.js";
|
|
105
|
+
import "../shared-utils/five/getPosition.js";
|
|
106
|
+
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
107
|
+
import "../shared-utils/animationFrame/index.js";
|
|
31
108
|
import "../PanoTagPlugin/utils/tag/tagCheck.js";
|
|
32
109
|
import "../PanoTagPlugin/utils/debounce.js";
|
|
33
110
|
import "../PanoTagPlugin/utils/throttle.js";
|
|
@@ -110,7 +187,6 @@ import "../shared-utils/three/GLTFLoader.js";
|
|
|
110
187
|
import "@realsee/five/gltf-loader";
|
|
111
188
|
import "../PanoTagPlugin/utils/planeNormal.js";
|
|
112
189
|
import "../PanoTagPlugin/utils/model/mediaPlane.js";
|
|
113
|
-
import "../shared-utils/three/centerPoint.js";
|
|
114
190
|
import "../shared-utils/three/Quadrangle.js";
|
|
115
191
|
import "../shared-utils/math/pointsIsRectangle.js";
|
|
116
192
|
import "../shared-utils/three/loadVideoTexture.js";
|
|
@@ -119,7 +195,6 @@ import "../shared-utils/three/getPositionsByObjectFit.js";
|
|
|
119
195
|
import "../shared-utils/three/FragmentTransparencyMaterial.js";
|
|
120
196
|
import "../shared-utils/three/getNormal.js";
|
|
121
197
|
import "../PanoTagPlugin/controller/Tag/BaseTag.js";
|
|
122
|
-
import "../shared-utils/Subscribe.js";
|
|
123
198
|
import "../PanoTagPlugin/utils/tag/calculateTagConfig.js";
|
|
124
199
|
import "../shared-utils/typescript/entries.js";
|
|
125
200
|
import "../PanoTagPlugin/utils/tag/adaptConfig.js";
|
|
@@ -127,12 +202,7 @@ import "../PanoTagPlugin/typings/tag/TagConfig.js";
|
|
|
127
202
|
import "@realsee/five";
|
|
128
203
|
import "../shared-utils/vectorToCoordinate.js";
|
|
129
204
|
import "../shared-utils/formatRad.js";
|
|
130
|
-
import "../shared-utils/five/transformPosition.js";
|
|
131
205
|
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
206
|
import "../PanoTagPlugin/utils/tagPosition.js";
|
|
137
207
|
import "../PanoTagPlugin/utils/checkRange.js";
|
|
138
208
|
import "../shared-utils/url/getUrl.js";
|
|
@@ -146,24 +216,6 @@ import "../PanoTagPlugin/utils/normalPositionToPositions.js";
|
|
|
146
216
|
import "../vendor/svelte/store/index.js";
|
|
147
217
|
import "../CSS3DRenderPlugin/index.js";
|
|
148
218
|
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
219
|
import "../PanoTagPlugin/utils/DebugUtil.js";
|
|
168
220
|
import "../PanoTagPlugin/utils/addDebugPoints.js";
|
|
169
221
|
import "../PanoTagPlugin/controller/Tag/PointTag.js";
|
|
@@ -173,5 +225,5 @@ import "../PanoTagPlugin/Components/TagContainer.js";
|
|
|
173
225
|
import "../PanoTagPlugin/Components/TagItem.js";
|
|
174
226
|
import "../PanoTagPlugin/Components/Common/TagPoint.js";
|
|
175
227
|
export {
|
|
176
|
-
|
|
228
|
+
Gr as GuideLineModeItem
|
|
177
229
|
};
|