@realsee/dnalogel 3.74.2 → 3.74.4-alpha.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 +8 -0
- package/dist/floorplan/utils/correctFiveState.d.ts +1 -0
- package/dist/index.cjs.js +52 -52
- package/dist/index.js +1602 -1585
- package/dist/index.umd.js +45 -45
- package/dist/shared-utils/translateMode/getDistanceFromModel.d.ts +2 -0
- package/libs/PanoTagPlugin/Components/TagContainer.js +107 -102
- package/libs/PanoTagPlugin/controller/Tag/PointTag.js +23 -21
- package/libs/base/BasePlugin.js +5 -5
- 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/utils/correctFiveState.d.ts +1 -0
- package/libs/floorplan/utils/correctFiveState.js +33 -30
- package/libs/index.js +151 -150
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/translateMode/getDistanceFromModel.d.ts +2 -0
- package/libs/shared-utils/translateMode/getDistanceFromModel.js +11 -0
- package/package.json +1 -1
|
@@ -1,54 +1,57 @@
|
|
|
1
|
-
var l = (
|
|
2
|
-
var
|
|
1
|
+
var l = (t, r, o) => new Promise((m, n) => {
|
|
2
|
+
var f = (e) => {
|
|
3
3
|
try {
|
|
4
|
-
|
|
5
|
-
} catch (
|
|
6
|
-
n(
|
|
4
|
+
i(o.next(e));
|
|
5
|
+
} catch (u) {
|
|
6
|
+
n(u);
|
|
7
7
|
}
|
|
8
|
-
}, a = (
|
|
8
|
+
}, a = (e) => {
|
|
9
9
|
try {
|
|
10
|
-
|
|
11
|
-
} catch (
|
|
12
|
-
n(
|
|
10
|
+
i(o.throw(e));
|
|
11
|
+
} catch (u) {
|
|
12
|
+
n(u);
|
|
13
13
|
}
|
|
14
|
-
},
|
|
15
|
-
|
|
14
|
+
}, i = (e) => e.done ? m(e.value) : Promise.resolve(e.value).then(f, a);
|
|
15
|
+
i((o = o.apply(t, r)).next());
|
|
16
16
|
});
|
|
17
17
|
import { to as s } from "../../shared-utils/to.js";
|
|
18
|
-
import { FloorplanErrorType as
|
|
18
|
+
import { FloorplanErrorType as g } from "./constant.js";
|
|
19
19
|
import { nearlyEqual as d } from "../../shared-utils/nearlyEqual.js";
|
|
20
|
-
import { changeMode as
|
|
21
|
-
import { omit as
|
|
22
|
-
|
|
23
|
-
|
|
20
|
+
import { changeMode as C } from "../../shared-utils/five/changeMode.js";
|
|
21
|
+
import { omit as E } from "../../shared-utils/filter.js";
|
|
22
|
+
import { getDistanceFromModel as y } from "../../shared-utils/translateMode/getDistanceFromModel.js";
|
|
23
|
+
function h(t, r) {
|
|
24
|
+
if (t.currentMode !== r.mode)
|
|
24
25
|
return !1;
|
|
25
|
-
const { latitude: o, longitude: m, fov: n, offset:
|
|
26
|
-
return !(!d(o, a, 2) || !d(m,
|
|
26
|
+
const { latitude: o, longitude: m, fov: n, offset: f } = r, { latitude: a, longitude: i, offset: e } = t.getCurrentState(), u = t.camera.fov;
|
|
27
|
+
return !(!d(o, a, 2) || !d(m, i, 2) || f !== void 0 && f.distanceTo(e) > 0.01 || !d(n, u, 2));
|
|
27
28
|
}
|
|
28
|
-
function
|
|
29
|
+
function x(t, r, o = !0) {
|
|
29
30
|
return l(this, null, function* () {
|
|
30
|
-
if (h(
|
|
31
|
+
if (h(t, r) === !0)
|
|
31
32
|
return;
|
|
32
|
-
const n =
|
|
33
|
-
if (n.mode !==
|
|
34
|
-
const
|
|
33
|
+
const n = t.getCurrentState();
|
|
34
|
+
if (n.mode !== r.mode) {
|
|
35
|
+
const p = t.models.find((M) => M.name === t.state.workCode);
|
|
36
|
+
r.distance = y(p, r.fov, t.camera.aspect);
|
|
37
|
+
const [c] = yield s(C(t, [r.mode, r, void 0, o]));
|
|
35
38
|
if (c)
|
|
36
39
|
throw c;
|
|
37
40
|
return;
|
|
38
41
|
}
|
|
39
|
-
const { latitude:
|
|
42
|
+
const { latitude: f, longitude: a, fov: i } = n, e = Math.min(
|
|
40
43
|
1e3,
|
|
41
44
|
Math.max(
|
|
42
45
|
200,
|
|
43
|
-
Math.abs(
|
|
46
|
+
Math.abs(f - Math.PI / 2) * 1e3,
|
|
44
47
|
(a > Math.PI ? 2 * Math.PI - a : a) * 500,
|
|
45
|
-
typeof
|
|
48
|
+
typeof r.fov == "number" ? Math.abs(i - r.fov) * 10 : 1 / 0
|
|
46
49
|
)
|
|
47
|
-
), [
|
|
48
|
-
if (
|
|
49
|
-
throw new Error(
|
|
50
|
+
), [u] = yield s(t.updateCamera(E(r, ["mode"]), e, o));
|
|
51
|
+
if (u)
|
|
52
|
+
throw new Error(g.UpdateCameraError);
|
|
50
53
|
});
|
|
51
54
|
}
|
|
52
55
|
export {
|
|
53
|
-
|
|
56
|
+
x as correctFiveState
|
|
54
57
|
};
|
package/libs/index.js
CHANGED
|
@@ -1,74 +1,74 @@
|
|
|
1
1
|
import { consoleVersion as o } from "./shared-utils/logger.js";
|
|
2
2
|
import { autoFixOffscreenCanvas as r } from "./shared-utils/offscreenCanvas.js";
|
|
3
|
-
import { PaintBrush as
|
|
4
|
-
import { PaintBrushTypeEnum as
|
|
5
|
-
import { ModelViewPlugin as
|
|
6
|
-
import { CSS3DRenderPlugin as
|
|
7
|
-
import { PanoCursorRaycasterPlugin as
|
|
8
|
-
import { ModelRoomLabelPlugin as
|
|
9
|
-
import { FLOOR_PLAN_ATTACHED_TO as
|
|
10
|
-
import { ModelFloorplanPlugin as
|
|
11
|
-
import { MapviewFloorplanPlugin as
|
|
12
|
-
import { TopviewFloorplanPlugin as
|
|
13
|
-
import { PanoFloorplanRadarPlugin as
|
|
14
|
-
import { FloorplanGuidePlugin as
|
|
15
|
-
import { FLOOR_TYPE_MAP as
|
|
16
|
-
import { ModelChassisCompassPlugin as
|
|
17
|
-
import { ModelEntryDoorGuidePlugin as
|
|
18
|
-
import { CameraMovementPlugin as
|
|
19
|
-
import { CameraMovementEffect as
|
|
20
|
-
import { PanoRulerPlugin as
|
|
21
|
-
import { PanoRulerProPlugin as
|
|
22
|
-
import { PanoCompassPlugin as
|
|
23
|
-
import { PanoMeasurePlugin as
|
|
24
|
-
import { MeasurePlugin as
|
|
25
|
-
import { PanoSpatialTagPlugin as
|
|
26
|
-
import { modelItemLabelPluginServerParams as
|
|
27
|
-
import { ModelTVVideoPlugin as
|
|
28
|
-
import { DIRECTION as
|
|
29
|
-
import { itemLabelPluginServerParams as
|
|
30
|
-
import { PanoDoorLabelPlugin as
|
|
31
|
-
import { GuideLinePlugin as
|
|
32
|
-
import { CruisePlugin as
|
|
33
|
-
import { PanoTagPlugin as
|
|
34
|
-
import { Object3DHelperPlugin as
|
|
35
|
-
import { PanoVideoPlugin as
|
|
36
|
-
import { PipelinePlugin as
|
|
37
|
-
import { AreaMakerPlugin as
|
|
38
|
-
import { CurrentPanoImagePlugin as
|
|
39
|
-
import { Sculpt as
|
|
40
|
-
import { ModelMakerPlugin as
|
|
41
|
-
import { exports as
|
|
42
|
-
import { CSS3DRender as
|
|
43
|
-
import { Model as
|
|
44
|
-
import { default as
|
|
45
|
-
import { default as
|
|
46
|
-
import { Polyline as
|
|
47
|
-
import { Magnifier as
|
|
48
|
-
import { validatePolygon as
|
|
49
|
-
import { DISPLAY_STRATEGY_TYPE as
|
|
50
|
-
import { ModelItemLabelPlugin as
|
|
51
|
-
import { ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE as
|
|
52
|
-
import { Plugin as
|
|
53
|
-
import { GuideLineItem$1 as
|
|
54
|
-
import { GuideLineModeItem$1 as
|
|
55
|
-
import { default as
|
|
56
|
-
import { default as
|
|
57
|
-
import { typing as
|
|
58
|
-
import { default as
|
|
59
|
-
import { defaultGlobalConfig as
|
|
60
|
-
import { ContentType as
|
|
61
|
-
import { Object3DHelperController as
|
|
62
|
-
import { typings as
|
|
63
|
-
import { createPoint as
|
|
64
|
-
import { createLine as
|
|
65
|
-
import { createPolyline as
|
|
66
|
-
import { createPolygon as
|
|
67
|
-
import { createPrism as
|
|
68
|
-
import { createRectangle as
|
|
69
|
-
import { createCircle as
|
|
70
|
-
import { createCylinder as
|
|
71
|
-
import { createBox as
|
|
3
|
+
import { PaintBrush as An } from "./components/PaintBrush/index.js";
|
|
4
|
+
import { PaintBrushTypeEnum as Gn } from "./components/PaintBrush/typings.js";
|
|
5
|
+
import { ModelViewPlugin as bn } from "./ModelViewPlugin/Plugin.js";
|
|
6
|
+
import { CSS3DRenderPlugin as Vn } from "./CSS3DRenderPlugin/index.js";
|
|
7
|
+
import { PanoCursorRaycasterPlugin as Nn } from "./PanoCursorRaycasterPlugin/index.js";
|
|
8
|
+
import { ModelRoomLabelPlugin as kn, modelRoomLabelPluginServerParams as wn } from "./ModelRoomLabelPlugin/index.js";
|
|
9
|
+
import { FLOOR_PLAN_ATTACHED_TO as Un } from "./floorplan/constant.js";
|
|
10
|
+
import { ModelFloorplanPlugin as $n } from "./floorplan/ModelFloorplanPlugin/index.js";
|
|
11
|
+
import { MapviewFloorplanPlugin as qn } from "./floorplan/MapviewFloorplanPlugin/index.js";
|
|
12
|
+
import { TopviewFloorplanPlugin as Jn } from "./floorplan/TopviewFloorplanPlugin/index.js";
|
|
13
|
+
import { PanoFloorplanRadarPlugin as Qn } from "./floorplan/PanoFloorplanRadarPlugin/index.js";
|
|
14
|
+
import { FloorplanGuidePlugin as Zn } from "./floorplan/FloorplanGuidePlugin/index.js";
|
|
15
|
+
import { FLOOR_TYPE_MAP as ra, ROOM_FETILE_TYPE_MAP as ta, ROOM_TYPE_MAP as ia } from "./floorplan/typings/floorplanServerData.js";
|
|
16
|
+
import { ModelChassisCompassPlugin as pa } from "./ModelChassisCompassPlugin/Plugin.js";
|
|
17
|
+
import { ModelEntryDoorGuidePlugin as la } from "./ModelEntryDoorGuidePlugin/Plugin.js";
|
|
18
|
+
import { CameraMovementPlugin as aa } from "./CameraMovementPlugin/CameraMovementPlugin.js";
|
|
19
|
+
import { CameraMovementEffect as fa, Rotation as ua } from "./CameraMovementPlugin/typing.js";
|
|
20
|
+
import { PanoRulerPlugin as ga } from "./PanoRulerPlugin/Plugin.js";
|
|
21
|
+
import { PanoRulerProPlugin as da } from "./PanoRulerProPlugin/index.js";
|
|
22
|
+
import { PanoCompassPlugin as Ta } from "./PanoCompassPlugin/index.js";
|
|
23
|
+
import { PanoMeasurePlugin as La } from "./PanoMeasurePlugin/index.js";
|
|
24
|
+
import { MeasurePlugin as Ra } from "./MeasurePlugin/index.js";
|
|
25
|
+
import { PanoSpatialTagPlugin as ya } from "./PanoSpatialTagPlugin/Plugin.js";
|
|
26
|
+
import { modelItemLabelPluginServerParams as Ia } from "./ModelItemLabelPlugin/index.js";
|
|
27
|
+
import { ModelTVVideoPlugin as Oa } from "./ModelTVVideoPlugin/Plugin.js";
|
|
28
|
+
import { DIRECTION as Aa } from "./ModelTVVideoPlugin/typings.js";
|
|
29
|
+
import { itemLabelPluginServerParams as Ga } from "./ItemLabelPlugin/index.js";
|
|
30
|
+
import { PanoDoorLabelPlugin as ba } from "./PanoDoorLabelPlugin/index.js";
|
|
31
|
+
import { GuideLinePlugin as Va } from "./GuideLinePlugin/index.js";
|
|
32
|
+
import { CruisePlugin as Na, MovePlugin as ha } from "./CruisePlugin/index.js";
|
|
33
|
+
import { PanoTagPlugin as wa } from "./PanoTagPlugin/index.js";
|
|
34
|
+
import { Object3DHelperPlugin as Ua } from "./Object3DHelperPlugin/index.js";
|
|
35
|
+
import { PanoVideoPlugin as $a } from "./PanoVideoPlugin/index.js";
|
|
36
|
+
import { PipelinePlugin as qa } from "./PipelinePlugin/index.js";
|
|
37
|
+
import { AreaMakerPlugin as Ja } from "./AreaMakerPlugin/index.js";
|
|
38
|
+
import { CurrentPanoImagePlugin as Qa } from "./CurrentPanoImagePlugin/index.js";
|
|
39
|
+
import { Sculpt as Za, SculptPlugin as oP, SculptPluginForFive as rP } from "./Sculpt/index.js";
|
|
40
|
+
import { ModelMakerPlugin as iP } from "./ModelMakerPlugin/index.js";
|
|
41
|
+
import { exports as pP } from "./shared-utils/exports.js";
|
|
42
|
+
import { CSS3DRender as lP } from "./CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
43
|
+
import { Model as aP } from "./PanoMeasurePlugin/Model/index.js";
|
|
44
|
+
import { default as fP } from "./PanoMeasurePlugin/Model/point.js";
|
|
45
|
+
import { default as xP } from "./PanoMeasurePlugin/Model/line.js";
|
|
46
|
+
import { Polyline as sP } from "./PanoMeasurePlugin/Model/polyline.js";
|
|
47
|
+
import { Magnifier as MP } from "./shared-utils/three/Magnifier.js";
|
|
48
|
+
import { validatePolygon as CP } from "./MeasurePlugin/utils/validatePolygon.js";
|
|
49
|
+
import { DISPLAY_STRATEGY_TYPE as cP } from "./ModelItemLabelPlugin/typings.js";
|
|
50
|
+
import { ModelItemLabelPlugin as _P } from "./ModelItemLabelPlugin/ModelItemLabelPlugin.js";
|
|
51
|
+
import { ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE as EP } from "./ItemLabelPlugin/typings.js";
|
|
52
|
+
import { Plugin as SP } from "./ItemLabelPlugin/Plugin.js";
|
|
53
|
+
import { GuideLineItem$1 as vP } from "./GuideLinePlugin/GuideLineItem/index.js";
|
|
54
|
+
import { GuideLineModeItem$1 as FP } from "./GuideLinePlugin/GuideLineModeItem/index.js";
|
|
55
|
+
import { default as DP, default as bP } from "./CruisePlugin/Work.js";
|
|
56
|
+
import { default as VP } from "./CruisePlugin/Move.js";
|
|
57
|
+
import { typing as NP } from "./CruisePlugin/typing/index.js";
|
|
58
|
+
import { default as kP, pluginFlag as wP } from "./PanoTagPlugin/controller/index.js";
|
|
59
|
+
import { defaultGlobalConfig as UP } from "./PanoTagPlugin/typings/tag/TagConfig.js";
|
|
60
|
+
import { ContentType as $P, DimensionType as WP, PointType as qP } from "./PanoTagPlugin/Archive/deprecated.js";
|
|
61
|
+
import { Object3DHelperController as JP, PLUGIN as KP } from "./Object3DHelperPlugin/Controller.js";
|
|
62
|
+
import { typings as XP } from "./PanoVideoPlugin/typings/index.js";
|
|
63
|
+
import { createPoint as of } from "./Sculpt/Objects/Point/index.js";
|
|
64
|
+
import { createLine as tf } from "./Sculpt/Objects/Line/index.js";
|
|
65
|
+
import { createPolyline as pf } from "./Sculpt/Objects/Polyline/index.js";
|
|
66
|
+
import { createPolygon as lf } from "./Sculpt/Objects/Polygon/index.js";
|
|
67
|
+
import { createPrism as af } from "./Sculpt/Objects/Prism/index.js";
|
|
68
|
+
import { createRectangle as ff } from "./Sculpt/Objects/Rectangle/index.js";
|
|
69
|
+
import { createCircle as xf } from "./Sculpt/Objects/Circle/index.js";
|
|
70
|
+
import { createCylinder as sf } from "./Sculpt/Objects/Cylinder/index.js";
|
|
71
|
+
import { createBox as Mf } from "./Sculpt/Objects/Box/index.js";
|
|
72
72
|
import "./components/PaintBrush/Controller.js";
|
|
73
73
|
import "./components/PaintBrush/utils.js";
|
|
74
74
|
import "./components/PaintBrush/tween.js";
|
|
@@ -197,6 +197,7 @@ import "./floorplan/utils/correctFiveState.js";
|
|
|
197
197
|
import "./floorplan/utils/constant.js";
|
|
198
198
|
import "./shared-utils/nearlyEqual.js";
|
|
199
199
|
import "./shared-utils/five/changeMode.js";
|
|
200
|
+
import "./shared-utils/translateMode/getDistanceFromModel.js";
|
|
200
201
|
import "./shared-utils/changeModelCanvasOpacity.js";
|
|
201
202
|
import "./shared-utils/url/replace-static-prefix.js";
|
|
202
203
|
import "./shared-utils/url/absoluteUrl.js";
|
|
@@ -579,85 +580,85 @@ import "./shared-utils/five/lookObject.js";
|
|
|
579
580
|
r();
|
|
580
581
|
o();
|
|
581
582
|
export {
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
583
|
+
Ja as AreaMakerPlugin,
|
|
584
|
+
lP as CSS3DRender,
|
|
585
|
+
Vn as CSS3DRenderPlugin,
|
|
586
|
+
fa as CameraMovementEffect,
|
|
587
|
+
aa as CameraMovementPlugin,
|
|
588
|
+
$P as ContentType,
|
|
589
|
+
Na as CruisePlugin,
|
|
590
|
+
DP as CruisePluginController,
|
|
591
|
+
NP as CruisePluginTypes,
|
|
592
|
+
Qa as CurrentPanoImagePlugin,
|
|
593
|
+
Aa as DIRECTION,
|
|
594
|
+
cP as DISPLAY_STRATEGY_TYPE,
|
|
595
|
+
WP as DimensionType,
|
|
596
|
+
Un as FLOOR_PLAN_ATTACHED_TO,
|
|
597
|
+
ra as FLOOR_TYPE_MAP,
|
|
598
|
+
Zn as FloorplanGuidePlugin,
|
|
599
|
+
vP as GuideLineItem,
|
|
600
|
+
FP as GuideLineModeItem,
|
|
601
|
+
Va as GuideLinePlugin,
|
|
602
|
+
EP as ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE,
|
|
603
|
+
SP as ItemLabelPlugin,
|
|
604
|
+
MP as Magnifier,
|
|
605
|
+
qn as MapviewFloorplanPlugin,
|
|
606
|
+
Ra as MeasurePlugin,
|
|
607
|
+
pa as ModelChassisCompassPlugin,
|
|
608
|
+
la as ModelEntryDoorGuidePlugin,
|
|
609
|
+
$n as ModelFloorplanPlugin,
|
|
610
|
+
_P as ModelItemLabelPlugin,
|
|
611
|
+
iP as ModelMakerPlugin,
|
|
612
|
+
kn as ModelRoomLabelPlugin,
|
|
613
|
+
Oa as ModelTVVideoPlugin,
|
|
614
|
+
bn as ModelViewPlugin,
|
|
615
|
+
VP as MoveController,
|
|
616
|
+
ha as MovePlugin,
|
|
617
|
+
JP as Object3DHelperController,
|
|
618
|
+
Ua as Object3DHelperPlugin,
|
|
619
|
+
KP as PLUGIN,
|
|
620
|
+
An as PaintBrush,
|
|
621
|
+
Gn as PaintBrushTypeEnum,
|
|
622
|
+
Ta as PanoCompassPlugin,
|
|
623
|
+
Nn as PanoCursorRaycasterPlugin,
|
|
624
|
+
ba as PanoDoorLabelPlugin,
|
|
625
|
+
Qn as PanoFloorplanRadarPlugin,
|
|
626
|
+
La as PanoMeasurePlugin,
|
|
627
|
+
xP as PanoMeasurePluginLine,
|
|
628
|
+
aP as PanoMeasurePluginModel,
|
|
629
|
+
fP as PanoMeasurePluginPoint,
|
|
630
|
+
sP as PanoMeasurePluginPolyline,
|
|
631
|
+
ga as PanoRulerPlugin,
|
|
632
|
+
da as PanoRulerProPlugin,
|
|
633
|
+
ya as PanoSpatialTagPlugin,
|
|
634
|
+
wa as PanoTagPlugin,
|
|
635
|
+
kP as PanoTagPluginController,
|
|
636
|
+
$a as PanoVideoPlugin,
|
|
637
|
+
XP as PanoVideoPluginType,
|
|
638
|
+
qa as PipelinePlugin,
|
|
639
|
+
qP as PointType,
|
|
640
|
+
ta as ROOM_FETILE_TYPE_MAP,
|
|
641
|
+
ia as ROOM_TYPE_MAP,
|
|
642
|
+
ua as Rotation,
|
|
643
|
+
Za as Sculpt,
|
|
644
|
+
oP as SculptPlugin,
|
|
645
|
+
rP as SculptPluginForFive,
|
|
646
|
+
Jn as TopviewFloorplanPlugin,
|
|
647
|
+
pP as Util,
|
|
648
|
+
bP as WalkController,
|
|
649
|
+
Mf as createBox,
|
|
650
|
+
xf as createCircle,
|
|
651
|
+
sf as createCylinder,
|
|
652
|
+
tf as createLine,
|
|
653
|
+
of as createPoint,
|
|
654
|
+
lf as createPolygon,
|
|
655
|
+
pf as createPolyline,
|
|
656
|
+
af as createPrism,
|
|
657
|
+
ff as createRectangle,
|
|
658
|
+
UP as defaultGlobalConfig,
|
|
659
|
+
Ga as itemLabelPluginServerParams,
|
|
660
|
+
Ia as modelItemLabelPluginServerParams,
|
|
661
|
+
wn as modelRoomLabelPluginServerParams,
|
|
662
|
+
wP as pluginFlag,
|
|
663
|
+
CP as validatePolygon
|
|
663
664
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
function A() {
|
|
2
2
|
console.debug(
|
|
3
|
-
"%c %c@realsee/dnalogel %cv3.74.
|
|
3
|
+
"%c %c@realsee/dnalogel %cv3.74.4-alpha.0",
|
|
4
4
|
[
|
|
5
5
|
"background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAMCAMAAACHgmeRAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAABLFBMVEUAAAAapPoap/oaqvkbrfkbr/gZnfwZoPsaqfnD4v/E4/8Ylv0clPm93/+/4P/B4f8Yj/683/8Wif+33P8Uhv+x2f8ShP+s1v8Pgf+n0/8Nf/+h0f8Lff8Lff8Nf/9dl/+czv8KfP8KfP+Lxf+Uyv+Xy/+Hwv+Jw/+Mxf+Oxv+RyP8aovsapfoap/oZmfwZm/wZnvsYnPsYkf4YlP0NePsDYfgYcfi43f+63v8Xiv8Xjf4EWfwCV/sWZ/qz2v+02/8Vh/8WiP8EUf8CTf4WXv2u1/+v2P8Thf8Thv8ETf8CR/8VV/+o1f+q1f8Qgv8Rg/8DSv8BRf8UVP+j0v+k0v8OgP8Pgf8DR/8DQv9Nhf+dzv+fz/+Kv/+Vyv+Xy/+azf+Oxv+Qx/+SyP////8MUhLdAAAAK3RSTlMACEWQ2bd98uQECPXxqO7c+Pb49vj2+Pb49vj23Oul8fMHA+TwerXXjEIG2P+bHgAAAAFiS0dEY1y+LaoAAAB+SURBVAjXY2BgZGJmYWVgYGBgY9fW0eVg4ORi4NbTNzDk4eXjZxAwMjYxNTO3EGQQsrSytrG1sxdmEHFwdHJ2cXUTZRBz9/D08vbxFWeQ8PMPCAwKDpFkkAoNC4+IjIqWZpCRlZOPiY2LV2BQVGJQTkhMUlEFWaOmrqGpxQAAyg0S9Dq+VPYAAAAASUVORK5CYII=')",
|
|
6
6
|
"background-repeat: no-repeat",
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
function M(i, m, a) {
|
|
2
|
+
const n = i.bounding, o = Math.pow(
|
|
3
|
+
Math.pow(n.max.x - n.min.x + 1, 2) + Math.pow(n.max.y - n.min.y + 1, 2) + Math.pow(n.max.z - n.min.z + 1, 2),
|
|
4
|
+
1 / 2
|
|
5
|
+
);
|
|
6
|
+
let t = o / 2 / Math.tan(Math.PI * m / 360);
|
|
7
|
+
return a < 1 && (t = t / a), isNaN(t) ? o : t;
|
|
8
|
+
}
|
|
9
|
+
export {
|
|
10
|
+
M as getDistanceFromModel
|
|
11
|
+
};
|