@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.
@@ -98,5 +98,6 @@ function z(o, e) {
98
98
  });
99
99
  }
100
100
  export {
101
- Q as Box
101
+ Q as Box,
102
+ z as createBox
102
103
  };
@@ -94,5 +94,6 @@ function N(n, t) {
94
94
  });
95
95
  }
96
96
  export {
97
- X as Cylinder
97
+ X as Cylinder,
98
+ N as createCylinder
98
99
  };
@@ -132,5 +132,6 @@ function K(n, t, e) {
132
132
  };
133
133
  }
134
134
  export {
135
- ie as Line
135
+ ie as Line,
136
+ K as createLine
136
137
  };
@@ -85,5 +85,6 @@ function z(e, i) {
85
85
  });
86
86
  }
87
87
  export {
88
- D as Point
88
+ D as Point,
89
+ z as createPoint
89
90
  };
@@ -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 { PolylineWithDotsMesh as U, PolylineMesh as W } from "../../Meshes/Polyline.js";
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 U(p(p({}, e.style), e)), this.add(this.polyLineMesh)), this.editor = new I(this);
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 U(e);
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 W(n.style);
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 W(M(p({}, n.style), { dashed: !0, lengthEnable: !1 }));
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
  };
@@ -96,5 +96,6 @@ function D(i, e) {
96
96
  });
97
97
  }
98
98
  export {
99
- Q as Prism
99
+ Q as Prism,
100
+ D as createPrism
100
101
  };
