@realsee/dnalogel 3.49.7 → 3.49.8
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 +3 -0
- package/dist/Sculpt/index.d.ts +10 -6
- package/dist/index.cjs.js +195 -195
- package/dist/index.js +11 -2
- package/dist/index.umd.js +188 -188
- package/libs/Sculpt/Objects/Box/index.js +2 -1
- package/libs/Sculpt/Objects/Cylinder/index.js +2 -1
- package/libs/Sculpt/Objects/Line/index.js +2 -1
- package/libs/Sculpt/Objects/Point/index.js +2 -1
- package/libs/Sculpt/Objects/Polyline/index.js +7 -6
- package/libs/Sculpt/Objects/Prism/index.js +2 -1
- package/libs/Sculpt/index.d.ts +10 -6
- package/libs/base/BasePlugin.js +1 -1
- package/libs/index.js +168 -159
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +1 -1
|
@@ -27,7 +27,7 @@ var R = (n, t, e) => new Promise((s, P) => {
|
|
|
27
27
|
}, c = (o) => o.done ? s(o.value) : Promise.resolve(o.value).then(w, b);
|
|
28
28
|
c((e = e.apply(n, t)).next());
|
|
29
29
|
});
|
|
30
|
-
import {
|
|
30
|
+
import { PolylineMesh as U, PolylineWithDotsMesh as W } from "../../Meshes/Polyline.js";
|
|
31
31
|
import { BaseObject as H } from "../Base/index.js";
|
|
32
32
|
import * as d from "three";
|
|
33
33
|
import { PolylineEditor as I } from "./Editor.js";
|
|
@@ -40,7 +40,7 @@ class Z extends H {
|
|
|
40
40
|
y(this, "type", "Polyline");
|
|
41
41
|
y(this, "polyLineMesh");
|
|
42
42
|
y(this, "creatingObject");
|
|
43
|
-
e && (this.polyLineMesh = new
|
|
43
|
+
e && (this.polyLineMesh = new W(p(p({}, e.style), e)), this.add(this.polyLineMesh)), this.editor = new I(this);
|
|
44
44
|
}
|
|
45
45
|
get data() {
|
|
46
46
|
return M(p({}, this.baseData), {
|
|
@@ -79,7 +79,7 @@ class Z extends H {
|
|
|
79
79
|
create(e) {
|
|
80
80
|
return R(this, null, function* () {
|
|
81
81
|
this.removeChildren();
|
|
82
|
-
const s = new
|
|
82
|
+
const s = new W(e);
|
|
83
83
|
this.polyLineMesh = s, this.add(this.polyLineMesh), this.creatingObject = q(s, this.pointSelector, e), yield this.creatingObject.finished, this.editor.enable();
|
|
84
84
|
});
|
|
85
85
|
}
|
|
@@ -89,9 +89,9 @@ function q(n, t, e) {
|
|
|
89
89
|
const s = n.parent;
|
|
90
90
|
if (!s)
|
|
91
91
|
return;
|
|
92
|
-
const { promise: P, resolve: w, reject: b } = _(), c = (x = e == null ? void 0 : e.limit) != null ? x : "none", o = new
|
|
92
|
+
const { promise: P, resolve: w, reject: b } = _(), c = (x = e == null ? void 0 : e.limit) != null ? x : "none", o = new U(n.style);
|
|
93
93
|
s.add(o);
|
|
94
|
-
const a = new
|
|
94
|
+
const a = new U(M(p({}, n.style), { dashed: !0, lengthEnable: !1 }));
|
|
95
95
|
s.add(a), t.enable();
|
|
96
96
|
const i = [];
|
|
97
97
|
let r, l, v;
|
|
@@ -125,5 +125,6 @@ function q(n, t, e) {
|
|
|
125
125
|
};
|
|
126
126
|
}
|
|
127
127
|
export {
|
|
128
|
-
Z as Polyline
|
|
128
|
+
Z as Polyline,
|
|
129
|
+
q as createPolyline
|
|
129
130
|
};
|
package/libs/Sculpt/index.d.ts
CHANGED
|
@@ -14,6 +14,15 @@ import { Box } from './Objects/Box';
|
|
|
14
14
|
import type { BuiltInData, BuiltInItem, Theme } from './typings';
|
|
15
15
|
import { Line } from './Objects/Line';
|
|
16
16
|
export type { SculptData } from './typings';
|
|
17
|
+
export { createPoint } from './Objects/Point';
|
|
18
|
+
export { createLine } from './Objects/Line';
|
|
19
|
+
export { createPolyline } from './Objects/Polyline';
|
|
20
|
+
export { createPolygon } from './Objects/Polygon';
|
|
21
|
+
export { createPrism } from './Objects/Prism';
|
|
22
|
+
export { createRectangle } from './Objects/Rectangle';
|
|
23
|
+
export { createCircle } from './Objects/Circle';
|
|
24
|
+
export { createCylinder } from './Objects/Cylinder';
|
|
25
|
+
export { createBox } from './Objects/Box';
|
|
17
26
|
interface Data {
|
|
18
27
|
items: Array<BuiltInData>;
|
|
19
28
|
}
|
|
@@ -68,12 +77,7 @@ export declare class Sculpt extends Subscribe<Event> {
|
|
|
68
77
|
id: string;
|
|
69
78
|
type: string;
|
|
70
79
|
} | {
|
|
71
|
-
readonly points: [number, number, number][];
|
|
72
|
-
* @description: 点击事件
|
|
73
|
-
* @param {MouseEvent} e 鼠标事件
|
|
74
|
-
* @param {BuiltInItem} item 点击的物体
|
|
75
|
-
* 返回 false 来禁用 Five 默认行为
|
|
76
|
-
*/
|
|
80
|
+
readonly points: [number, number, number][];
|
|
77
81
|
readonly heightPoint: [number, number, number];
|
|
78
82
|
readonly style: {
|
|
79
83
|
readonly color: number;
|
package/libs/base/BasePlugin.js
CHANGED
package/libs/index.js
CHANGED
|
@@ -1,62 +1,71 @@
|
|
|
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 { FLOOR_TYPE_MAP as
|
|
15
|
-
import { ModelChassisCompassPlugin as
|
|
16
|
-
import { ModelEntryDoorGuidePlugin as
|
|
17
|
-
import { CameraMovementPlugin as
|
|
18
|
-
import { CameraMovementEffect as
|
|
19
|
-
import { PanoRulerPlugin as
|
|
20
|
-
import { PanoRulerProPlugin as
|
|
21
|
-
import { PanoCompassPlugin as
|
|
22
|
-
import { PanoMeasurePlugin as
|
|
23
|
-
import { PanoSpatialTagPlugin as
|
|
24
|
-
import { modelItemLabelPluginServerParams as
|
|
25
|
-
import { ModelTVVideoPlugin as
|
|
26
|
-
import { DIRECTION as
|
|
27
|
-
import { itemLabelPluginServerParams as
|
|
28
|
-
import { PanoDoorLabelPlugin as
|
|
29
|
-
import { GuideLinePlugin as
|
|
30
|
-
import { CruisePlugin as
|
|
31
|
-
import { PanoTagPlugin as
|
|
32
|
-
import { Object3DHelperPlugin as
|
|
33
|
-
import { PanoVideoPlugin as
|
|
34
|
-
import { PipelinePlugin as
|
|
35
|
-
import { AreaMakerPlugin as
|
|
36
|
-
import { CurrentPanoImagePlugin as
|
|
37
|
-
import { Sculpt as
|
|
38
|
-
import { ModelMakerPlugin as
|
|
39
|
-
import { index as
|
|
40
|
-
import { CSS3DRender as
|
|
41
|
-
import { Model as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as
|
|
44
|
-
import { Polyline as
|
|
45
|
-
import { Magnifier as
|
|
46
|
-
import { DISPLAY_STRATEGY_TYPE as
|
|
47
|
-
import { ModelItemLabelPlugin as
|
|
48
|
-
import { ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE as
|
|
49
|
-
import { Plugin as
|
|
50
|
-
import { GuideLineItem$1 as
|
|
51
|
-
import { GuideLineModeItem$1 as
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
54
|
-
import { typing as
|
|
55
|
-
import { default as
|
|
56
|
-
import { defaultGlobalConfig as
|
|
57
|
-
import { ContentType as
|
|
58
|
-
import { Object3DHelperController as
|
|
59
|
-
import { typings as
|
|
3
|
+
import { PaintBrush as Ml } from "./components/PaintBrush/index.js";
|
|
4
|
+
import { PaintBrushTypeEnum as Cl } from "./components/PaintBrush/typings.js";
|
|
5
|
+
import { ModelViewPlugin as cl } from "./ModelViewPlugin/Plugin.js";
|
|
6
|
+
import { CSS3DRenderPlugin as _l } from "./CSS3DRenderPlugin/index.js";
|
|
7
|
+
import { PanoCursorRaycasterPlugin as Il } from "./PanoCursorRaycasterPlugin/index.js";
|
|
8
|
+
import { ModelRoomLabelPlugin as Sl, modelRoomLabelPluginServerParams as Ol } from "./ModelRoomLabelPlugin/index.js";
|
|
9
|
+
import { FLOOR_PLAN_ATTACHED_TO as Dl } from "./floorplan/constant.js";
|
|
10
|
+
import { ModelFloorplanPlugin as bl } from "./floorplan/ModelFloorplanPlugin/index.js";
|
|
11
|
+
import { MapviewFloorplanPlugin as Fl } from "./floorplan/MapviewFloorplanPlugin/index.js";
|
|
12
|
+
import { TopviewFloorplanPlugin as Vl } from "./floorplan/TopviewFloorplanPlugin/index.js";
|
|
13
|
+
import { PanoFloorplanRadarPlugin as Nl } from "./floorplan/PanoFloorplanRadarPlugin/index.js";
|
|
14
|
+
import { FLOOR_TYPE_MAP as kl, ROOM_FETILE_TYPE_MAP as wl, ROOM_TYPE_MAP as Hl } from "./floorplan/typings/floorplanServerData.js";
|
|
15
|
+
import { ModelChassisCompassPlugin as jl } from "./ModelChassisCompassPlugin/Plugin.js";
|
|
16
|
+
import { ModelEntryDoorGuidePlugin as Wl } from "./ModelEntryDoorGuidePlugin/Plugin.js";
|
|
17
|
+
import { CameraMovementPlugin as zl } from "./CameraMovementPlugin/CameraMovementPlugin.js";
|
|
18
|
+
import { CameraMovementEffect as Kl, Rotation as Ql } from "./CameraMovementPlugin/typing.js";
|
|
19
|
+
import { PanoRulerPlugin as Zl } from "./PanoRulerPlugin/Plugin.js";
|
|
20
|
+
import { PanoRulerProPlugin as rn } from "./PanoRulerProPlugin/index.js";
|
|
21
|
+
import { PanoCompassPlugin as mn } from "./PanoCompassPlugin/index.js";
|
|
22
|
+
import { PanoMeasurePlugin as en } from "./PanoMeasurePlugin/index.js";
|
|
23
|
+
import { PanoSpatialTagPlugin as nn } from "./PanoSpatialTagPlugin/Plugin.js";
|
|
24
|
+
import { modelItemLabelPluginServerParams as Pn } from "./ModelItemLabelPlugin/index.js";
|
|
25
|
+
import { ModelTVVideoPlugin as un } from "./ModelTVVideoPlugin/Plugin.js";
|
|
26
|
+
import { DIRECTION as gn } from "./ModelTVVideoPlugin/typings.js";
|
|
27
|
+
import { itemLabelPluginServerParams as dn } from "./ItemLabelPlugin/index.js";
|
|
28
|
+
import { PanoDoorLabelPlugin as Tn } from "./PanoDoorLabelPlugin/index.js";
|
|
29
|
+
import { GuideLinePlugin as Ln } from "./GuideLinePlugin/index.js";
|
|
30
|
+
import { CruisePlugin as Rn, MovePlugin as _n } from "./CruisePlugin/index.js";
|
|
31
|
+
import { PanoTagPlugin as In } from "./PanoTagPlugin/index.js";
|
|
32
|
+
import { Object3DHelperPlugin as Sn } from "./Object3DHelperPlugin/index.js";
|
|
33
|
+
import { PanoVideoPlugin as An } from "./PanoVideoPlugin/index.js";
|
|
34
|
+
import { PipelinePlugin as Gn } from "./PipelinePlugin/index.js";
|
|
35
|
+
import { AreaMakerPlugin as vn } from "./AreaMakerPlugin/index.js";
|
|
36
|
+
import { CurrentPanoImagePlugin as Yn } from "./CurrentPanoImagePlugin/index.js";
|
|
37
|
+
import { Sculpt as Bn, SculptPlugin as Nn } from "./Sculpt/index.js";
|
|
38
|
+
import { ModelMakerPlugin as kn } from "./ModelMakerPlugin/index.js";
|
|
39
|
+
import { index as Hn } from "./shared-utils/index.js";
|
|
40
|
+
import { CSS3DRender as jn } from "./CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
41
|
+
import { Model as Wn } from "./PanoMeasurePlugin/Model/index.js";
|
|
42
|
+
import { default as zn } from "./PanoMeasurePlugin/Model/point.js";
|
|
43
|
+
import { default as Kn } from "./PanoMeasurePlugin/Model/line.js";
|
|
44
|
+
import { Polyline as Xn } from "./PanoMeasurePlugin/Model/polyline.js";
|
|
45
|
+
import { Magnifier as oa } from "./shared-utils/three/Magnifier.js";
|
|
46
|
+
import { DISPLAY_STRATEGY_TYPE as ta } from "./ModelItemLabelPlugin/typings.js";
|
|
47
|
+
import { ModelItemLabelPlugin as ma } from "./ModelItemLabelPlugin/ModelItemLabelPlugin.js";
|
|
48
|
+
import { ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE as ea } from "./ItemLabelPlugin/typings.js";
|
|
49
|
+
import { Plugin as na } from "./ItemLabelPlugin/Plugin.js";
|
|
50
|
+
import { GuideLineItem$1 as Pa } from "./GuideLinePlugin/GuideLineItem/index.js";
|
|
51
|
+
import { GuideLineModeItem$1 as ua } from "./GuideLinePlugin/GuideLineModeItem/index.js";
|
|
52
|
+
import { default as ga, default as sa } from "./CruisePlugin/Work.js";
|
|
53
|
+
import { default as Ma } from "./CruisePlugin/Move.js";
|
|
54
|
+
import { typing as Ca } from "./CruisePlugin/typing/index.js";
|
|
55
|
+
import { default as ca, pluginFlag as Ra } from "./PanoTagPlugin/controller/index.js";
|
|
56
|
+
import { defaultGlobalConfig as Ea } from "./PanoTagPlugin/typings/tag/TagConfig.js";
|
|
57
|
+
import { ContentType as ya, DimensionType as Sa, PointType as Oa } from "./PanoTagPlugin/Archive/deprecated.js";
|
|
58
|
+
import { Object3DHelperController as Da, PLUGIN as Ga } from "./Object3DHelperPlugin/Controller.js";
|
|
59
|
+
import { typings as va } from "./PanoVideoPlugin/typings/index.js";
|
|
60
|
+
import { createPoint as Ya } from "./Sculpt/Objects/Point/index.js";
|
|
61
|
+
import { createLine as Ba } from "./Sculpt/Objects/Line/index.js";
|
|
62
|
+
import { createPolyline as ha } from "./Sculpt/Objects/Polyline/index.js";
|
|
63
|
+
import { createPolygon as wa } from "./Sculpt/Objects/Polygon/index.js";
|
|
64
|
+
import { createPrism as Ua } from "./Sculpt/Objects/Prism/index.js";
|
|
65
|
+
import { createRectangle as $a } from "./Sculpt/Objects/Rectangle/index.js";
|
|
66
|
+
import { createCircle as qa } from "./Sculpt/Objects/Circle/index.js";
|
|
67
|
+
import { createCylinder as Ja } from "./Sculpt/Objects/Cylinder/index.js";
|
|
68
|
+
import { createBox as Qa } from "./Sculpt/Objects/Box/index.js";
|
|
60
69
|
import "./components/PaintBrush/Controller.js";
|
|
61
70
|
import "./components/PaintBrush/utils.js";
|
|
62
71
|
import "./components/PaintBrush/tween.js";
|
|
@@ -450,133 +459,133 @@ import "./CurrentPanoImagePlugin/Controller.js";
|
|
|
450
459
|
import "./Sculpt/utils/Modules/Global.js";
|
|
451
460
|
import "./Sculpt/utils/Modules/Cursor.js";
|
|
452
461
|
import "./shared-utils/three/recurveFindObject.js";
|
|
453
|
-
import "./
|
|
462
|
+
import "./shared-utils/forReverseEach.js";
|
|
463
|
+
import "./vendor/hotkeys-js/dist/hotkeys.esm.js";
|
|
464
|
+
import "./ModelMakerPlugin/Controller.js";
|
|
465
|
+
import "./ModelMakerPlugin/item/boxItem.js";
|
|
466
|
+
import "./ModelMakerPlugin/item/polygonItem.js";
|
|
467
|
+
import "./ModelMakerPlugin/item/baseItem.js";
|
|
468
|
+
import "./shared-utils/three/addIfNotExists.js";
|
|
469
|
+
import "./ModelMakerPlugin/utils/getFiveDomEvent.js";
|
|
470
|
+
import "./Sculpt/Meshes/Prism.js";
|
|
471
|
+
import "./Sculpt/Meshes/Polygon.js";
|
|
472
|
+
import "./Sculpt/utils/three/ColoredMesh.js";
|
|
473
|
+
import "./Sculpt/Meshes/PolygonWithEdge.js";
|
|
454
474
|
import "./Sculpt/Meshes/Polyline.js";
|
|
455
475
|
import "./Sculpt/Meshes/LineWithDots.js";
|
|
456
476
|
import "./Sculpt/Meshes/Point.js";
|
|
457
477
|
import "./shared-utils/three/closeVectors.js";
|
|
478
|
+
import "./ModelMakerPlugin/utils/tagRenderer.js";
|
|
479
|
+
import "./ModelMakerPlugin/utils/Text.js";
|
|
480
|
+
import "./ModelMakerPlugin/item/prismItem.js";
|
|
481
|
+
import "./shared-utils/math/Interval.js";
|
|
482
|
+
import "./shared-utils/math/Rectangle.js";
|
|
483
|
+
import "./shared-utils/math/convexHull.js";
|
|
484
|
+
import "./shared-utils/math/inside.js";
|
|
485
|
+
import "./shared-utils/five/index.js";
|
|
486
|
+
import "./shared-utils/three/getCoords.js";
|
|
487
|
+
import "./shared-utils/five/lookObject.js";
|
|
458
488
|
import "./Sculpt/Objects/Base/index.js";
|
|
459
|
-
import "./
|
|
460
|
-
import "./Sculpt/Objects/Polyline/Editor.js";
|
|
461
|
-
import "./Sculpt/Objects/Line/Editor.js";
|
|
489
|
+
import "./Sculpt/Objects/Point/Editor.js";
|
|
462
490
|
import "./Sculpt/Objects/Base/Editor.js";
|
|
463
491
|
import "./shared-utils/three/vector3ToArray.js";
|
|
492
|
+
import "./Sculpt/Objects/Line/Editor.js";
|
|
464
493
|
import "./shared-utils/promise/withResolvers.js";
|
|
465
|
-
import "./Sculpt/Objects/
|
|
466
|
-
import "./Sculpt/Objects/Point/Editor.js";
|
|
467
|
-
import "./Sculpt/Objects/Polygon/index.js";
|
|
494
|
+
import "./Sculpt/Objects/Polyline/Editor.js";
|
|
468
495
|
import "./Sculpt/Meshes/Area.js";
|
|
469
|
-
import "./Sculpt/Meshes/PolygonWithEdge.js";
|
|
470
|
-
import "./Sculpt/Meshes/Polygon.js";
|
|
471
|
-
import "./Sculpt/utils/three/ColoredMesh.js";
|
|
472
496
|
import "./Sculpt/Objects/Polygon/Editor.js";
|
|
473
|
-
import "./Sculpt/Objects/Prism/index.js";
|
|
474
|
-
import "./Sculpt/Meshes/Prism.js";
|
|
475
497
|
import "./Sculpt/Objects/Prism/Editor.js";
|
|
476
|
-
import "./Sculpt/Objects/Rectangle/index.js";
|
|
477
498
|
import "./Sculpt/Objects/Rectangle/Editor.js";
|
|
478
499
|
import "./Sculpt/Meshes/RectangleWithEdge.js";
|
|
479
500
|
import "./Sculpt/Meshes/Rectangle.js";
|
|
480
501
|
import "./Sculpt/utils/three/RectangleGeometry.js";
|
|
481
502
|
import "./Sculpt/utils/getBetterNormal.js";
|
|
482
|
-
import "./Sculpt/Objects/Circle/index.js";
|
|
483
503
|
import "./Sculpt/Objects/Circle/Editor.js";
|
|
484
504
|
import "./Sculpt/Meshes/CircleWithEdge.js";
|
|
485
505
|
import "./Sculpt/Meshes/Circle.js";
|
|
486
506
|
import "./Sculpt/utils/radiusToSegments.js";
|
|
487
|
-
import "./Sculpt/Objects/Cylinder/index.js";
|
|
488
507
|
import "./Sculpt/Meshes/Cylinder.js";
|
|
489
508
|
import "./Sculpt/Objects/Cylinder/Editor.js";
|
|
490
|
-
import "./Sculpt/Objects/Box/index.js";
|
|
491
509
|
import "./Sculpt/Objects/Box/Editor.js";
|
|
492
510
|
import "./Sculpt/Meshes/Box.js";
|
|
493
|
-
import "./shared-utils/forReverseEach.js";
|
|
494
|
-
import "./Sculpt/Objects/Line/index.js";
|
|
495
|
-
import "./ModelMakerPlugin/Controller.js";
|
|
496
|
-
import "./ModelMakerPlugin/item/boxItem.js";
|
|
497
|
-
import "./ModelMakerPlugin/item/polygonItem.js";
|
|
498
|
-
import "./ModelMakerPlugin/item/baseItem.js";
|
|
499
|
-
import "./shared-utils/three/addIfNotExists.js";
|
|
500
|
-
import "./ModelMakerPlugin/utils/getFiveDomEvent.js";
|
|
501
|
-
import "./ModelMakerPlugin/utils/tagRenderer.js";
|
|
502
|
-
import "./ModelMakerPlugin/utils/Text.js";
|
|
503
|
-
import "./ModelMakerPlugin/item/prismItem.js";
|
|
504
|
-
import "./shared-utils/math/Interval.js";
|
|
505
|
-
import "./shared-utils/math/Rectangle.js";
|
|
506
|
-
import "./shared-utils/math/convexHull.js";
|
|
507
|
-
import "./shared-utils/math/inside.js";
|
|
508
|
-
import "./shared-utils/five/index.js";
|
|
509
|
-
import "./shared-utils/three/getCoords.js";
|
|
510
|
-
import "./shared-utils/five/lookObject.js";
|
|
511
511
|
r();
|
|
512
512
|
o();
|
|
513
513
|
export {
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
514
|
+
vn as AreaMakerPlugin,
|
|
515
|
+
jn as CSS3DRender,
|
|
516
|
+
_l as CSS3DRenderPlugin,
|
|
517
|
+
Kl as CameraMovementEffect,
|
|
518
|
+
zl as CameraMovementPlugin,
|
|
519
|
+
ya as ContentType,
|
|
520
|
+
Rn as CruisePlugin,
|
|
521
|
+
ga as CruisePluginController,
|
|
522
|
+
Ca as CruisePluginTypes,
|
|
523
|
+
Yn as CurrentPanoImagePlugin,
|
|
524
|
+
gn as DIRECTION,
|
|
525
|
+
ta as DISPLAY_STRATEGY_TYPE,
|
|
526
|
+
Sa as DimensionType,
|
|
527
|
+
Dl as FLOOR_PLAN_ATTACHED_TO,
|
|
528
|
+
kl as FLOOR_TYPE_MAP,
|
|
529
|
+
Pa as GuideLineItem,
|
|
530
|
+
ua as GuideLineModeItem,
|
|
531
|
+
Ln as GuideLinePlugin,
|
|
532
|
+
ea as ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE,
|
|
533
|
+
na as ItemLabelPlugin,
|
|
534
|
+
oa as Magnifier,
|
|
535
|
+
Fl as MapviewFloorplanPlugin,
|
|
536
|
+
jl as ModelChassisCompassPlugin,
|
|
537
|
+
Wl as ModelEntryDoorGuidePlugin,
|
|
538
|
+
bl as ModelFloorplanPlugin,
|
|
539
|
+
ma as ModelItemLabelPlugin,
|
|
540
|
+
kn as ModelMakerPlugin,
|
|
541
|
+
Sl as ModelRoomLabelPlugin,
|
|
542
|
+
un as ModelTVVideoPlugin,
|
|
543
|
+
cl as ModelViewPlugin,
|
|
544
|
+
Ma as MoveController,
|
|
545
|
+
_n as MovePlugin,
|
|
546
|
+
Da as Object3DHelperController,
|
|
547
|
+
Sn as Object3DHelperPlugin,
|
|
548
|
+
Ga as PLUGIN,
|
|
549
|
+
Ml as PaintBrush,
|
|
550
|
+
Cl as PaintBrushTypeEnum,
|
|
551
|
+
mn as PanoCompassPlugin,
|
|
552
|
+
Il as PanoCursorRaycasterPlugin,
|
|
553
|
+
Tn as PanoDoorLabelPlugin,
|
|
554
|
+
Nl as PanoFloorplanRadarPlugin,
|
|
555
|
+
en as PanoMeasurePlugin,
|
|
556
|
+
Kn as PanoMeasurePluginLine,
|
|
557
|
+
Wn as PanoMeasurePluginModel,
|
|
558
|
+
zn as PanoMeasurePluginPoint,
|
|
559
|
+
Xn as PanoMeasurePluginPolyline,
|
|
560
|
+
Zl as PanoRulerPlugin,
|
|
561
|
+
rn as PanoRulerProPlugin,
|
|
562
|
+
nn as PanoSpatialTagPlugin,
|
|
563
|
+
In as PanoTagPlugin,
|
|
564
|
+
ca as PanoTagPluginController,
|
|
565
|
+
An as PanoVideoPlugin,
|
|
566
|
+
va as PanoVideoPluginType,
|
|
567
|
+
Gn as PipelinePlugin,
|
|
568
|
+
Oa as PointType,
|
|
569
|
+
wl as ROOM_FETILE_TYPE_MAP,
|
|
570
|
+
Hl as ROOM_TYPE_MAP,
|
|
571
|
+
Ql as Rotation,
|
|
572
|
+
Bn as Sculpt,
|
|
573
|
+
Nn as SculptPlugin,
|
|
574
|
+
Vl as TopviewFloorplanPlugin,
|
|
575
|
+
Hn as Util,
|
|
576
|
+
sa as WalkController,
|
|
577
|
+
Qa as createBox,
|
|
578
|
+
qa as createCircle,
|
|
579
|
+
Ja as createCylinder,
|
|
580
|
+
Ba as createLine,
|
|
581
|
+
Ya as createPoint,
|
|
582
|
+
wa as createPolygon,
|
|
583
|
+
ha as createPolyline,
|
|
584
|
+
Ua as createPrism,
|
|
585
|
+
$a as createRectangle,
|
|
586
|
+
Ea as defaultGlobalConfig,
|
|
587
|
+
dn as itemLabelPluginServerParams,
|
|
588
|
+
Pn as modelItemLabelPluginServerParams,
|
|
589
|
+
Ol as modelRoomLabelPluginServerParams,
|
|
590
|
+
Ra as pluginFlag
|
|
582
591
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
function A() {
|
|
2
2
|
console.debug(
|
|
3
|
-
"%c %c@realsee/dnalogel %cv3.49.
|
|
3
|
+
"%c %c@realsee/dnalogel %cv3.49.8",
|
|
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",
|