@realsee/dnalogel 3.77.5 → 3.77.7
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 +17 -11
- package/dist/PanoTagPlugin/controller/Tag/BaseTag.d.ts +5 -1
- package/dist/PanoTagPlugin/controller/Tag/BoxTag.d.ts +119 -0
- package/dist/PanoTagPlugin/controller/Tag/MaskTag.d.ts +257 -0
- package/dist/PanoTagPlugin/controller/Tag/MaskTag.shaders.d.ts +10 -0
- package/dist/PanoTagPlugin/controller/Tag/PolygonTag.d.ts +112 -0
- package/dist/PanoTagPlugin/controller/TagRender.d.ts +1 -1
- package/dist/PanoTagPlugin/controller/index.d.ts +55 -2
- package/dist/PanoTagPlugin/typings/controller.d.ts +10 -0
- package/dist/PanoTagPlugin/typings/tag/Tag.d.ts +8 -3
- package/dist/PanoTagPlugin/typings/tag/Utils.d.ts +50 -1
- package/dist/PanoTagPlugin/utils/sculptDataToBoxPosition.d.ts +6 -0
- package/dist/PanoTagPlugin/utils/tag/tagCheck.d.ts +6 -0
- package/dist/PanoTagPlugin/utils/tagPosition.d.ts +12 -3
- package/dist/Sculpt/Meshes/Line.d.ts +4 -0
- package/dist/index.cjs.js +178 -95
- package/dist/index.js +11378 -9801
- package/dist/index.umd.js +173 -90
- package/dist/shared-utils/five/getFiveFromParentChain.d.ts +7 -0
- package/libs/AreaMakerPlugin/Controller.js +3 -2
- package/libs/AreaMakerPlugin/index.js +3 -2
- package/libs/AreaMakerPlugin/utils/Item.js +3 -2
- package/libs/CSS3DRenderPlugin/Controller.js +3 -2
- package/libs/CSS3DRenderPlugin/index.js +6 -5
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +39 -38
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +10 -9
- package/libs/CruisePlugin/BaseController.js +5 -4
- package/libs/CruisePlugin/Move.js +8 -2
- package/libs/CruisePlugin/Work.js +8 -2
- package/libs/CruisePlugin/index.js +12 -6
- package/libs/CurrentPanoImagePlugin/Controller.js +15 -14
- package/libs/CurrentPanoImagePlugin/index.js +4 -3
- package/libs/GuideLinePlugin/Controller.js +10 -4
- package/libs/GuideLinePlugin/GuideLineItem.js +8 -2
- package/libs/GuideLinePlugin/GuideLineModeItem.js +8 -2
- package/libs/GuideLinePlugin/index.js +12 -6
- package/libs/MeasurePlugin/Controller.js +11 -10
- package/libs/MeasurePlugin/index.js +5 -4
- package/libs/MeasurePlugin/utils/MeasureMesh.js +3 -2
- package/libs/ModelChassisCompassPlugin/Plugin.js +4 -3
- package/libs/ModelChassisCompassPlugin/index.js +1 -0
- package/libs/ModelEntryDoorGuidePlugin/Plugin.js +6 -5
- package/libs/ModelEntryDoorGuidePlugin/index.js +1 -0
- package/libs/ModelMakerPlugin/Controller.js +3 -2
- package/libs/ModelMakerPlugin/index.js +3 -2
- package/libs/ModelMakerPlugin/item/baseItem.js +3 -2
- package/libs/ModelMakerPlugin/item/boxItem.js +3 -2
- package/libs/ModelMakerPlugin/item/polygonItem.js +3 -2
- package/libs/ModelMakerPlugin/item/prismItem.js +3 -2
- package/libs/ModelTVVideoPlugin/Plugin.js +4 -3
- package/libs/ModelTVVideoPlugin/index.js +3 -2
- package/libs/ModelViewPlugin/Plugin.js +20 -19
- package/libs/ModelViewPlugin/index.js +1 -0
- package/libs/Object3DHelperPlugin/Controller.js +3 -2
- package/libs/Object3DHelperPlugin/index.js +6 -5
- package/libs/PanoCompassPlugin/Controller.js +3 -2
- package/libs/PanoCompassPlugin/index.js +4 -3
- package/libs/PanoDoorLabelPlugin/Controller.js +24 -23
- package/libs/PanoDoorLabelPlugin/index.js +4 -3
- package/libs/PanoMeasurePlugin/Components/Controller0.js +3 -2
- package/libs/PanoMeasurePlugin/Components/Controller1.js +3 -2
- package/libs/PanoMeasurePlugin/Controller/EditController.js +3 -2
- package/libs/PanoMeasurePlugin/Controller/WatchController.js +3 -2
- package/libs/PanoMeasurePlugin/Controller/index.js +3 -2
- package/libs/PanoMeasurePlugin/Model/area.js +3 -2
- package/libs/PanoMeasurePlugin/Modules/Magnifier.js +1 -0
- package/libs/PanoMeasurePlugin/Modules/UIController/index.js +16 -15
- package/libs/PanoMeasurePlugin/index.js +14 -13
- package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +3 -2
- package/libs/PanoRulerProPlugin/Controller.js +3 -2
- package/libs/PanoRulerProPlugin/RulerItems.js +42 -41
- package/libs/PanoRulerProPlugin/index.js +4 -3
- package/libs/PanoSpatialTagPlugin/Plugin.js +34 -33
- package/libs/PanoSpatialTagPlugin/index.js +1 -0
- package/libs/PanoTagPlugin/Components/Common/TagPoint.js +3 -2
- package/libs/PanoTagPlugin/Components/Common/TagPopover/PopoverContent.js +3 -2
- package/libs/PanoTagPlugin/Components/Common/TagPopover/TagPopoverToolBar.js +3 -2
- package/libs/PanoTagPlugin/Components/Common/TagPopover/index.js +3 -2
- package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +3 -2
- package/libs/PanoTagPlugin/Components/Tag/index.js +3 -2
- package/libs/PanoTagPlugin/Components/TagContainer.js +3 -2
- package/libs/PanoTagPlugin/Components/TagItem.js +125 -124
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.d.ts +5 -1
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +321 -289
- package/libs/PanoTagPlugin/controller/Tag/BoxTag.d.ts +119 -0
- package/libs/PanoTagPlugin/controller/Tag/BoxTag.js +516 -0
- package/libs/PanoTagPlugin/controller/Tag/MaskTag.d.ts +257 -0
- package/libs/PanoTagPlugin/controller/Tag/MaskTag.js +816 -0
- package/libs/PanoTagPlugin/controller/Tag/MaskTag.shaders.d.ts +10 -0
- package/libs/PanoTagPlugin/controller/Tag/MaskTag.shaders.js +94 -0
- package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +3 -2
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +3 -2
- package/libs/PanoTagPlugin/controller/Tag/PointTag.js +3 -2
- package/libs/PanoTagPlugin/controller/Tag/PolygonTag.d.ts +112 -0
- package/libs/PanoTagPlugin/controller/Tag/PolygonTag.js +479 -0
- package/libs/PanoTagPlugin/controller/TagRender.d.ts +1 -1
- package/libs/PanoTagPlugin/controller/TagRender.js +3 -2
- package/libs/PanoTagPlugin/controller/TagUtil.js +22 -19
- package/libs/PanoTagPlugin/controller/index.d.ts +55 -2
- package/libs/PanoTagPlugin/controller/index.js +243 -129
- package/libs/PanoTagPlugin/index.js +17 -11
- package/libs/PanoTagPlugin/typings/controller.d.ts +10 -0
- package/libs/PanoTagPlugin/typings/tag/Tag.d.ts +8 -3
- package/libs/PanoTagPlugin/typings/tag/Utils.d.ts +50 -1
- package/libs/PanoTagPlugin/utils/addDebugPoints.js +27 -13
- package/libs/PanoTagPlugin/utils/index.js +29 -26
- package/libs/PanoTagPlugin/utils/sculptDataToBoxPosition.d.ts +6 -0
- package/libs/PanoTagPlugin/utils/sculptDataToBoxPosition.js +18 -0
- package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +3 -2
- package/libs/PanoTagPlugin/utils/tag/format.js +3 -2
- package/libs/PanoTagPlugin/utils/tag/tagCheck.d.ts +6 -0
- package/libs/PanoTagPlugin/utils/tag/tagCheck.js +26 -14
- package/libs/PanoTagPlugin/utils/tagPosition.d.ts +12 -3
- package/libs/PanoTagPlugin/utils/tagPosition.js +49 -16
- package/libs/PanoVideoPlugin/Controller.js +9 -8
- package/libs/PanoVideoPlugin/VideoMeshController.js +3 -2
- package/libs/PanoVideoPlugin/index.js +6 -5
- package/libs/PipelinePlugin/Controller.js +3 -2
- package/libs/PipelinePlugin/index.js +4 -3
- package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +3 -2
- package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +3 -2
- package/libs/PipelinePlugin/utils/Objects/Pipe.js +1 -0
- package/libs/Sculpt/Meshes/Line.d.ts +4 -0
- package/libs/Sculpt/Meshes/Line.js +85 -76
- package/libs/Sculpt/Meshes/Point.js +28 -28
- package/libs/Sculpt/Meshes/Polygon.js +43 -43
- package/libs/Sculpt/index.js +1 -1
- package/libs/Sculpt/utils/Modules/Cursor.js +7 -7
- package/libs/base/BasePlugin.js +1 -1
- package/libs/floorplan/FloorplanGuidePlugin/Controller.js +3 -2
- package/libs/floorplan/FloorplanGuidePlugin/index.js +4 -3
- package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +3 -2
- package/libs/floorplan/MapviewFloorplanPlugin/index.js +4 -3
- package/libs/floorplan/ModelFloorplanPlugin/Controller.js +3 -2
- package/libs/floorplan/ModelFloorplanPlugin/index.js +4 -3
- package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +3 -2
- package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +4 -3
- package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +3 -2
- package/libs/floorplan/TopviewFloorplanPlugin/index.js +4 -3
- package/libs/index.js +164 -158
- package/libs/shared-utils/five/getFiveFromParentChain.d.ts +7 -0
- package/libs/shared-utils/five/getFiveFromParentChain.js +15 -0
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/three/PointSelector/utils/PointHelper2.js +1 -0
- package/package.json +1 -1
|
@@ -2,51 +2,52 @@ var f = Object.defineProperty, g = Object.defineProperties;
|
|
|
2
2
|
var I = Object.getOwnPropertyDescriptors;
|
|
3
3
|
var u = Object.getOwnPropertySymbols;
|
|
4
4
|
var D = Object.prototype.hasOwnProperty, _ = Object.prototype.propertyIsEnumerable;
|
|
5
|
-
var p = (
|
|
5
|
+
var p = (i, t, e) => t in i ? f(i, t, { enumerable: !0, configurable: !0, writable: !0, value: e }) : i[t] = e, h = (i, t) => {
|
|
6
6
|
for (var e in t || (t = {}))
|
|
7
|
-
D.call(t, e) && p(
|
|
7
|
+
D.call(t, e) && p(i, e, t[e]);
|
|
8
8
|
if (u)
|
|
9
9
|
for (var e of u(t))
|
|
10
|
-
_.call(t, e) && p(
|
|
11
|
-
return
|
|
12
|
-
}, y = (
|
|
13
|
-
var
|
|
10
|
+
_.call(t, e) && p(i, e, t[e]);
|
|
11
|
+
return i;
|
|
12
|
+
}, y = (i, t) => g(i, I(t));
|
|
13
|
+
var r = (i, t, e) => (p(i, typeof t != "symbol" ? t + "" : t, e), e);
|
|
14
14
|
import * as a from "three";
|
|
15
|
-
import { generatePolygonGeometry as
|
|
16
|
-
import { anyPositionToVector3 as
|
|
15
|
+
import { generatePolygonGeometry as H } from "../../shared-utils/three/generatePolygonGeometry.js";
|
|
16
|
+
import { anyPositionToVector3 as b } from "../../shared-utils/positionToVector3.js";
|
|
17
17
|
import { ColoredMesh as S } from "../utils/three/ColoredMesh.js";
|
|
18
18
|
import { getGeometryInfo as k } from "../../shared-utils/three/geometryUtil.js";
|
|
19
|
-
import { LightTag as
|
|
20
|
-
import { getLengthHTML as
|
|
21
|
-
import { localToWorld as
|
|
22
|
-
import {
|
|
19
|
+
import { LightTag as P } from "../../shared-utils/tag.js";
|
|
20
|
+
import { getLengthHTML as v } from "../utils/Meshes/getLengthHTML.js";
|
|
21
|
+
import { localToWorld as F } from "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
22
|
+
import { getFiveFromParentChain as A } from "../../shared-utils/five/getFiveFromParentChain.js";
|
|
23
|
+
import { transformUnitSquare as U } from "../utils/unit.js";
|
|
23
24
|
import { RenderDom as m } from "../utils/renderDom.js";
|
|
24
|
-
const
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
class
|
|
25
|
+
const c = new a.BufferGeometry();
|
|
26
|
+
c.name = "blankGeometry";
|
|
27
|
+
c.isBlank = !0;
|
|
28
|
+
class G extends S {
|
|
28
29
|
constructor(e) {
|
|
29
30
|
super(e);
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
31
|
+
r(this, "name", "PolygonMesh");
|
|
32
|
+
r(this, "points", []);
|
|
33
|
+
r(this, "planeHelperNeedUpdate", !0);
|
|
34
|
+
r(this, "geometryInfoNeedUpdate", !0);
|
|
35
|
+
r(this, "_paramsStyle");
|
|
36
|
+
r(this, "areaDom");
|
|
37
|
+
r(this, "planeHelper", null);
|
|
38
|
+
r(this, "_geometryInfo", null);
|
|
39
|
+
r(this, "lastRenderAreaItem");
|
|
40
|
+
r(this, "_onAdded", () => {
|
|
40
41
|
this.areaDom || this.updateAreaItems();
|
|
41
42
|
});
|
|
42
|
-
|
|
43
|
+
r(this, "_onRemoved", () => {
|
|
43
44
|
var e;
|
|
44
45
|
(e = this.areaDom) == null || e.destroy(), this.areaDom = void 0;
|
|
45
46
|
});
|
|
46
|
-
|
|
47
|
+
r(this, "_onShowed", () => {
|
|
47
48
|
this.areaDom && (this.areaDom.container.style.display = "block");
|
|
48
49
|
});
|
|
49
|
-
|
|
50
|
+
r(this, "_onHidden", () => {
|
|
50
51
|
this.areaDom && (this.areaDom.container.style.display = "none");
|
|
51
52
|
});
|
|
52
53
|
e != null && e.points && this.setPoints(e.points), this._paramsStyle = e != null ? e : {}, this.updateAreaItems(), this.addEventListener("removed", () => {
|
|
@@ -72,25 +73,24 @@ class j extends S {
|
|
|
72
73
|
return this.geometryInfoNeedUpdate && (this.isBlank ? this._geometryInfo = null : this._geometryInfo = k(this.geometry), this.geometryInfoNeedUpdate = !1), this._geometryInfo;
|
|
73
74
|
}
|
|
74
75
|
get five() {
|
|
75
|
-
|
|
76
|
-
return (r = (e = window.globalModules) == null ? void 0 : e.five) != null ? r : window.$five;
|
|
76
|
+
return A(this);
|
|
77
77
|
}
|
|
78
78
|
updateMatrixWorld(e) {
|
|
79
79
|
if (super.updateMatrixWorld(e), this.center) {
|
|
80
|
-
const
|
|
81
|
-
|
|
80
|
+
const s = F(this, this.center).toArray().join(",");
|
|
81
|
+
s !== this.lastRenderAreaItem && (this.updateAreaItems(), this.lastRenderAreaItem = s);
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
setStyle(e) {
|
|
85
85
|
var n;
|
|
86
86
|
this._paramsStyle = h(h({}, this._paramsStyle), e), super.setStyle(this._paramsStyle);
|
|
87
|
-
const
|
|
88
|
-
this.areaDom && (this.areaDom.intersectCheck = !
|
|
87
|
+
const s = (n = this._paramsStyle.occlusionVisibility) != null ? n : !0;
|
|
88
|
+
this.areaDom && (this.areaDom.intersectCheck = !s), this.updateAreaItems();
|
|
89
89
|
}
|
|
90
|
-
setPoints(e,
|
|
90
|
+
setPoints(e, s) {
|
|
91
91
|
var o, l;
|
|
92
|
-
const n = e.map(
|
|
93
|
-
this.points = n, this.geometry = (l =
|
|
92
|
+
const n = e.map(b);
|
|
93
|
+
this.points = n, this.geometry = (l = H(this.points, { checkLinesIntersect: (o = s == null ? void 0 : s.checkLinesIntersect) != null ? o : !0 })) != null ? l : c, this.planeHelperNeedUpdate = !0, this.geometryInfoNeedUpdate = !0, this.updateAreaItems();
|
|
94
94
|
}
|
|
95
95
|
/**
|
|
96
96
|
* @description: 获取一个点投影在当前平面上的点
|
|
@@ -112,16 +112,16 @@ class j extends S {
|
|
|
112
112
|
if (!this.five)
|
|
113
113
|
return console.error("Five not found");
|
|
114
114
|
this.areaDom = (n = this.areaDom) != null ? n : (() => {
|
|
115
|
-
var
|
|
116
|
-
const o = new
|
|
115
|
+
var d;
|
|
116
|
+
const o = new P(this.five), l = (d = this._paramsStyle.occlusionVisibility) != null ? d : !0;
|
|
117
117
|
return o.intersectCheck = !l, o.simulate3D = !0, o;
|
|
118
118
|
})(), this.areaDom.setPosition(this.center);
|
|
119
|
-
const
|
|
120
|
-
|
|
119
|
+
const s = U(this.geometryInfo.area, this._paramsStyle.lengthUnit);
|
|
120
|
+
s ? this.areaDom.container.innerHTML = v(s, {
|
|
121
121
|
style: "color: #FFFFFF; background: #3366FF"
|
|
122
122
|
}) : this.areaDom.container.innerHTML = "";
|
|
123
123
|
}
|
|
124
124
|
}
|
|
125
125
|
export {
|
|
126
|
-
|
|
126
|
+
G as PolygonMesh
|
|
127
127
|
};
|
package/libs/Sculpt/index.js
CHANGED
|
@@ -90,7 +90,7 @@ const d = class extends E {
|
|
|
90
90
|
});
|
|
91
91
|
this.five = e, this.theme = t, this.config = g({
|
|
92
92
|
magnifier: { width: 190, height: 190, scale: 2, dragEnabled: !0 }
|
|
93
|
-
}, i), this.group = new z(), this.group.name = "Sculpt", this.group.__sculpt__ = this, e.scene.add(this.group), d.modules.init(e, this.config), x("ctrl+z, command+z", this.undo), x("ctrl+shift+z, command+shift+z", this.redo), d.modules.fiveDomEvents.addEventListener(this.group, "click", ({ intersects: c, origDomEvent: s }) => {
|
|
93
|
+
}, i), this.group = new z(), this.group.name = "Sculpt", this.group.__sculpt__ = this, this.group.__five__ = this.five, e.scene.add(this.group), d.modules.init(e, this.config), x("ctrl+z, command+z", this.undo), x("ctrl+shift+z, command+shift+z", this.redo), d.modules.fiveDomEvents.addEventListener(this.group, "click", ({ intersects: c, origDomEvent: s }) => {
|
|
94
94
|
var o;
|
|
95
95
|
const r = F((o = c == null ? void 0 : c[0]) == null ? void 0 : o.object, (h) => h.isSculptObject);
|
|
96
96
|
return r && !r.editing ? this.emit("click", s, r) : !1;
|
|
@@ -2,8 +2,8 @@ var l = Object.defineProperty;
|
|
|
2
2
|
var u = (n, e, o) => e in n ? l(n, e, { enumerable: !0, configurable: !0, writable: !0, value: o }) : n[e] = o;
|
|
3
3
|
var r = (n, e, o) => (u(n, typeof e != "symbol" ? e + "" : e, o), o);
|
|
4
4
|
import { DeleteButtonBgBorder as a } from "./DeleteButtonBgBorder.js";
|
|
5
|
-
import { DeleteIconSVG as
|
|
6
|
-
const
|
|
5
|
+
import { DeleteIconSVG as d } from "./DeleteIconSVG.js";
|
|
6
|
+
const p = {
|
|
7
7
|
auto: "",
|
|
8
8
|
pen: "",
|
|
9
9
|
"pen-forbidden": "",
|
|
@@ -13,7 +13,7 @@ const d = {
|
|
|
13
13
|
"crosshair-rectangle": "",
|
|
14
14
|
"crosshair-circle": ""
|
|
15
15
|
}, h = {
|
|
16
|
-
position: "
|
|
16
|
+
position: "fixed",
|
|
17
17
|
width: "34px",
|
|
18
18
|
height: "34px",
|
|
19
19
|
transform: "translate(-50%, -40px)",
|
|
@@ -30,10 +30,10 @@ const d = {
|
|
|
30
30
|
backgroundRepeat: "no-repeat"
|
|
31
31
|
}, m = `
|
|
32
32
|
<div style="width: 32px; height: 32px; background-color: rgba(0, 0, 0, 0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center;">
|
|
33
|
-
${
|
|
33
|
+
${d}
|
|
34
34
|
</div>
|
|
35
35
|
`;
|
|
36
|
-
class
|
|
36
|
+
class f {
|
|
37
37
|
constructor(e) {
|
|
38
38
|
r(this, "container");
|
|
39
39
|
r(this, "deleteButton");
|
|
@@ -43,7 +43,7 @@ class B {
|
|
|
43
43
|
* @param type - The type of the cursor.
|
|
44
44
|
*/
|
|
45
45
|
setType(e) {
|
|
46
|
-
const o =
|
|
46
|
+
const o = p[e];
|
|
47
47
|
o ? this.container.style.cursor = `url(${o}), auto` : this.container.style.cursor = e;
|
|
48
48
|
}
|
|
49
49
|
showDeleteButton(e) {
|
|
@@ -66,5 +66,5 @@ class B {
|
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
68
|
export {
|
|
69
|
-
|
|
69
|
+
f as Cursor
|
|
70
70
|
};
|
package/libs/base/BasePlugin.js
CHANGED
|
@@ -102,6 +102,7 @@ import "../../shared-utils/three/IObject3D.js";
|
|
|
102
102
|
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
103
103
|
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
104
104
|
import "../../shared-utils/util.js";
|
|
105
|
+
import "../../shared-utils/five/getFiveFromParentChain.js";
|
|
105
106
|
import "../../shared-utils/three/core/LineGeometry.js";
|
|
106
107
|
import "../../shared-utils/three/core/LineMaterial.js";
|
|
107
108
|
import "../../shared-utils/three/core/Line2.js";
|
|
@@ -123,7 +124,7 @@ import "../../shared-utils/url/absoluteUrl.js";
|
|
|
123
124
|
import "../../shared-utils/isTruelyObject.js";
|
|
124
125
|
import "../../base/BasePlugin.js";
|
|
125
126
|
import "../Assets/floorplanExtraObject.js";
|
|
126
|
-
class
|
|
127
|
+
class Fi extends k {
|
|
127
128
|
constructor(t, i) {
|
|
128
129
|
var o, s;
|
|
129
130
|
super(t);
|
|
@@ -345,5 +346,5 @@ class Si extends k {
|
|
|
345
346
|
}
|
|
346
347
|
}
|
|
347
348
|
export {
|
|
348
|
-
|
|
349
|
+
Fi as Controller
|
|
349
350
|
};
|
|
@@ -71,6 +71,7 @@ import "../../Sculpt/typings/style.js";
|
|
|
71
71
|
import "../../shared-utils/three/IObject3D.js";
|
|
72
72
|
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
73
73
|
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
74
|
+
import "../../shared-utils/five/getFiveFromParentChain.js";
|
|
74
75
|
import "../../shared-utils/three/core/LineGeometry.js";
|
|
75
76
|
import "../../shared-utils/three/core/LineMaterial.js";
|
|
76
77
|
import "../../shared-utils/three/core/Line2.js";
|
|
@@ -95,8 +96,8 @@ import "../../base/BasePluginWithData.js";
|
|
|
95
96
|
import "../../base/BasePlugin.js";
|
|
96
97
|
import "../utils/formatData.js";
|
|
97
98
|
import "../Assets/floorplanExtraObject.js";
|
|
98
|
-
const
|
|
99
|
+
const Wo = (o, r) => new t(o, r);
|
|
99
100
|
export {
|
|
100
|
-
|
|
101
|
-
|
|
101
|
+
Wo as FloorplanGuidePlugin,
|
|
102
|
+
Wo as default
|
|
102
103
|
};
|
|
@@ -129,6 +129,7 @@ import "../../shared-utils/three/IObject3D.js";
|
|
|
129
129
|
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
130
130
|
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
131
131
|
import "../../shared-utils/util.js";
|
|
132
|
+
import "../../shared-utils/five/getFiveFromParentChain.js";
|
|
132
133
|
import "../../shared-utils/three/core/LineGeometry.js";
|
|
133
134
|
import "../../shared-utils/three/core/LineMaterial.js";
|
|
134
135
|
import "../../shared-utils/three/core/Line2.js";
|
|
@@ -156,7 +157,7 @@ function Q(l) {
|
|
|
156
157
|
const { latitude: h, longitude: t } = l, e = Math.abs(h - Math.PI / 2) < 10 * Math.PI / 180, i = t < 30 * (Math.PI / 180) || t > 330 * (Math.PI / 180);
|
|
157
158
|
return e && i;
|
|
158
159
|
}
|
|
159
|
-
class
|
|
160
|
+
class ci extends j {
|
|
160
161
|
constructor(t, e) {
|
|
161
162
|
var a, m;
|
|
162
163
|
super(t);
|
|
@@ -555,5 +556,5 @@ class pi extends j {
|
|
|
555
556
|
}
|
|
556
557
|
}
|
|
557
558
|
export {
|
|
558
|
-
|
|
559
|
+
ci as Controller
|
|
559
560
|
};
|
|
@@ -94,6 +94,7 @@ import "../../Sculpt/typings/style.js";
|
|
|
94
94
|
import "../../shared-utils/three/IObject3D.js";
|
|
95
95
|
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
96
96
|
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
97
|
+
import "../../shared-utils/five/getFiveFromParentChain.js";
|
|
97
98
|
import "../../shared-utils/three/core/LineGeometry.js";
|
|
98
99
|
import "../../shared-utils/three/core/LineMaterial.js";
|
|
99
100
|
import "../../shared-utils/three/core/Line2.js";
|
|
@@ -119,8 +120,8 @@ import "../../shared-utils/translateMode/getDistanceFromModel.js";
|
|
|
119
120
|
import "../../shared-utils/changeModelCanvasOpacity.js";
|
|
120
121
|
import "../../shared-utils/url/replace-static-prefix.js";
|
|
121
122
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
122
|
-
const
|
|
123
|
+
const xr = (o, r) => new t(o, r);
|
|
123
124
|
export {
|
|
124
|
-
|
|
125
|
-
|
|
125
|
+
xr as MapviewFloorplanPlugin,
|
|
126
|
+
xr as default
|
|
126
127
|
};
|
|
@@ -128,6 +128,7 @@ import "../../shared-utils/three/IObject3D.js";
|
|
|
128
128
|
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
129
129
|
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
130
130
|
import "../../shared-utils/util.js";
|
|
131
|
+
import "../../shared-utils/five/getFiveFromParentChain.js";
|
|
131
132
|
import "../../shared-utils/three/core/LineGeometry.js";
|
|
132
133
|
import "../../shared-utils/three/core/LineMaterial.js";
|
|
133
134
|
import "../../shared-utils/three/core/Line2.js";
|
|
@@ -154,7 +155,7 @@ function B(l) {
|
|
|
154
155
|
const { latitude: a, longitude: t } = l, e = Math.abs(a - Math.PI / 2) < 10 * Math.PI / 180, i = t < 30 * (Math.PI / 180) || t > 330 * (Math.PI / 180);
|
|
155
156
|
return e && i;
|
|
156
157
|
}
|
|
157
|
-
class
|
|
158
|
+
class oi extends k {
|
|
158
159
|
constructor(t, e) {
|
|
159
160
|
var n, m, c;
|
|
160
161
|
super(t);
|
|
@@ -516,5 +517,5 @@ class ii extends k {
|
|
|
516
517
|
}
|
|
517
518
|
}
|
|
518
519
|
export {
|
|
519
|
-
|
|
520
|
+
oi as Controller
|
|
520
521
|
};
|
|
@@ -94,6 +94,7 @@ import "../../Sculpt/typings/style.js";
|
|
|
94
94
|
import "../../shared-utils/three/IObject3D.js";
|
|
95
95
|
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
96
96
|
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
97
|
+
import "../../shared-utils/five/getFiveFromParentChain.js";
|
|
97
98
|
import "../../shared-utils/three/core/LineGeometry.js";
|
|
98
99
|
import "../../shared-utils/three/core/LineMaterial.js";
|
|
99
100
|
import "../../shared-utils/three/core/Line2.js";
|
|
@@ -118,8 +119,8 @@ import "../../shared-utils/translateMode/getDistanceFromModel.js";
|
|
|
118
119
|
import "../../shared-utils/changeModelCanvasOpacity.js";
|
|
119
120
|
import "../../shared-utils/url/replace-static-prefix.js";
|
|
120
121
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
121
|
-
const
|
|
122
|
+
const xr = (o, r) => new t(o, r);
|
|
122
123
|
export {
|
|
123
|
-
|
|
124
|
-
|
|
124
|
+
xr as ModelFloorplanPlugin,
|
|
125
|
+
xr as default
|
|
125
126
|
};
|
|
@@ -98,6 +98,7 @@ import "../../shared-utils/three/IObject3D.js";
|
|
|
98
98
|
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
99
99
|
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
100
100
|
import "../../shared-utils/util.js";
|
|
101
|
+
import "../../shared-utils/five/getFiveFromParentChain.js";
|
|
101
102
|
import "../../shared-utils/three/core/LineGeometry.js";
|
|
102
103
|
import "../../shared-utils/three/core/LineMaterial.js";
|
|
103
104
|
import "../../shared-utils/three/core/Line2.js";
|
|
@@ -116,7 +117,7 @@ import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
|
116
117
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
117
118
|
import "@realsee/five";
|
|
118
119
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
119
|
-
class
|
|
120
|
+
class li extends O {
|
|
120
121
|
constructor(t, i) {
|
|
121
122
|
super(t);
|
|
122
123
|
// =============== public properties =================
|
|
@@ -259,5 +260,5 @@ class di extends O {
|
|
|
259
260
|
}
|
|
260
261
|
}
|
|
261
262
|
export {
|
|
262
|
-
|
|
263
|
+
li as Controller
|
|
263
264
|
};
|
|
@@ -68,6 +68,7 @@ import "../../Sculpt/typings/style.js";
|
|
|
68
68
|
import "../../shared-utils/three/IObject3D.js";
|
|
69
69
|
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
70
70
|
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
71
|
+
import "../../shared-utils/five/getFiveFromParentChain.js";
|
|
71
72
|
import "../../shared-utils/three/core/LineGeometry.js";
|
|
72
73
|
import "../../shared-utils/three/core/LineMaterial.js";
|
|
73
74
|
import "../../shared-utils/three/core/Line2.js";
|
|
@@ -88,8 +89,8 @@ import "../utils/formatData.js";
|
|
|
88
89
|
import "../Assets/floorplanExtraObject.js";
|
|
89
90
|
import "../../shared-utils/url/replace-static-prefix.js";
|
|
90
91
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
91
|
-
const
|
|
92
|
+
const No = (o, r) => new t(o, r);
|
|
92
93
|
export {
|
|
93
|
-
|
|
94
|
-
|
|
94
|
+
No as PanoFloorplanRadarPlugin,
|
|
95
|
+
No as default
|
|
95
96
|
};
|
|
@@ -125,6 +125,7 @@ import "../../shared-utils/three/IObject3D.js";
|
|
|
125
125
|
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
126
126
|
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
127
127
|
import "../../shared-utils/util.js";
|
|
128
|
+
import "../../shared-utils/five/getFiveFromParentChain.js";
|
|
128
129
|
import "../../shared-utils/three/core/LineGeometry.js";
|
|
129
130
|
import "../../shared-utils/three/core/LineMaterial.js";
|
|
130
131
|
import "../../shared-utils/three/core/Line2.js";
|
|
@@ -143,7 +144,7 @@ import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
|
143
144
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
144
145
|
import "@realsee/five";
|
|
145
146
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
146
|
-
class
|
|
147
|
+
class Ji extends M {
|
|
147
148
|
constructor(t, i) {
|
|
148
149
|
var h, l;
|
|
149
150
|
super(t);
|
|
@@ -417,5 +418,5 @@ class qi extends M {
|
|
|
417
418
|
}
|
|
418
419
|
}
|
|
419
420
|
export {
|
|
420
|
-
|
|
421
|
+
Ji as Controller
|
|
421
422
|
};
|
|
@@ -92,6 +92,7 @@ import "../../Sculpt/typings/style.js";
|
|
|
92
92
|
import "../../shared-utils/three/IObject3D.js";
|
|
93
93
|
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
94
94
|
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
95
|
+
import "../../shared-utils/five/getFiveFromParentChain.js";
|
|
95
96
|
import "../../shared-utils/three/core/LineGeometry.js";
|
|
96
97
|
import "../../shared-utils/three/core/LineMaterial.js";
|
|
97
98
|
import "../../shared-utils/three/core/Line2.js";
|
|
@@ -115,8 +116,8 @@ import "../../shared-utils/getPxmm.js";
|
|
|
115
116
|
import "../../shared-utils/changeModelCanvasOpacity.js";
|
|
116
117
|
import "../../shared-utils/url/replace-static-prefix.js";
|
|
117
118
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
118
|
-
const
|
|
119
|
+
const cr = (o, r) => new t(o, r);
|
|
119
120
|
export {
|
|
120
|
-
|
|
121
|
-
|
|
121
|
+
cr as TopviewFloorplanPlugin,
|
|
122
|
+
cr as default
|
|
122
123
|
};
|