@@ -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;
@@ -18,7 +18,7 @@ let P = class {
18
18
  /**
19
19
  * @realsee/dnalogel 版本号
20
20
  */
21
- i(this, "VERSION", "3.49.7");
21
+ i(this, "VERSION", "3.49.8");
22
22
  i(this, "NAME");
23
23
  i(this, "five");
24
24
  i(this, "workUtil");
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 Ol } from "./components/PaintBrush/index.js";
4
- import { PaintBrushTypeEnum as Al } from "./components/PaintBrush/typings.js";
5
- import { ModelViewPlugin as Gl } from "./ModelViewPlugin/Plugin.js";
6
- import { CSS3DRenderPlugin as vl } from "./CSS3DRenderPlugin/index.js";
7
- import { PanoCursorRaycasterPlugin as Yl } from "./PanoCursorRaycasterPlugin/index.js";
8
- import { ModelRoomLabelPlugin as Vl, modelRoomLabelPluginServerParams as Nl } from "./ModelRoomLabelPlugin/index.js";
9
- import { FLOOR_PLAN_ATTACHED_TO as kl } from "./floorplan/constant.js";
10
- import { ModelFloorplanPlugin as Bl } from "./floorplan/ModelFloorplanPlugin/index.js";
11
- import { MapviewFloorplanPlugin as Ul } from "./floorplan/MapviewFloorplanPlugin/index.js";
12
- import { TopviewFloorplanPlugin as $l } from "./floorplan/TopviewFloorplanPlugin/index.js";
13
- import { PanoFloorplanRadarPlugin as ql } from "./floorplan/PanoFloorplanRadarPlugin/index.js";
14
- import { FLOOR_TYPE_MAP as Jl, ROOM_FETILE_TYPE_MAP as Kl, ROOM_TYPE_MAP as Ql } from "./floorplan/typings/floorplanServerData.js";
15
- import { ModelChassisCompassPlugin as Zl } from "./ModelChassisCompassPlugin/Plugin.js";
16
- import { ModelEntryDoorGuidePlugin as rn } from "./ModelEntryDoorGuidePlugin/Plugin.js";
17
- import { CameraMovementPlugin as mn } from "./CameraMovementPlugin/CameraMovementPlugin.js";
18
- import { CameraMovementEffect as en, Rotation as ln } from "./CameraMovementPlugin/typing.js";
19
- import { PanoRulerPlugin as an } from "./PanoRulerPlugin/Plugin.js";
20
- import { PanoRulerProPlugin as un } from "./PanoRulerProPlugin/index.js";
21
- import { PanoCompassPlugin as xn } from "./PanoCompassPlugin/index.js";
22
- import { PanoMeasurePlugin as sn } from "./PanoMeasurePlugin/index.js";
23
- import { PanoSpatialTagPlugin as Mn } from "./PanoSpatialTagPlugin/Plugin.js";
24
- import { modelItemLabelPluginServerParams as Ln } from "./ModelItemLabelPlugin/index.js";
25
- import { ModelTVVideoPlugin as _n } from "./ModelTVVideoPlugin/Plugin.js";
26
- import { DIRECTION as In } from "./ModelTVVideoPlugin/typings.js";
27
- import { itemLabelPluginServerParams as Sn } from "./ItemLabelPlugin/index.js";
28
- import { PanoDoorLabelPlugin as yn } from "./PanoDoorLabelPlugin/index.js";
29
- import { GuideLinePlugin as Dn } from "./GuideLinePlugin/index.js";
30
- import { CruisePlugin as bn, MovePlugin as vn } from "./CruisePlugin/index.js";
31
- import { PanoTagPlugin as Yn } from "./PanoTagPlugin/index.js";
32
- import { Object3DHelperPlugin as Vn } from "./Object3DHelperPlugin/index.js";
33
- import { PanoVideoPlugin as hn } from "./PanoVideoPlugin/index.js";
34
- import { PipelinePlugin as wn } from "./PipelinePlugin/index.js";
35
- import { AreaMakerPlugin as Hn } from "./AreaMakerPlugin/index.js";
36
- import { CurrentPanoImagePlugin as jn } from "./CurrentPanoImagePlugin/index.js";
37
- import { Sculpt as Wn, SculptPlugin as qn } from "./Sculpt/index.js";
38
- import { ModelMakerPlugin as Jn } from "./ModelMakerPlugin/index.js";
39
- import { index as Qn } from "./shared-utils/index.js";
40
- import { CSS3DRender as Zn } from "./CSS3DRenderPlugin/utils/three/CSS3DRender.js";
41
- import { Model as ra } from "./PanoMeasurePlugin/Model/index.js";
42
- import { default as ia } from "./PanoMeasurePlugin/Model/point.js";
43
- import { default as pa } from "./PanoMeasurePlugin/Model/line.js";
44
- import { Polyline as la } from "./PanoMeasurePlugin/Model/polyline.js";
45
- import { Magnifier as aa } from "./shared-utils/three/Magnifier.js";
46
- import { DISPLAY_STRATEGY_TYPE as ua } from "./ModelItemLabelPlugin/typings.js";
47
- import { ModelItemLabelPlugin as xa } from "./ModelItemLabelPlugin/ModelItemLabelPlugin.js";
48
- import { ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE as sa } from "./ItemLabelPlugin/typings.js";
49
- import { Plugin as Ma } from "./ItemLabelPlugin/Plugin.js";
50
- import { GuideLineItem$1 as La } from "./GuideLinePlugin/GuideLineItem/index.js";
51
- import { GuideLineModeItem$1 as _a } from "./GuideLinePlugin/GuideLineModeItem/index.js";
52
- import { default as Ia, default as Ra } from "./CruisePlugin/Work.js";
53
- import { default as Oa } from "./CruisePlugin/Move.js";
54
- import { typing as Aa } from "./CruisePlugin/typing/index.js";
55
- import { default as Ga, pluginFlag as ba } from "./PanoTagPlugin/controller/index.js";
56
- import { defaultGlobalConfig as Fa } from "./PanoTagPlugin/typings/tag/TagConfig.js";
57
- import { ContentType as ca, DimensionType as Va, PointType as Na } from "./PanoTagPlugin/Archive/deprecated.js";
58
- import { Object3DHelperController as ka, PLUGIN as wa } from "./Object3DHelperPlugin/Controller.js";
59
- import { typings as Ha } from "./PanoVideoPlugin/typings/index.js";
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 "./Sculpt/Objects/Polyline/index.js";
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 "./vendor/hotkeys-js/dist/hotkeys.esm.js";
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/Point/index.js";
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
- Hn as AreaMakerPlugin,
515
- Zn as CSS3DRender,
516
- vl as CSS3DRenderPlugin,
517
- en as CameraMovementEffect,
518
- mn as CameraMovementPlugin,
519
- ca as ContentType,
520
- bn as CruisePlugin,
521
- Ia as CruisePluginController,
522
- Aa as CruisePluginTypes,
523
- jn as CurrentPanoImagePlugin,
524
- In as DIRECTION,
525
- ua as DISPLAY_STRATEGY_TYPE,
526
- Va as DimensionType,
527
- kl as FLOOR_PLAN_ATTACHED_TO,
528
- Jl as FLOOR_TYPE_MAP,
529
- La as GuideLineItem,
530
- _a as GuideLineModeItem,
531
- Dn as GuideLinePlugin,
532
- sa as ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE,
533
- Ma as ItemLabelPlugin,
534
- aa as Magnifier,
535
- Ul as MapviewFloorplanPlugin,
536
- Zl as ModelChassisCompassPlugin,
537
- rn as ModelEntryDoorGuidePlugin,
538
- Bl as ModelFloorplanPlugin,
539
- xa as ModelItemLabelPlugin,
540
- Jn as ModelMakerPlugin,
541
- Vl as ModelRoomLabelPlugin,
542
- _n as ModelTVVideoPlugin,
543
- Gl as ModelViewPlugin,
544
- Oa as MoveController,
545
- vn as MovePlugin,
546
- ka as Object3DHelperController,
547
- Vn as Object3DHelperPlugin,
548
- wa as PLUGIN,
549
- Ol as PaintBrush,
550
- Al as PaintBrushTypeEnum,
551
- xn as PanoCompassPlugin,
552
- Yl as PanoCursorRaycasterPlugin,
553
- yn as PanoDoorLabelPlugin,
554
- ql as PanoFloorplanRadarPlugin,
555
- sn as PanoMeasurePlugin,
556
- pa as PanoMeasurePluginLine,
557
- ra as PanoMeasurePluginModel,
558
- ia as PanoMeasurePluginPoint,
559
- la as PanoMeasurePluginPolyline,
560
- an as PanoRulerPlugin,
561
- un as PanoRulerProPlugin,
562
- Mn as PanoSpatialTagPlugin,
563
- Yn as PanoTagPlugin,
564
- Ga as PanoTagPluginController,
565
- hn as PanoVideoPlugin,
566
- Ha as PanoVideoPluginType,
567
- wn as PipelinePlugin,
568
- Na as PointType,
569
- Kl as ROOM_FETILE_TYPE_MAP,
570
- Ql as ROOM_TYPE_MAP,
571
- ln as Rotation,
572
- Wn as Sculpt,
573
- qn as SculptPlugin,
574
- $l as TopviewFloorplanPlugin,
575
- Qn as Util,
576
- Ra as WalkController,
577
- Fa as defaultGlobalConfig,
578
- Sn as itemLabelPluginServerParams,
579
- Ln as modelItemLabelPluginServerParams,
580
- Nl as modelRoomLabelPluginServerParams,
581
- ba as pluginFlag
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.7",
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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@realsee/dnalogel",
3
- "version": "3.49.7",
3
+ "version": "3.49.8",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./libs/index.js",
6
6
  "types": "./libs/index.d.ts",