@realsee/dnalogel 3.77.5 → 3.77.6
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 +15 -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/index.cjs.js +178 -95
- package/dist/index.js +11346 -9788
- package/dist/index.umd.js +173 -90
- package/libs/CruisePlugin/Move.js +7 -2
- package/libs/CruisePlugin/Work.js +7 -2
- package/libs/CruisePlugin/index.js +11 -6
- package/libs/GuideLinePlugin/Controller.js +9 -4
- package/libs/GuideLinePlugin/GuideLineItem.js +7 -2
- package/libs/GuideLinePlugin/GuideLineModeItem.js +7 -2
- package/libs/GuideLinePlugin/index.js +11 -6
- package/libs/PanoTagPlugin/Components/TagItem.js +122 -122
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.d.ts +5 -1
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +320 -289
- package/libs/PanoTagPlugin/controller/Tag/BoxTag.d.ts +119 -0
- package/libs/PanoTagPlugin/controller/Tag/BoxTag.js +515 -0
- package/libs/PanoTagPlugin/controller/Tag/MaskTag.d.ts +257 -0
- package/libs/PanoTagPlugin/controller/Tag/MaskTag.js +815 -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/PolygonTag.d.ts +112 -0
- package/libs/PanoTagPlugin/controller/Tag/PolygonTag.js +478 -0
- package/libs/PanoTagPlugin/controller/TagRender.d.ts +1 -1
- package/libs/PanoTagPlugin/controller/TagUtil.js +19 -17
- package/libs/PanoTagPlugin/controller/index.d.ts +55 -2
- package/libs/PanoTagPlugin/controller/index.js +261 -148
- package/libs/PanoTagPlugin/index.js +16 -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/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/base/BasePlugin.js +1 -1
- package/libs/index.js +163 -158
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +1 -1
package/libs/index.js
CHANGED
|
@@ -1,78 +1,78 @@
|
|
|
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 { DigitalPerformancePlugin as
|
|
42
|
-
import { exports as
|
|
43
|
-
import { CSS3DRender as
|
|
44
|
-
import { Model as
|
|
45
|
-
import { default as
|
|
46
|
-
import { default as
|
|
47
|
-
import { Polyline as
|
|
48
|
-
import { Magnifier as
|
|
49
|
-
import { validatePolygon as
|
|
50
|
-
import { DISPLAY_STRATEGY_TYPE as
|
|
51
|
-
import { ModelItemLabelPlugin as
|
|
52
|
-
import { ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE as
|
|
53
|
-
import { Plugin as
|
|
54
|
-
import { GuideLineItem$1 as
|
|
55
|
-
import { GuideLineModeItem$1 as
|
|
56
|
-
import { default as
|
|
57
|
-
import { default as
|
|
58
|
-
import { typing as
|
|
59
|
-
import { default as
|
|
60
|
-
import { defaultGlobalConfig as
|
|
61
|
-
import { ContentType as
|
|
62
|
-
import { Object3DHelperController as
|
|
63
|
-
import { typings as
|
|
64
|
-
import { createPoint as
|
|
65
|
-
import { createLine as
|
|
66
|
-
import { createPolyline as
|
|
67
|
-
import { createPolygon as
|
|
68
|
-
import { createPrism as
|
|
69
|
-
import { createRectangle as
|
|
70
|
-
import { createCircle as
|
|
71
|
-
import { createCylinder as
|
|
72
|
-
import { createBox as
|
|
73
|
-
import { DigitalHuman as
|
|
74
|
-
import { DigitalPlayground as
|
|
75
|
-
import { DigitalStateMachine as
|
|
3
|
+
import { PaintBrush as Bn } from "./components/PaintBrush/index.js";
|
|
4
|
+
import { PaintBrushTypeEnum as Nn } from "./components/PaintBrush/typings.js";
|
|
5
|
+
import { ModelViewPlugin as wn } from "./ModelViewPlugin/Plugin.js";
|
|
6
|
+
import { CSS3DRenderPlugin as jn } from "./CSS3DRenderPlugin/index.js";
|
|
7
|
+
import { PanoCursorRaycasterPlugin as Wn } from "./PanoCursorRaycasterPlugin/index.js";
|
|
8
|
+
import { ModelRoomLabelPlugin as zn, modelRoomLabelPluginServerParams as Jn } from "./ModelRoomLabelPlugin/index.js";
|
|
9
|
+
import { FLOOR_PLAN_ATTACHED_TO as Qn } from "./floorplan/constant.js";
|
|
10
|
+
import { ModelFloorplanPlugin as Zn } from "./floorplan/ModelFloorplanPlugin/index.js";
|
|
11
|
+
import { MapviewFloorplanPlugin as ra } from "./floorplan/MapviewFloorplanPlugin/index.js";
|
|
12
|
+
import { TopviewFloorplanPlugin as ia } from "./floorplan/TopviewFloorplanPlugin/index.js";
|
|
13
|
+
import { PanoFloorplanRadarPlugin as pa } from "./floorplan/PanoFloorplanRadarPlugin/index.js";
|
|
14
|
+
import { FloorplanGuidePlugin as la } from "./floorplan/FloorplanGuidePlugin/index.js";
|
|
15
|
+
import { FLOOR_TYPE_MAP as aa, ROOM_FETILE_TYPE_MAP as Pa, ROOM_TYPE_MAP as fa } from "./floorplan/typings/floorplanServerData.js";
|
|
16
|
+
import { ModelChassisCompassPlugin as xa } from "./ModelChassisCompassPlugin/Plugin.js";
|
|
17
|
+
import { ModelEntryDoorGuidePlugin as sa } from "./ModelEntryDoorGuidePlugin/Plugin.js";
|
|
18
|
+
import { CameraMovementPlugin as Ma } from "./CameraMovementPlugin/CameraMovementPlugin.js";
|
|
19
|
+
import { CameraMovementEffect as Ca, Rotation as La } from "./CameraMovementPlugin/typing.js";
|
|
20
|
+
import { PanoRulerPlugin as ya } from "./PanoRulerPlugin/Plugin.js";
|
|
21
|
+
import { PanoRulerProPlugin as _a } from "./PanoRulerProPlugin/index.js";
|
|
22
|
+
import { PanoCompassPlugin as Ia } from "./PanoCompassPlugin/index.js";
|
|
23
|
+
import { PanoMeasurePlugin as Da } from "./PanoMeasurePlugin/index.js";
|
|
24
|
+
import { MeasurePlugin as va } from "./MeasurePlugin/index.js";
|
|
25
|
+
import { PanoSpatialTagPlugin as Fa } from "./PanoSpatialTagPlugin/Plugin.js";
|
|
26
|
+
import { modelItemLabelPluginServerParams as ba } from "./ModelItemLabelPlugin/index.js";
|
|
27
|
+
import { ModelTVVideoPlugin as Va } from "./ModelTVVideoPlugin/Plugin.js";
|
|
28
|
+
import { DIRECTION as Ba } from "./ModelTVVideoPlugin/typings.js";
|
|
29
|
+
import { itemLabelPluginServerParams as Na } from "./ItemLabelPlugin/index.js";
|
|
30
|
+
import { PanoDoorLabelPlugin as wa } from "./PanoDoorLabelPlugin/index.js";
|
|
31
|
+
import { GuideLinePlugin as ja } from "./GuideLinePlugin/index.js";
|
|
32
|
+
import { CruisePlugin as Wa, MovePlugin as qa } from "./CruisePlugin/index.js";
|
|
33
|
+
import { PanoTagPlugin as Ja } from "./PanoTagPlugin/index.js";
|
|
34
|
+
import { Object3DHelperPlugin as Qa } from "./Object3DHelperPlugin/index.js";
|
|
35
|
+
import { PanoVideoPlugin as Za } from "./PanoVideoPlugin/index.js";
|
|
36
|
+
import { PipelinePlugin as rP } from "./PipelinePlugin/index.js";
|
|
37
|
+
import { AreaMakerPlugin as iP } from "./AreaMakerPlugin/index.js";
|
|
38
|
+
import { CurrentPanoImagePlugin as pP } from "./CurrentPanoImagePlugin/index.js";
|
|
39
|
+
import { Sculpt as lP, SculptPlugin as nP, SculptPluginForFive as aP } from "./Sculpt/index.js";
|
|
40
|
+
import { ModelMakerPlugin as fP } from "./ModelMakerPlugin/index.js";
|
|
41
|
+
import { DigitalPerformancePlugin as xP } from "./DigitalPerformancePlugin/index.js";
|
|
42
|
+
import { exports as sP } from "./shared-utils/exports.js";
|
|
43
|
+
import { CSS3DRender as MP } from "./CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
44
|
+
import { Model as CP } from "./PanoMeasurePlugin/Model/index.js";
|
|
45
|
+
import { default as cP } from "./PanoMeasurePlugin/Model/point.js";
|
|
46
|
+
import { default as RP } from "./PanoMeasurePlugin/Model/line.js";
|
|
47
|
+
import { Polyline as EP } from "./PanoMeasurePlugin/Model/polyline.js";
|
|
48
|
+
import { Magnifier as SP } from "./shared-utils/three/Magnifier.js";
|
|
49
|
+
import { validatePolygon as OP } from "./MeasurePlugin/utils/validatePolygon.js";
|
|
50
|
+
import { DISPLAY_STRATEGY_TYPE as AP } from "./ModelItemLabelPlugin/typings.js";
|
|
51
|
+
import { ModelItemLabelPlugin as GP } from "./ModelItemLabelPlugin/ModelItemLabelPlugin.js";
|
|
52
|
+
import { ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE as YP } from "./ItemLabelPlugin/typings.js";
|
|
53
|
+
import { Plugin as hP } from "./ItemLabelPlugin/Plugin.js";
|
|
54
|
+
import { GuideLineItem$1 as HP } from "./GuideLinePlugin/GuideLineItem/index.js";
|
|
55
|
+
import { GuideLineModeItem$1 as kP } from "./GuideLinePlugin/GuideLineModeItem/index.js";
|
|
56
|
+
import { default as UP, default as jP } from "./CruisePlugin/Work.js";
|
|
57
|
+
import { default as WP } from "./CruisePlugin/Move.js";
|
|
58
|
+
import { typing as zP } from "./CruisePlugin/typing/index.js";
|
|
59
|
+
import { default as KP, pluginFlag as QP } from "./PanoTagPlugin/controller/index.js";
|
|
60
|
+
import { defaultGlobalConfig as ZP } from "./PanoTagPlugin/typings/tag/TagConfig.js";
|
|
61
|
+
import { ContentType as rf, DimensionType as tf, PointType as mf } from "./PanoTagPlugin/Archive/deprecated.js";
|
|
62
|
+
import { Object3DHelperController as ef, PLUGIN as lf } from "./Object3DHelperPlugin/Controller.js";
|
|
63
|
+
import { typings as af } from "./PanoVideoPlugin/typings/index.js";
|
|
64
|
+
import { createPoint as ff } from "./Sculpt/Objects/Point/index.js";
|
|
65
|
+
import { createLine as xf } from "./Sculpt/Objects/Line/index.js";
|
|
66
|
+
import { createPolyline as sf } from "./Sculpt/Objects/Polyline/index.js";
|
|
67
|
+
import { createPolygon as Mf } from "./Sculpt/Objects/Polygon/index.js";
|
|
68
|
+
import { createPrism as Cf } from "./Sculpt/Objects/Prism/index.js";
|
|
69
|
+
import { createRectangle as cf } from "./Sculpt/Objects/Rectangle/index.js";
|
|
70
|
+
import { createCircle as Rf } from "./Sculpt/Objects/Circle/index.js";
|
|
71
|
+
import { createCylinder as Ef } from "./Sculpt/Objects/Cylinder/index.js";
|
|
72
|
+
import { createBox as Sf } from "./Sculpt/Objects/Box/index.js";
|
|
73
|
+
import { DigitalHuman as Of } from "./DigitalPerformancePlugin/core/DigitalHuman.js";
|
|
74
|
+
import { DigitalPlayground as Af } from "./DigitalPerformancePlugin/core/DigitalPlayground.js";
|
|
75
|
+
import { DigitalStateMachine as Gf } from "./DigitalPerformancePlugin/core/DigitalStateMachine.js";
|
|
76
76
|
import "./components/PaintBrush/Controller.js";
|
|
77
77
|
import "./components/PaintBrush/utils.js";
|
|
78
78
|
import "./components/PaintBrush/tween.js";
|
|
@@ -514,6 +514,11 @@ import "./Sculpt/utils/three/RectangleGeometry.js";
|
|
|
514
514
|
import "./shared-utils/forReverseEach.js";
|
|
515
515
|
import "./Sculpt/Editors/RectangleMeshEditor.js";
|
|
516
516
|
import "./Sculpt/utils/sortPositionsByCameraPosition.js";
|
|
517
|
+
import "./PanoTagPlugin/controller/Tag/BoxTag.js";
|
|
518
|
+
import "./PanoTagPlugin/utils/sculptDataToBoxPosition.js";
|
|
519
|
+
import "./PanoTagPlugin/controller/Tag/PolygonTag.js";
|
|
520
|
+
import "./PanoTagPlugin/controller/Tag/MaskTag.js";
|
|
521
|
+
import "./PanoTagPlugin/controller/Tag/MaskTag.shaders.js";
|
|
517
522
|
import "./PanoTagPlugin/Components/TagContainer.js";
|
|
518
523
|
import "./PanoTagPlugin/Components/TagItem.js";
|
|
519
524
|
import "./PanoTagPlugin/Components/Common/TagPoint.js";
|
|
@@ -587,89 +592,89 @@ import "./shared-utils/five/lookObject.js";
|
|
|
587
592
|
r();
|
|
588
593
|
o();
|
|
589
594
|
export {
|
|
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
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
595
|
+
iP as AreaMakerPlugin,
|
|
596
|
+
MP as CSS3DRender,
|
|
597
|
+
jn as CSS3DRenderPlugin,
|
|
598
|
+
Ca as CameraMovementEffect,
|
|
599
|
+
Ma as CameraMovementPlugin,
|
|
600
|
+
rf as ContentType,
|
|
601
|
+
Wa as CruisePlugin,
|
|
602
|
+
UP as CruisePluginController,
|
|
603
|
+
zP as CruisePluginTypes,
|
|
604
|
+
pP as CurrentPanoImagePlugin,
|
|
605
|
+
Ba as DIRECTION,
|
|
606
|
+
AP as DISPLAY_STRATEGY_TYPE,
|
|
607
|
+
Of as DigitalHuman,
|
|
608
|
+
xP as DigitalPerformancePlugin,
|
|
609
|
+
Af as DigitalPlayground,
|
|
610
|
+
Gf as DigitalStateMachine,
|
|
611
|
+
tf as DimensionType,
|
|
612
|
+
Qn as FLOOR_PLAN_ATTACHED_TO,
|
|
613
|
+
aa as FLOOR_TYPE_MAP,
|
|
614
|
+
la as FloorplanGuidePlugin,
|
|
615
|
+
HP as GuideLineItem,
|
|
616
|
+
kP as GuideLineModeItem,
|
|
617
|
+
ja as GuideLinePlugin,
|
|
618
|
+
YP as ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE,
|
|
619
|
+
hP as ItemLabelPlugin,
|
|
620
|
+
SP as Magnifier,
|
|
621
|
+
ra as MapviewFloorplanPlugin,
|
|
622
|
+
va as MeasurePlugin,
|
|
623
|
+
xa as ModelChassisCompassPlugin,
|
|
624
|
+
sa as ModelEntryDoorGuidePlugin,
|
|
625
|
+
Zn as ModelFloorplanPlugin,
|
|
626
|
+
GP as ModelItemLabelPlugin,
|
|
627
|
+
fP as ModelMakerPlugin,
|
|
628
|
+
zn as ModelRoomLabelPlugin,
|
|
629
|
+
Va as ModelTVVideoPlugin,
|
|
630
|
+
wn as ModelViewPlugin,
|
|
631
|
+
WP as MoveController,
|
|
632
|
+
qa as MovePlugin,
|
|
633
|
+
ef as Object3DHelperController,
|
|
634
|
+
Qa as Object3DHelperPlugin,
|
|
635
|
+
lf as PLUGIN,
|
|
636
|
+
Bn as PaintBrush,
|
|
637
|
+
Nn as PaintBrushTypeEnum,
|
|
638
|
+
Ia as PanoCompassPlugin,
|
|
639
|
+
Wn as PanoCursorRaycasterPlugin,
|
|
640
|
+
wa as PanoDoorLabelPlugin,
|
|
641
|
+
pa as PanoFloorplanRadarPlugin,
|
|
642
|
+
Da as PanoMeasurePlugin,
|
|
643
|
+
RP as PanoMeasurePluginLine,
|
|
644
|
+
CP as PanoMeasurePluginModel,
|
|
645
|
+
cP as PanoMeasurePluginPoint,
|
|
646
|
+
EP as PanoMeasurePluginPolyline,
|
|
647
|
+
ya as PanoRulerPlugin,
|
|
648
|
+
_a as PanoRulerProPlugin,
|
|
649
|
+
Fa as PanoSpatialTagPlugin,
|
|
650
|
+
Ja as PanoTagPlugin,
|
|
651
|
+
KP as PanoTagPluginController,
|
|
652
|
+
Za as PanoVideoPlugin,
|
|
653
|
+
af as PanoVideoPluginType,
|
|
654
|
+
rP as PipelinePlugin,
|
|
655
|
+
mf as PointType,
|
|
656
|
+
Pa as ROOM_FETILE_TYPE_MAP,
|
|
657
|
+
fa as ROOM_TYPE_MAP,
|
|
658
|
+
La as Rotation,
|
|
659
|
+
lP as Sculpt,
|
|
660
|
+
nP as SculptPlugin,
|
|
661
|
+
aP as SculptPluginForFive,
|
|
662
|
+
ia as TopviewFloorplanPlugin,
|
|
663
|
+
sP as Util,
|
|
664
|
+
jP as WalkController,
|
|
665
|
+
Sf as createBox,
|
|
666
|
+
Rf as createCircle,
|
|
667
|
+
Ef as createCylinder,
|
|
668
|
+
xf as createLine,
|
|
669
|
+
ff as createPoint,
|
|
670
|
+
Mf as createPolygon,
|
|
671
|
+
sf as createPolyline,
|
|
672
|
+
Cf as createPrism,
|
|
673
|
+
cf as createRectangle,
|
|
674
|
+
ZP as defaultGlobalConfig,
|
|
675
|
+
Na as itemLabelPluginServerParams,
|
|
676
|
+
ba as modelItemLabelPluginServerParams,
|
|
677
|
+
Jn as modelRoomLabelPluginServerParams,
|
|
678
|
+
QP as pluginFlag,
|
|
679
|
+
OP as validatePolygon
|
|
675
680
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
function A() {
|
|
2
2
|
console.debug(
|
|
3
|
-
"%c %c@realsee/dnalogel %cv3.77.
|
|
3
|
+
"%c %c@realsee/dnalogel %cv3.77.6",
|
|
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",
|