@realsee/dnalogel 3.47.10 → 3.47.12
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 +3 -1
- package/dist/Sculpt/Meshes/Polygon.d.ts +16 -7
- package/dist/Sculpt/Meshes/PolygonWithEdge.d.ts +1 -0
- package/dist/Sculpt/Meshes/Polyline.d.ts +1 -0
- package/dist/Sculpt/Meshes/RectangleWithEdge.d.ts +1 -0
- package/dist/index.cjs.js +57 -57
- package/dist/index.js +3263 -3227
- package/dist/index.umd.js +50 -50
- package/libs/AreaMakerPlugin/Controller.js +14 -13
- package/libs/AreaMakerPlugin/index.js +15 -14
- package/libs/AreaMakerPlugin/utils/Item.js +15 -14
- package/libs/CSS3DRenderPlugin/Controller.js +12 -11
- package/libs/CSS3DRenderPlugin/index.js +18 -17
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +12 -11
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +26 -25
- package/libs/CruisePlugin/BaseController.js +17 -16
- package/libs/CruisePlugin/Move.js +20 -19
- package/libs/CruisePlugin/Work.js +15 -14
- package/libs/CruisePlugin/index.js +19 -18
- package/libs/CurrentPanoImagePlugin/Controller.js +14 -13
- package/libs/CurrentPanoImagePlugin/index.js +16 -15
- package/libs/GuideLinePlugin/Controller.js +17 -16
- package/libs/GuideLinePlugin/GuideLineItem.js +15 -14
- package/libs/GuideLinePlugin/GuideLineModeItem/index.js +5 -3
- package/libs/GuideLinePlugin/GuideLineModeItem.js +15 -14
- package/libs/GuideLinePlugin/index.js +19 -18
- package/libs/ModelMakerPlugin/Controller.js +13 -12
- package/libs/ModelMakerPlugin/index.js +15 -14
- package/libs/ModelTVVideoPlugin/Plugin.js +37 -36
- package/libs/ModelTVVideoPlugin/index.js +13 -12
- package/libs/Object3DHelperPlugin/Controller.js +14 -13
- package/libs/Object3DHelperPlugin/index.js +18 -17
- package/libs/PanoCompassPlugin/Controller.js +15 -14
- package/libs/PanoCompassPlugin/index.js +16 -15
- package/libs/PanoDoorLabelPlugin/BaseController.js +15 -14
- package/libs/PanoDoorLabelPlugin/Controller.js +15 -14
- package/libs/PanoDoorLabelPlugin/index.js +16 -15
- package/libs/PanoMeasurePlugin/Components/Controller0.js +12 -11
- package/libs/PanoMeasurePlugin/Components/Controller1.js +12 -11
- package/libs/PanoMeasurePlugin/Controller/EditController.js +12 -11
- package/libs/PanoMeasurePlugin/Controller/WatchController.js +13 -12
- package/libs/PanoMeasurePlugin/Controller/index.js +10 -9
- package/libs/PanoMeasurePlugin/Model/area.js +12 -11
- package/libs/PanoMeasurePlugin/Modules/Magnifier.js +12 -11
- package/libs/PanoMeasurePlugin/Modules/UIController/index.js +12 -11
- package/libs/PanoMeasurePlugin/index.js +21 -20
- package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +12 -11
- package/libs/PanoSpatialTagPlugin/Plugin.js +14 -13
- package/libs/PanoSpatialTagPlugin/index.js +11 -10
- package/libs/PanoTagPlugin/Components/Common/TagPoint.js +14 -13
- package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +13 -12
- package/libs/PanoTagPlugin/Components/Tag/index.js +13 -12
- package/libs/PanoTagPlugin/Components/TagContainer.js +13 -12
- package/libs/PanoTagPlugin/Components/TagItem.js +13 -12
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +34 -33
- package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +13 -12
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +13 -12
- package/libs/PanoTagPlugin/controller/Tag/PointTag.js +15 -14
- package/libs/PanoTagPlugin/controller/TagRender.js +12 -11
- package/libs/PanoTagPlugin/controller/TagUtil.js +13 -12
- package/libs/PanoTagPlugin/controller/index.js +16 -15
- package/libs/PanoTagPlugin/index.js +21 -20
- package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +14 -13
- package/libs/PanoVideoPlugin/Controller.js +15 -14
- package/libs/PanoVideoPlugin/VideoMeshController.js +30 -29
- package/libs/PanoVideoPlugin/index.js +18 -17
- package/libs/PipelinePlugin/Controller.js +14 -13
- package/libs/PipelinePlugin/index.js +16 -15
- package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +21 -20
- package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +15 -14
- package/libs/PipelinePlugin/utils/Objects/Pipe.js +13 -12
- package/libs/Sculpt/Meshes/Box.js +10 -8
- package/libs/Sculpt/Meshes/Cylinder.js +17 -15
- package/libs/Sculpt/Meshes/Line.d.ts +3 -1
- package/libs/Sculpt/Meshes/Line.js +89 -78
- package/libs/Sculpt/Meshes/Point.js +14 -12
- package/libs/Sculpt/Meshes/Polygon.d.ts +16 -7
- package/libs/Sculpt/Meshes/Polygon.js +71 -33
- package/libs/Sculpt/Meshes/PolygonWithEdge.d.ts +1 -0
- package/libs/Sculpt/Meshes/Polyline.d.ts +1 -0
- package/libs/Sculpt/Meshes/Polyline.js +69 -74
- package/libs/Sculpt/Meshes/Rectangle.js +7 -5
- package/libs/Sculpt/Meshes/RectangleWithEdge.d.ts +1 -0
- package/libs/Sculpt/Objects/Base/index.js +5 -5
- package/libs/Sculpt/Objects/Line/Editor.js +17 -15
- package/libs/Sculpt/Objects/Polygon/index.js +22 -22
- package/libs/Sculpt/Objects/Rectangle/Editor.js +2 -2
- package/libs/Sculpt/Objects/Rectangle/index.js +79 -69
- package/libs/Sculpt/index.js +15 -14
- package/libs/Sculpt/utils/three/ColoredMesh.js +6 -4
- package/libs/base/BasePlugin.js +16 -14
- package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +13 -12
- package/libs/floorplan/MapviewFloorplanPlugin/index.js +16 -15
- package/libs/floorplan/ModelFloorplanPlugin/Controller.js +13 -12
- package/libs/floorplan/ModelFloorplanPlugin/index.js +16 -15
- package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +15 -14
- package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +16 -15
- package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +13 -12
- package/libs/floorplan/TopviewFloorplanPlugin/index.js +16 -15
- package/libs/floorplan/index.js +3 -1
- package/libs/index.js +12 -12
- package/libs/shared-utils/five/index.js +5 -3
- package/libs/shared-utils/five/lookObject.js +20 -18
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/three/applyObjectMatrixWorld.js +4 -6
- package/libs/shared-utils/three/index.js +3 -1
- package/package.json +1 -1
package/libs/Sculpt/index.js
CHANGED
|
@@ -10,7 +10,7 @@ var d = (m, i, e) => i in m ? _(m, i, { enumerable: !0, configurable: !0, writab
|
|
|
10
10
|
O.call(i, e) && d(m, e, i[e]);
|
|
11
11
|
return m;
|
|
12
12
|
}, w = (m, i) => x(m, E(i));
|
|
13
|
-
var
|
|
13
|
+
var a = (m, i, e) => (d(m, typeof i != "symbol" ? i + "" : i, e), e);
|
|
14
14
|
var c = (m, i, e) => new Promise((t, o) => {
|
|
15
15
|
var l = (u) => {
|
|
16
16
|
try {
|
|
@@ -33,7 +33,8 @@ import { IObject3D as U } from "../shared-utils/three/IObject3D.js";
|
|
|
33
33
|
import "three";
|
|
34
34
|
import "hammerjs";
|
|
35
35
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
36
|
-
import "
|
|
36
|
+
import "@realsee/five/line";
|
|
37
|
+
import "../shared-utils/tag.js";
|
|
37
38
|
import "../shared-utils/three/THREESphere.js";
|
|
38
39
|
import "animejs";
|
|
39
40
|
import { notNil as H } from "../shared-utils/isNil.js";
|
|
@@ -49,17 +50,17 @@ import { Cylinder as D } from "./Objects/Cylinder/index.js";
|
|
|
49
50
|
import { Box as j } from "./Objects/Box/index.js";
|
|
50
51
|
import { forReverseEach as k } from "../shared-utils/forReverseEach.js";
|
|
51
52
|
import { Line as B } from "./Objects/Line/index.js";
|
|
52
|
-
const
|
|
53
|
+
const p = class extends S {
|
|
53
54
|
constructor(e, t) {
|
|
54
55
|
super();
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
this.five = e, this.theme = t, this.group = new U(), this.group.name = "Sculpt", e.scene.add(this.group),
|
|
56
|
+
a(this, "group");
|
|
57
|
+
a(this, "five");
|
|
58
|
+
a(this, "theme");
|
|
59
|
+
this.five = e, this.theme = t, this.group = new U(), this.group.name = "Sculpt", e.scene.add(this.group), p.modules.init(e), p.modules.fiveDomEvents.addEventListener(this.group, "click", ({ intersects: o }) => {
|
|
59
60
|
var s;
|
|
60
61
|
const l = M((s = o == null ? void 0 : o[0]) == null ? void 0 : s.object, (n) => n.isSculptObject);
|
|
61
62
|
return l ? this.emit("click", l) : !1;
|
|
62
|
-
}), window.__SCLUPT_DEBUG__ = this, window.__SCLUPT_MODULES_DEBUG__ =
|
|
63
|
+
}), window.__SCLUPT_DEBUG__ = this, window.__SCLUPT_MODULES_DEBUG__ = p.modules;
|
|
63
64
|
}
|
|
64
65
|
get data() {
|
|
65
66
|
return {
|
|
@@ -102,7 +103,7 @@ const a = class extends S {
|
|
|
102
103
|
putObject(e) {
|
|
103
104
|
var l;
|
|
104
105
|
this.group.add(e);
|
|
105
|
-
const t =
|
|
106
|
+
const t = p.modules.object3DHelper, o = t.addObject3DHelper(e);
|
|
106
107
|
return (l = o == null ? void 0 : o.moveController) == null || l.moveByMouse(), t;
|
|
107
108
|
}
|
|
108
109
|
/**
|
|
@@ -211,10 +212,10 @@ const a = class extends S {
|
|
|
211
212
|
});
|
|
212
213
|
}
|
|
213
214
|
};
|
|
214
|
-
let
|
|
215
|
-
h
|
|
216
|
-
const
|
|
215
|
+
let h = p;
|
|
216
|
+
a(h, "modules", R);
|
|
217
|
+
const le = (m) => new h(m);
|
|
217
218
|
export {
|
|
218
|
-
|
|
219
|
-
|
|
219
|
+
h as Sculpt,
|
|
220
|
+
le as SculptPlugin
|
|
220
221
|
};
|
|
@@ -12,15 +12,17 @@ var u = (i, e, t) => e in i ? g(i, e, { enumerable: !0, configurable: !0, writab
|
|
|
12
12
|
var n = (i, e, t) => (u(i, typeof e != "symbol" ? e + "" : e, t), t);
|
|
13
13
|
import * as s from "three";
|
|
14
14
|
import { DEFAULT_COLOR as F } from "../../typings/style.js";
|
|
15
|
-
import { IObject3D as
|
|
15
|
+
import { IObject3D as p } from "../../../shared-utils/three/IObject3D.js";
|
|
16
16
|
import "hammerjs";
|
|
17
17
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
18
|
-
import "
|
|
18
|
+
import "@realsee/five/line";
|
|
19
|
+
import "../../../shared-utils/tag.js";
|
|
20
|
+
import "../Modules/Global.js";
|
|
19
21
|
import "../../../shared-utils/three/THREESphere.js";
|
|
20
22
|
import "animejs";
|
|
21
23
|
import { notNil as y } from "../../../shared-utils/isNil.js";
|
|
22
24
|
import "../../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
23
|
-
class
|
|
25
|
+
class x extends p {
|
|
24
26
|
constructor(t) {
|
|
25
27
|
var h, m;
|
|
26
28
|
super();
|
|
@@ -82,5 +84,5 @@ class R extends B {
|
|
|
82
84
|
}
|
|
83
85
|
}
|
|
84
86
|
export {
|
|
85
|
-
|
|
87
|
+
x as ColoredMesh
|
|
86
88
|
};
|
package/libs/base/BasePlugin.js
CHANGED
|
@@ -1,31 +1,33 @@
|
|
|
1
1
|
var o = Object.defineProperty;
|
|
2
|
-
var s = (
|
|
3
|
-
var
|
|
2
|
+
var s = (e, t, r) => t in e ? o(e, t, { enumerable: !0, configurable: !0, writable: !0, value: r }) : e[t] = r;
|
|
3
|
+
var i = (e, t, r) => (s(e, typeof t != "symbol" ? t + "" : t, r), r);
|
|
4
4
|
import { Subscribe as l } from "../shared-utils/Subscribe.js";
|
|
5
5
|
import "three";
|
|
6
6
|
import "hammerjs";
|
|
7
7
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
8
|
-
import "
|
|
8
|
+
import "@realsee/five/line";
|
|
9
|
+
import "../shared-utils/tag.js";
|
|
10
|
+
import "../Sculpt/utils/Modules/Global.js";
|
|
9
11
|
import "../shared-utils/three/THREESphere.js";
|
|
10
12
|
import "animejs";
|
|
11
13
|
import { FiveUtil as a } from "../shared-utils/Utils/FiveUtil.js";
|
|
12
|
-
import { absoluteUrl as
|
|
14
|
+
import { absoluteUrl as m } from "../shared-utils/url/absoluteUrl.js";
|
|
13
15
|
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
14
|
-
let
|
|
16
|
+
let P = class {
|
|
15
17
|
constructor(t, r) {
|
|
16
18
|
/**
|
|
17
19
|
* @realsee/dnalogel 版本号
|
|
18
20
|
*/
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
i(this, "VERSION", "3.47.12");
|
|
22
|
+
i(this, "NAME");
|
|
23
|
+
i(this, "five");
|
|
24
|
+
i(this, "workUtil");
|
|
25
|
+
i(this, "fiveUtil");
|
|
24
26
|
/**
|
|
25
27
|
* @description: 插件事件钩子
|
|
26
28
|
*/
|
|
27
|
-
|
|
28
|
-
|
|
29
|
+
i(this, "hooks", new l());
|
|
30
|
+
i(this, "staticPrefix", "//vr-image-4.realsee-cdn.cn");
|
|
29
31
|
this.updateFive(t), r != null && r.staticPrefix && (this.staticPrefix = r.staticPrefix);
|
|
30
32
|
}
|
|
31
33
|
set workCode(t) {
|
|
@@ -47,11 +49,11 @@ let c = class {
|
|
|
47
49
|
* @description: 获取静态资源的url
|
|
48
50
|
*/
|
|
49
51
|
absoluteUrl(t) {
|
|
50
|
-
return
|
|
52
|
+
return m(this.staticPrefix, t);
|
|
51
53
|
}
|
|
52
54
|
onWorkCodeChange() {
|
|
53
55
|
}
|
|
54
56
|
};
|
|
55
57
|
export {
|
|
56
|
-
|
|
58
|
+
P as Controller
|
|
57
59
|
};
|
|
@@ -42,7 +42,9 @@ import { changeModelCanvasOpacity as A } from "../../shared-utils/changeModelCan
|
|
|
42
42
|
import { FloorplanErrorType as c, SHOW_ANIME_DURATION as H } from "../utils/constant.js";
|
|
43
43
|
import "hammerjs";
|
|
44
44
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
45
|
-
import "
|
|
45
|
+
import "@realsee/five/line";
|
|
46
|
+
import "../../shared-utils/tag.js";
|
|
47
|
+
import "../../Sculpt/utils/Modules/Global.js";
|
|
46
48
|
import "../../shared-utils/three/THREESphere.js";
|
|
47
49
|
import "animejs";
|
|
48
50
|
import { isNil as U } from "../../shared-utils/isNil.js";
|
|
@@ -87,21 +89,15 @@ import "../../shared-utils/five/getFiveModel.js";
|
|
|
87
89
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
88
90
|
import "../../shared-utils/nearlyEqual.js";
|
|
89
91
|
import "../../shared-utils/five/changeMode.js";
|
|
90
|
-
import "../../Sculpt/typings/style.js";
|
|
91
|
-
import "../../shared-utils/five/FiveLine.js";
|
|
92
|
-
import "@realsee/five/line";
|
|
93
92
|
import "../../shared-utils/positionToVector3.js";
|
|
94
|
-
import "../../shared-utils/three/IObject3D.js";
|
|
95
|
-
import "../../shared-utils/three/centerPoint.js";
|
|
96
|
-
import "../../shared-utils/tag.js";
|
|
97
93
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
98
94
|
import "../../shared-utils/three/temp.js";
|
|
99
|
-
import "../../Sculpt/utils/Modules/Global.js";
|
|
100
95
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
101
96
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
102
97
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
103
98
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
104
99
|
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
100
|
+
import "../../shared-utils/three/IObject3D.js";
|
|
105
101
|
import "../../shared-utils/three/boundingBox.js";
|
|
106
102
|
import "../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
107
103
|
import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -114,6 +110,7 @@ import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
|
114
110
|
import "../../CSS3DRenderPlugin/utils/even.js";
|
|
115
111
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
116
112
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
113
|
+
import "../../shared-utils/three/centerPoint.js";
|
|
117
114
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
118
115
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
119
116
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -153,12 +150,16 @@ import "../../shared-utils/three/Assets/index.js";
|
|
|
153
150
|
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
154
151
|
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
155
152
|
import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
153
|
+
import "../../Sculpt/Meshes/Line.js";
|
|
154
|
+
import "../../Sculpt/typings/style.js";
|
|
155
|
+
import "../../shared-utils/five/FiveLine.js";
|
|
156
|
+
import "../../Sculpt/utils/removeAllTag.js";
|
|
157
|
+
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
158
|
+
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
156
159
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
157
160
|
import "../../shared-utils/isTouchDevice.js";
|
|
158
161
|
import "../../shared-utils/five/getPosition.js";
|
|
159
162
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
160
|
-
import "../../Sculpt/utils/removeAllTag.js";
|
|
161
|
-
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
162
163
|
function W(d) {
|
|
163
164
|
const { latitude: n, longitude: t } = d, e = Math.abs(n - Math.PI / 2) > 5 * Math.PI / 180, i = t > 5 * (Math.PI / 180) && t < 355 * (Math.PI / 180);
|
|
164
165
|
return e || i;
|
|
@@ -167,7 +168,7 @@ function G(d) {
|
|
|
167
168
|
const { latitude: n, longitude: t } = d, e = Math.abs(n - Math.PI / 2) < 10 * Math.PI / 180, i = t < 30 * (Math.PI / 180) || t > 330 * (Math.PI / 180);
|
|
168
169
|
return e && i;
|
|
169
170
|
}
|
|
170
|
-
class
|
|
171
|
+
class fi extends O {
|
|
171
172
|
constructor(t, e) {
|
|
172
173
|
var a, m;
|
|
173
174
|
super(t);
|
|
@@ -502,5 +503,5 @@ class pi extends O {
|
|
|
502
503
|
}
|
|
503
504
|
}
|
|
504
505
|
export {
|
|
505
|
-
|
|
506
|
+
fi as Controller
|
|
506
507
|
};
|
|
@@ -41,18 +41,9 @@ import "../../base/BasePlugin.js";
|
|
|
41
41
|
import "../../shared-utils/Subscribe.js";
|
|
42
42
|
import "hammerjs";
|
|
43
43
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
44
|
-
import "../../Sculpt/Meshes/Line.js";
|
|
45
|
-
import "../../Sculpt/typings/style.js";
|
|
46
|
-
import "../../shared-utils/five/FiveLine.js";
|
|
47
44
|
import "@realsee/five/line";
|
|
48
|
-
import "../../shared-utils/positionToVector3.js";
|
|
49
|
-
import "../../shared-utils/three/IObject3D.js";
|
|
50
|
-
import "../../shared-utils/three/centerPoint.js";
|
|
51
|
-
import "../../shared-utils/three/THREESphere.js";
|
|
52
|
-
import "animejs";
|
|
53
|
-
import "../../shared-utils/isNil.js";
|
|
54
|
-
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
55
45
|
import "../../shared-utils/tag.js";
|
|
46
|
+
import "../../shared-utils/positionToVector3.js";
|
|
56
47
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
57
48
|
import "../../shared-utils/five/getFiveModel.js";
|
|
58
49
|
import "../../shared-utils/Utils/FiveUtil.js";
|
|
@@ -63,9 +54,11 @@ import "../../shared-utils/three/temp.js";
|
|
|
63
54
|
import "../../Sculpt/utils/Modules/Global.js";
|
|
64
55
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
65
56
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
57
|
+
import "../../shared-utils/three/THREESphere.js";
|
|
66
58
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
67
59
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
68
60
|
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
61
|
+
import "../../shared-utils/three/IObject3D.js";
|
|
69
62
|
import "../../shared-utils/three/boundingBox.js";
|
|
70
63
|
import "../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
71
64
|
import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -78,7 +71,11 @@ import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
|
78
71
|
import "../../CSS3DRenderPlugin/utils/even.js";
|
|
79
72
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
80
73
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
74
|
+
import "../../shared-utils/three/centerPoint.js";
|
|
81
75
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
76
|
+
import "animejs";
|
|
77
|
+
import "../../shared-utils/isNil.js";
|
|
78
|
+
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
82
79
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
83
80
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
84
81
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -119,20 +116,24 @@ import "../../shared-utils/three/Assets/index.js";
|
|
|
119
116
|
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
120
117
|
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
121
118
|
import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
119
|
+
import "../../Sculpt/Meshes/Line.js";
|
|
120
|
+
import "../../Sculpt/typings/style.js";
|
|
121
|
+
import "../../shared-utils/five/FiveLine.js";
|
|
122
|
+
import "../../Sculpt/utils/removeAllTag.js";
|
|
123
|
+
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
124
|
+
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
122
125
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
123
126
|
import "../../shared-utils/isTouchDevice.js";
|
|
124
127
|
import "../../shared-utils/five/getPosition.js";
|
|
125
128
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
126
|
-
import "../../Sculpt/utils/removeAllTag.js";
|
|
127
|
-
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
128
129
|
import "../../shared-utils/getPxmm.js";
|
|
129
130
|
import "../utils/correctFiveState.js";
|
|
130
131
|
import "../utils/constant.js";
|
|
131
132
|
import "../../shared-utils/nearlyEqual.js";
|
|
132
133
|
import "../../shared-utils/five/changeMode.js";
|
|
133
134
|
import "../../shared-utils/changeModelCanvasOpacity.js";
|
|
134
|
-
const
|
|
135
|
+
const Ar = (o, r) => new t(o, r);
|
|
135
136
|
export {
|
|
136
|
-
|
|
137
|
-
|
|
137
|
+
Ar as MapviewFloorplanPlugin,
|
|
138
|
+
Ar as default
|
|
138
139
|
};
|
|
@@ -42,7 +42,9 @@ import { FIVE_CAMERA_DEFAULT_FOV as R, FloorplanErrorType as u, SHOW_ANIME_DURAT
|
|
|
42
42
|
import "three";
|
|
43
43
|
import "hammerjs";
|
|
44
44
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
45
|
-
import "
|
|
45
|
+
import "@realsee/five/line";
|
|
46
|
+
import "../../shared-utils/tag.js";
|
|
47
|
+
import "../../Sculpt/utils/Modules/Global.js";
|
|
46
48
|
import "../../shared-utils/three/THREESphere.js";
|
|
47
49
|
import "animejs";
|
|
48
50
|
import { isNil as G } from "../../shared-utils/isNil.js";
|
|
@@ -86,21 +88,15 @@ import "../../shared-utils/five/getFiveModel.js";
|
|
|
86
88
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
87
89
|
import "../../shared-utils/nearlyEqual.js";
|
|
88
90
|
import "../../shared-utils/five/changeMode.js";
|
|
89
|
-
import "../../Sculpt/typings/style.js";
|
|
90
|
-
import "../../shared-utils/five/FiveLine.js";
|
|
91
|
-
import "@realsee/five/line";
|
|
92
91
|
import "../../shared-utils/positionToVector3.js";
|
|
93
|
-
import "../../shared-utils/three/IObject3D.js";
|
|
94
|
-
import "../../shared-utils/three/centerPoint.js";
|
|
95
|
-
import "../../shared-utils/tag.js";
|
|
96
92
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
97
93
|
import "../../shared-utils/three/temp.js";
|
|
98
|
-
import "../../Sculpt/utils/Modules/Global.js";
|
|
99
94
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
100
95
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
101
96
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
102
97
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
103
98
|
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
99
|
+
import "../../shared-utils/three/IObject3D.js";
|
|
104
100
|
import "../../shared-utils/three/boundingBox.js";
|
|
105
101
|
import "../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
106
102
|
import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -113,6 +109,7 @@ import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
|
113
109
|
import "../../CSS3DRenderPlugin/utils/even.js";
|
|
114
110
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
115
111
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
112
|
+
import "../../shared-utils/three/centerPoint.js";
|
|
116
113
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
117
114
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
118
115
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -153,12 +150,16 @@ import "../../shared-utils/three/Assets/index.js";
|
|
|
153
150
|
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
154
151
|
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
155
152
|
import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
153
|
+
import "../../Sculpt/Meshes/Line.js";
|
|
154
|
+
import "../../Sculpt/typings/style.js";
|
|
155
|
+
import "../../shared-utils/five/FiveLine.js";
|
|
156
|
+
import "../../Sculpt/utils/removeAllTag.js";
|
|
157
|
+
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
158
|
+
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
156
159
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
157
160
|
import "../../shared-utils/isTouchDevice.js";
|
|
158
161
|
import "../../shared-utils/five/getPosition.js";
|
|
159
162
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
160
|
-
import "../../Sculpt/utils/removeAllTag.js";
|
|
161
|
-
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
162
163
|
function W(d) {
|
|
163
164
|
const { latitude: s, longitude: t } = d, e = Math.abs(s - Math.PI / 2) > 5 * Math.PI / 180, i = t > 5 * (Math.PI / 180) && t < 355 * (Math.PI / 180);
|
|
164
165
|
return e || i;
|
|
@@ -167,7 +168,7 @@ function z(d) {
|
|
|
167
168
|
const { latitude: s, longitude: t } = d, e = Math.abs(s - Math.PI / 2) < 10 * Math.PI / 180, i = t < 30 * (Math.PI / 180) || t > 330 * (Math.PI / 180);
|
|
168
169
|
return e && i;
|
|
169
170
|
}
|
|
170
|
-
class
|
|
171
|
+
class fi extends T {
|
|
171
172
|
constructor(t, e) {
|
|
172
173
|
var a, p, c;
|
|
173
174
|
super(t);
|
|
@@ -498,5 +499,5 @@ class mi extends T {
|
|
|
498
499
|
}
|
|
499
500
|
}
|
|
500
501
|
export {
|
|
501
|
-
|
|
502
|
+
fi as Controller
|
|
502
503
|
};
|
|
@@ -42,18 +42,9 @@ import "../../base/BasePlugin.js";
|
|
|
42
42
|
import "../../shared-utils/Subscribe.js";
|
|
43
43
|
import "hammerjs";
|
|
44
44
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
45
|
-
import "../../Sculpt/Meshes/Line.js";
|
|
46
|
-
import "../../Sculpt/typings/style.js";
|
|
47
|
-
import "../../shared-utils/five/FiveLine.js";
|
|
48
45
|
import "@realsee/five/line";
|
|
49
|
-
import "../../shared-utils/positionToVector3.js";
|
|
50
|
-
import "../../shared-utils/three/IObject3D.js";
|
|
51
|
-
import "../../shared-utils/three/centerPoint.js";
|
|
52
|
-
import "../../shared-utils/three/THREESphere.js";
|
|
53
|
-
import "animejs";
|
|
54
|
-
import "../../shared-utils/isNil.js";
|
|
55
|
-
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
56
46
|
import "../../shared-utils/tag.js";
|
|
47
|
+
import "../../shared-utils/positionToVector3.js";
|
|
57
48
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
58
49
|
import "../../shared-utils/five/getFiveModel.js";
|
|
59
50
|
import "../../shared-utils/Utils/FiveUtil.js";
|
|
@@ -64,9 +55,11 @@ import "../../shared-utils/three/temp.js";
|
|
|
64
55
|
import "../../Sculpt/utils/Modules/Global.js";
|
|
65
56
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
66
57
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
58
|
+
import "../../shared-utils/three/THREESphere.js";
|
|
67
59
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
68
60
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
69
61
|
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
62
|
+
import "../../shared-utils/three/IObject3D.js";
|
|
70
63
|
import "../../shared-utils/three/boundingBox.js";
|
|
71
64
|
import "../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
72
65
|
import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -79,7 +72,11 @@ import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
|
79
72
|
import "../../CSS3DRenderPlugin/utils/even.js";
|
|
80
73
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
81
74
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
75
|
+
import "../../shared-utils/three/centerPoint.js";
|
|
82
76
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
77
|
+
import "animejs";
|
|
78
|
+
import "../../shared-utils/isNil.js";
|
|
79
|
+
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
83
80
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
84
81
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
85
82
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -120,19 +117,23 @@ import "../../shared-utils/three/Assets/index.js";
|
|
|
120
117
|
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
121
118
|
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
122
119
|
import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
120
|
+
import "../../Sculpt/Meshes/Line.js";
|
|
121
|
+
import "../../Sculpt/typings/style.js";
|
|
122
|
+
import "../../shared-utils/five/FiveLine.js";
|
|
123
|
+
import "../../Sculpt/utils/removeAllTag.js";
|
|
124
|
+
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
125
|
+
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
123
126
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
124
127
|
import "../../shared-utils/isTouchDevice.js";
|
|
125
128
|
import "../../shared-utils/five/getPosition.js";
|
|
126
129
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
127
|
-
import "../../Sculpt/utils/removeAllTag.js";
|
|
128
|
-
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
129
130
|
import "../utils/correctFiveState.js";
|
|
130
131
|
import "../utils/constant.js";
|
|
131
132
|
import "../../shared-utils/nearlyEqual.js";
|
|
132
133
|
import "../../shared-utils/five/changeMode.js";
|
|
133
134
|
import "../../shared-utils/changeModelCanvasOpacity.js";
|
|
134
|
-
const
|
|
135
|
+
const Ar = (o, r) => new t(o, r);
|
|
135
136
|
export {
|
|
136
|
-
|
|
137
|
-
|
|
137
|
+
Ar as ModelFloorplanPlugin,
|
|
138
|
+
Ar as default
|
|
138
139
|
};
|
|
@@ -51,18 +51,9 @@ import "../../shared-utils/Subscribe.js";
|
|
|
51
51
|
import "three";
|
|
52
52
|
import "hammerjs";
|
|
53
53
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
54
|
-
import "../../Sculpt/Meshes/Line.js";
|
|
55
|
-
import "../../Sculpt/typings/style.js";
|
|
56
|
-
import "../../shared-utils/five/FiveLine.js";
|
|
57
54
|
import "@realsee/five/line";
|
|
58
|
-
import "../../shared-utils/positionToVector3.js";
|
|
59
|
-
import "../../shared-utils/three/IObject3D.js";
|
|
60
|
-
import "../../shared-utils/three/centerPoint.js";
|
|
61
|
-
import "../../shared-utils/three/THREESphere.js";
|
|
62
|
-
import "animejs";
|
|
63
|
-
import "../../shared-utils/isNil.js";
|
|
64
|
-
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
65
55
|
import "../../shared-utils/tag.js";
|
|
56
|
+
import "../../shared-utils/positionToVector3.js";
|
|
66
57
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
67
58
|
import "../../shared-utils/five/getFiveModel.js";
|
|
68
59
|
import "../../shared-utils/Utils/FiveUtil.js";
|
|
@@ -73,9 +64,11 @@ import "../../shared-utils/three/temp.js";
|
|
|
73
64
|
import "../../Sculpt/utils/Modules/Global.js";
|
|
74
65
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
75
66
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
67
|
+
import "../../shared-utils/three/THREESphere.js";
|
|
76
68
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
77
69
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
78
70
|
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
71
|
+
import "../../shared-utils/three/IObject3D.js";
|
|
79
72
|
import "../../shared-utils/three/boundingBox.js";
|
|
80
73
|
import "../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
81
74
|
import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -88,7 +81,11 @@ import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
|
88
81
|
import "../../CSS3DRenderPlugin/utils/even.js";
|
|
89
82
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
90
83
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
84
|
+
import "../../shared-utils/three/centerPoint.js";
|
|
91
85
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
86
|
+
import "animejs";
|
|
87
|
+
import "../../shared-utils/isNil.js";
|
|
88
|
+
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
92
89
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
93
90
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
94
91
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -130,14 +127,18 @@ import "../../shared-utils/three/Assets/index.js";
|
|
|
130
127
|
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
131
128
|
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
132
129
|
import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
130
|
+
import "../../Sculpt/Meshes/Line.js";
|
|
131
|
+
import "../../Sculpt/typings/style.js";
|
|
132
|
+
import "../../shared-utils/five/FiveLine.js";
|
|
133
|
+
import "../../Sculpt/utils/removeAllTag.js";
|
|
134
|
+
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
135
|
+
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
133
136
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
134
137
|
import "../../shared-utils/isTouchDevice.js";
|
|
135
138
|
import "../../shared-utils/five/getPosition.js";
|
|
136
139
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
137
|
-
import "../../Sculpt/utils/removeAllTag.js";
|
|
138
|
-
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
139
140
|
import "../Assets/floorplanExtraObject.js";
|
|
140
|
-
class
|
|
141
|
+
class Pi extends O {
|
|
141
142
|
constructor(t, i) {
|
|
142
143
|
super(t);
|
|
143
144
|
// =============== public properties =================
|
|
@@ -280,5 +281,5 @@ class ji extends O {
|
|
|
280
281
|
}
|
|
281
282
|
}
|
|
282
283
|
export {
|
|
283
|
-
|
|
284
|
+
Pi as Controller
|
|
284
285
|
};
|
|
@@ -22,18 +22,9 @@ import "../../shared-utils/Subscribe.js";
|
|
|
22
22
|
import "three";
|
|
23
23
|
import "hammerjs";
|
|
24
24
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
25
|
-
import "../../Sculpt/Meshes/Line.js";
|
|
26
|
-
import "../../Sculpt/typings/style.js";
|
|
27
|
-
import "../../shared-utils/five/FiveLine.js";
|
|
28
25
|
import "@realsee/five/line";
|
|
29
|
-
import "../../shared-utils/positionToVector3.js";
|
|
30
|
-
import "../../shared-utils/three/IObject3D.js";
|
|
31
|
-
import "../../shared-utils/three/centerPoint.js";
|
|
32
|
-
import "../../shared-utils/three/THREESphere.js";
|
|
33
|
-
import "animejs";
|
|
34
|
-
import "../../shared-utils/isNil.js";
|
|
35
|
-
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
36
26
|
import "../../shared-utils/tag.js";
|
|
27
|
+
import "../../shared-utils/positionToVector3.js";
|
|
37
28
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
38
29
|
import "../../shared-utils/five/getFiveModel.js";
|
|
39
30
|
import "../../shared-utils/Utils/FiveUtil.js";
|
|
@@ -44,9 +35,11 @@ import "../../shared-utils/three/temp.js";
|
|
|
44
35
|
import "../../Sculpt/utils/Modules/Global.js";
|
|
45
36
|
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
46
37
|
import "../../Object3DHelperPlugin/Controller.js";
|
|
38
|
+
import "../../shared-utils/three/THREESphere.js";
|
|
47
39
|
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
48
40
|
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
49
41
|
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
42
|
+
import "../../shared-utils/three/IObject3D.js";
|
|
50
43
|
import "../../shared-utils/three/boundingBox.js";
|
|
51
44
|
import "../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
52
45
|
import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
@@ -59,7 +52,11 @@ import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
|
59
52
|
import "../../CSS3DRenderPlugin/utils/even.js";
|
|
60
53
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
61
54
|
import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
55
|
+
import "../../shared-utils/three/centerPoint.js";
|
|
62
56
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
57
|
+
import "animejs";
|
|
58
|
+
import "../../shared-utils/isNil.js";
|
|
59
|
+
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
63
60
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
64
61
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
65
62
|
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
@@ -101,16 +98,20 @@ import "../../shared-utils/three/Assets/index.js";
|
|
|
101
98
|
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
102
99
|
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
103
100
|
import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
101
|
+
import "../../Sculpt/Meshes/Line.js";
|
|
102
|
+
import "../../Sculpt/typings/style.js";
|
|
103
|
+
import "../../shared-utils/five/FiveLine.js";
|
|
104
|
+
import "../../Sculpt/utils/removeAllTag.js";
|
|
105
|
+
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
106
|
+
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
104
107
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
105
108
|
import "../../shared-utils/isTouchDevice.js";
|
|
106
109
|
import "../../shared-utils/five/getPosition.js";
|
|
107
110
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
108
|
-
import "../../Sculpt/utils/removeAllTag.js";
|
|
109
|
-
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
110
111
|
import "../utils/formatData.js";
|
|
111
112
|
import "../Assets/floorplanExtraObject.js";
|
|
112
|
-
const
|
|
113
|
+
const lr = (o, r) => new t(o, r);
|
|
113
114
|
export {
|
|
114
|
-
|
|
115
|
-
|
|
115
|
+
lr as PanoFloorplanRadarPlugin,
|
|
116
|
+
lr as default
|
|
116
117
|
};
|