@realsee/dnalogel 3.49.0 → 3.49.2
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 +9 -1
- package/dist/Sculpt/Meshes/Line.d.ts +2 -1
- package/dist/index.cjs.js +3008 -87
- package/dist/index.js +39458 -20049
- package/dist/index.umd.js +3001 -80
- package/dist/shared-utils/three/index.d.ts +1 -1
- package/libs/AreaMakerPlugin/Controller.js +7 -4
- package/libs/AreaMakerPlugin/index.js +7 -4
- package/libs/AreaMakerPlugin/utils/Item.js +7 -4
- package/libs/CSS3DRenderPlugin/Controller.js +12 -9
- package/libs/CSS3DRenderPlugin/index.js +9 -6
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +21 -18
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +6 -3
- package/libs/CruisePlugin/BaseController.js +12 -9
- package/libs/CruisePlugin/Move.js +7 -4
- package/libs/CruisePlugin/Work.js +7 -4
- package/libs/CruisePlugin/index.js +11 -8
- package/libs/CurrentPanoImagePlugin/Controller.js +6 -3
- package/libs/CurrentPanoImagePlugin/index.js +7 -4
- package/libs/GuideLinePlugin/Controller.js +9 -6
- package/libs/GuideLinePlugin/GuideLineItem.js +7 -4
- package/libs/GuideLinePlugin/GuideLineModeItem/index.js +4 -3
- package/libs/GuideLinePlugin/GuideLineModeItem.js +7 -4
- package/libs/GuideLinePlugin/index.js +11 -8
- package/libs/ModelMakerPlugin/Controller.js +7 -4
- package/libs/ModelMakerPlugin/index.js +7 -4
- package/libs/ModelMakerPlugin/item/baseItem.js +2 -2
- package/libs/ModelMakerPlugin/item/boxItem.js +2 -2
- package/libs/ModelMakerPlugin/item/polygonItem.js +2 -2
- package/libs/ModelMakerPlugin/item/prismItem.js +2 -2
- package/libs/ModelMakerPlugin/utils/getFiveDomEvent.js +1 -1
- package/libs/ModelTVVideoPlugin/Plugin.js +7 -4
- package/libs/ModelTVVideoPlugin/index.js +6 -3
- package/libs/Object3DHelperPlugin/Controller.js +6 -3
- package/libs/Object3DHelperPlugin/index.js +9 -6
- package/libs/PanoCompassPlugin/Controller.js +6 -3
- package/libs/PanoCompassPlugin/index.js +7 -4
- package/libs/PanoDoorLabelPlugin/BaseController.js +16 -13
- package/libs/PanoDoorLabelPlugin/Controller.js +58 -55
- package/libs/PanoDoorLabelPlugin/index.js +7 -4
- package/libs/PanoMeasurePlugin/Components/Controller0.js +6 -3
- package/libs/PanoMeasurePlugin/Components/Controller1.js +6 -3
- package/libs/PanoMeasurePlugin/Controller/EditController.js +6 -3
- package/libs/PanoMeasurePlugin/Controller/WatchController.js +6 -3
- package/libs/PanoMeasurePlugin/Controller/index.js +6 -3
- package/libs/PanoMeasurePlugin/Model/area.js +6 -3
- package/libs/PanoMeasurePlugin/Modules/Magnifier.js +4 -1
- package/libs/PanoMeasurePlugin/Modules/UIController/index.js +6 -3
- package/libs/PanoMeasurePlugin/index.js +17 -14
- package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +16 -13
- package/libs/PanoSpatialTagPlugin/Plugin.js +7 -4
- package/libs/PanoSpatialTagPlugin/index.js +4 -1
- package/libs/PanoTagPlugin/Components/Common/TagPoint.js +24 -21
- package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +6 -3
- package/libs/PanoTagPlugin/Components/Tag/index.js +6 -3
- package/libs/PanoTagPlugin/Components/TagContainer.js +6 -3
- package/libs/PanoTagPlugin/Components/TagItem.js +6 -3
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +11 -5
- package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +14 -11
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +12 -9
- package/libs/PanoTagPlugin/controller/Tag/PointTag.js +10 -7
- package/libs/PanoTagPlugin/controller/TagRender.js +7 -4
- package/libs/PanoTagPlugin/controller/TagUtil.js +7 -4
- package/libs/PanoTagPlugin/controller/index.js +10 -7
- package/libs/PanoTagPlugin/index.js +16 -13
- package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +25 -22
- package/libs/PanoVideoPlugin/Controller.js +9 -6
- package/libs/PanoVideoPlugin/VideoMeshController.js +6 -3
- package/libs/PanoVideoPlugin/index.js +9 -6
- package/libs/PipelinePlugin/Controller.js +13 -10
- package/libs/PipelinePlugin/index.js +7 -4
- package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +6 -3
- package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +16 -13
- package/libs/PipelinePlugin/utils/Objects/Pipe.js +20 -17
- package/libs/Sculpt/Meshes/Box.js +7 -6
- package/libs/Sculpt/Meshes/Cylinder.js +4 -3
- package/libs/Sculpt/Meshes/Line.d.ts +2 -1
- package/libs/Sculpt/Meshes/Line.js +11 -10
- package/libs/Sculpt/Meshes/LineWithDots.js +1 -1
- package/libs/Sculpt/Meshes/Point.js +11 -10
- package/libs/Sculpt/Meshes/PolygonWithEdge.js +1 -1
- package/libs/Sculpt/Meshes/Polyline.js +31 -31
- package/libs/Sculpt/Meshes/Prism.js +2 -2
- package/libs/Sculpt/Meshes/Rectangle.js +5 -4
- package/libs/Sculpt/Objects/Line/Editor.js +4 -3
- package/libs/Sculpt/index.js +4 -3
- package/libs/Sculpt/utils/three/ColoredMesh.js +5 -4
- package/libs/base/BasePlugin.js +5 -4
- package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +6 -3
- package/libs/floorplan/MapviewFloorplanPlugin/index.js +7 -4
- package/libs/floorplan/ModelFloorplanPlugin/Controller.js +6 -3
- package/libs/floorplan/ModelFloorplanPlugin/index.js +7 -4
- package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +6 -3
- package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +7 -4
- package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +6 -3
- package/libs/floorplan/TopviewFloorplanPlugin/index.js +7 -4
- package/libs/floorplan/index.js +2 -1
- package/libs/index.js +131 -128
- package/libs/shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js +1 -1
- package/libs/shared-utils/Object3DHelper/Helper/MoveHelper.js +1 -1
- package/libs/shared-utils/Object3DHelper/Helper/index.js +1 -1
- package/libs/shared-utils/five/FiveDomEvents.js +1 -1
- package/libs/shared-utils/five/FiveLine.js +6 -18
- package/libs/shared-utils/five/index.js +4 -3
- package/libs/shared-utils/five/lookObject.js +18 -17
- package/libs/shared-utils/index.js +1 -1
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/tag.js +5 -5
- package/libs/shared-utils/three/PointSelector/index.js +24 -22
- package/libs/shared-utils/three/PointSelector/utils/PointSelectorHelper.js +1 -1
- package/libs/shared-utils/three/boundingBox.js +1 -1
- package/libs/shared-utils/three/index.d.ts +1 -1
- package/libs/shared-utils/three/index.js +2 -1
- package/libs/vendor/three/build/three.module.js +19336 -0
- package/libs/vendor/three/examples/jsm/lines/LineGeometry.js +28 -0
- package/libs/vendor/three/examples/jsm/lines/LineSegmentsGeometry.js +69 -0
- package/package.json +1 -1
- /package/dist/shared-utils/three/{objects → core}/LineSegments.d.ts +0 -0
- /package/dist/shared-utils/three/{THREERaycaster.d.ts → core/Raycaster.d.ts} +0 -0
- /package/dist/shared-utils/three/{THREESphere.d.ts → core/Sphere.d.ts} +0 -0
- /package/libs/shared-utils/three/{objects → core}/LineSegments.d.ts +0 -0
- /package/libs/shared-utils/three/{objects → core}/LineSegments.js +0 -0
- /package/libs/shared-utils/three/{THREERaycaster.d.ts → core/Raycaster.d.ts} +0 -0
- /package/libs/shared-utils/three/{THREERaycaster.js → core/Raycaster.js} +0 -0
- /package/libs/shared-utils/three/{THREESphere.d.ts → core/Sphere.d.ts} +0 -0
- /package/libs/shared-utils/three/{THREESphere.js → core/Sphere.js} +0 -0
|
@@ -12,16 +12,17 @@ var u = (i, e, t) => e in i ? g(i, e, { enumerable: !0, configurable: !0, writab
|
|
|
12
12
|
var n = (i, e, t) => (u(i, typeof e != "symbol" ? e + "" : e, t), t);
|
|
13
13
|
import * as s from "three";
|
|
14
14
|
import { DEFAULT_COLOR as F } from "../../typings/style.js";
|
|
15
|
-
import { IObject3D as
|
|
15
|
+
import { IObject3D as p } from "../../../shared-utils/three/IObject3D.js";
|
|
16
16
|
import "hammerjs";
|
|
17
17
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
18
18
|
import "@realsee/five/line";
|
|
19
|
+
import "../../../vendor/three/examples/jsm/lines/LineGeometry.js";
|
|
19
20
|
import "../../../shared-utils/tag.js";
|
|
20
|
-
import "../../../shared-utils/three/
|
|
21
|
+
import "../../../shared-utils/three/core/Sphere.js";
|
|
21
22
|
import "animejs";
|
|
22
23
|
import { notNil as y } from "../../../shared-utils/isNil.js";
|
|
23
24
|
import "../../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
24
|
-
class
|
|
25
|
+
class x extends p {
|
|
25
26
|
constructor(t) {
|
|
26
27
|
var h, m;
|
|
27
28
|
super();
|
|
@@ -83,5 +84,5 @@ class _ extends B {
|
|
|
83
84
|
}
|
|
84
85
|
}
|
|
85
86
|
export {
|
|
86
|
-
|
|
87
|
+
x as ColoredMesh
|
|
87
88
|
};
|
package/libs/base/BasePlugin.js
CHANGED
|
@@ -6,18 +6,19 @@ import "three";
|
|
|
6
6
|
import "hammerjs";
|
|
7
7
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
8
8
|
import "@realsee/five/line";
|
|
9
|
+
import "../vendor/three/examples/jsm/lines/LineGeometry.js";
|
|
9
10
|
import "../shared-utils/tag.js";
|
|
10
|
-
import "../shared-utils/three/
|
|
11
|
+
import "../shared-utils/three/core/Sphere.js";
|
|
11
12
|
import "animejs";
|
|
12
13
|
import { FiveUtil as a } from "../shared-utils/Utils/FiveUtil.js";
|
|
13
14
|
import { absoluteUrl as m } from "../shared-utils/url/absoluteUrl.js";
|
|
14
15
|
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
15
|
-
let
|
|
16
|
+
let P = class {
|
|
16
17
|
constructor(t, r) {
|
|
17
18
|
/**
|
|
18
19
|
* @realsee/dnalogel 版本号
|
|
19
20
|
*/
|
|
20
|
-
i(this, "VERSION", "3.49.
|
|
21
|
+
i(this, "VERSION", "3.49.2");
|
|
21
22
|
i(this, "NAME");
|
|
22
23
|
i(this, "five");
|
|
23
24
|
i(this, "workUtil");
|
|
@@ -54,5 +55,5 @@ let x = class {
|
|
|
54
55
|
}
|
|
55
56
|
};
|
|
56
57
|
export {
|
|
57
|
-
|
|
58
|
+
P as Controller
|
|
58
59
|
};
|
|
@@ -43,8 +43,9 @@ import { FloorplanErrorType as m, SHOW_ANIME_DURATION as H } from "../utils/cons
|
|
|
43
43
|
import "hammerjs";
|
|
44
44
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
45
45
|
import "@realsee/five/line";
|
|
46
|
+
import "../../vendor/three/examples/jsm/lines/LineGeometry.js";
|
|
46
47
|
import "../../shared-utils/tag.js";
|
|
47
|
-
import "../../shared-utils/three/
|
|
48
|
+
import "../../shared-utils/three/core/Sphere.js";
|
|
48
49
|
import "animejs";
|
|
49
50
|
import { isNil as U } from "../../shared-utils/isNil.js";
|
|
50
51
|
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
@@ -88,6 +89,8 @@ import "../../shared-utils/five/getFiveModel.js";
|
|
|
88
89
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
89
90
|
import "../../shared-utils/nearlyEqual.js";
|
|
90
91
|
import "../../shared-utils/five/changeMode.js";
|
|
92
|
+
import "../../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
93
|
+
import "../../vendor/three/build/three.module.js";
|
|
91
94
|
import "../../shared-utils/positionToVector3.js";
|
|
92
95
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
93
96
|
import "../../shared-utils/three/temp.js";
|
|
@@ -99,7 +102,7 @@ function G(d) {
|
|
|
99
102
|
const { latitude: r, longitude: t } = d, e = Math.abs(r - Math.PI / 2) < 10 * Math.PI / 180, i = t < 30 * (Math.PI / 180) || t > 330 * (Math.PI / 180);
|
|
100
103
|
return e && i;
|
|
101
104
|
}
|
|
102
|
-
class
|
|
105
|
+
class ee extends O {
|
|
103
106
|
constructor(t, e) {
|
|
104
107
|
var a, f;
|
|
105
108
|
super(t);
|
|
@@ -434,5 +437,5 @@ class Xt extends O {
|
|
|
434
437
|
}
|
|
435
438
|
}
|
|
436
439
|
export {
|
|
437
|
-
|
|
440
|
+
ee as Controller
|
|
438
441
|
};
|
|
@@ -42,6 +42,9 @@ import "../../shared-utils/Subscribe.js";
|
|
|
42
42
|
import "hammerjs";
|
|
43
43
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
44
44
|
import "@realsee/five/line";
|
|
45
|
+
import "../../vendor/three/examples/jsm/lines/LineGeometry.js";
|
|
46
|
+
import "../../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
47
|
+
import "../../vendor/three/build/three.module.js";
|
|
45
48
|
import "../../shared-utils/tag.js";
|
|
46
49
|
import "../../shared-utils/positionToVector3.js";
|
|
47
50
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
@@ -51,7 +54,7 @@ import "../../shared-utils/Utils/BaseUtil.js";
|
|
|
51
54
|
import "../../shared-utils/Utils/WorkUtil.js";
|
|
52
55
|
import "../../shared-utils/five/transformPosition.js";
|
|
53
56
|
import "../../shared-utils/three/temp.js";
|
|
54
|
-
import "../../shared-utils/three/
|
|
57
|
+
import "../../shared-utils/three/core/Sphere.js";
|
|
55
58
|
import "animejs";
|
|
56
59
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
57
60
|
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
@@ -63,8 +66,8 @@ import "../../shared-utils/five/changeMode.js";
|
|
|
63
66
|
import "../../shared-utils/changeModelCanvasOpacity.js";
|
|
64
67
|
import "../../shared-utils/isNil.js";
|
|
65
68
|
import "../../shared-utils/five/fiveModelLoad.js";
|
|
66
|
-
const
|
|
69
|
+
const xo = (o, r) => new t(o, r);
|
|
67
70
|
export {
|
|
68
|
-
|
|
69
|
-
|
|
71
|
+
xo as MapviewFloorplanPlugin,
|
|
72
|
+
xo as default
|
|
70
73
|
};
|
|
@@ -43,8 +43,9 @@ import "three";
|
|
|
43
43
|
import "hammerjs";
|
|
44
44
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
45
45
|
import "@realsee/five/line";
|
|
46
|
+
import "../../vendor/three/examples/jsm/lines/LineGeometry.js";
|
|
46
47
|
import "../../shared-utils/tag.js";
|
|
47
|
-
import "../../shared-utils/three/
|
|
48
|
+
import "../../shared-utils/three/core/Sphere.js";
|
|
48
49
|
import "animejs";
|
|
49
50
|
import { isNil as G } from "../../shared-utils/isNil.js";
|
|
50
51
|
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
@@ -87,6 +88,8 @@ import "../../shared-utils/five/getFiveModel.js";
|
|
|
87
88
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
88
89
|
import "../../shared-utils/nearlyEqual.js";
|
|
89
90
|
import "../../shared-utils/five/changeMode.js";
|
|
91
|
+
import "../../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
92
|
+
import "../../vendor/three/build/three.module.js";
|
|
90
93
|
import "../../shared-utils/positionToVector3.js";
|
|
91
94
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
92
95
|
import "../../shared-utils/three/temp.js";
|
|
@@ -98,7 +101,7 @@ function z(d) {
|
|
|
98
101
|
const { latitude: s, longitude: t } = d, e = Math.abs(s - Math.PI / 2) < 10 * Math.PI / 180, i = t < 30 * (Math.PI / 180) || t > 330 * (Math.PI / 180);
|
|
99
102
|
return e && i;
|
|
100
103
|
}
|
|
101
|
-
class
|
|
104
|
+
class te extends T {
|
|
102
105
|
constructor(t, e) {
|
|
103
106
|
var a, f, m;
|
|
104
107
|
super(t);
|
|
@@ -429,5 +432,5 @@ class Xt extends T {
|
|
|
429
432
|
}
|
|
430
433
|
}
|
|
431
434
|
export {
|
|
432
|
-
|
|
435
|
+
te as Controller
|
|
433
436
|
};
|
|
@@ -43,6 +43,9 @@ import "../../shared-utils/Subscribe.js";
|
|
|
43
43
|
import "hammerjs";
|
|
44
44
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
45
45
|
import "@realsee/five/line";
|
|
46
|
+
import "../../vendor/three/examples/jsm/lines/LineGeometry.js";
|
|
47
|
+
import "../../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
48
|
+
import "../../vendor/three/build/three.module.js";
|
|
46
49
|
import "../../shared-utils/tag.js";
|
|
47
50
|
import "../../shared-utils/positionToVector3.js";
|
|
48
51
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
@@ -52,7 +55,7 @@ import "../../shared-utils/Utils/BaseUtil.js";
|
|
|
52
55
|
import "../../shared-utils/Utils/WorkUtil.js";
|
|
53
56
|
import "../../shared-utils/five/transformPosition.js";
|
|
54
57
|
import "../../shared-utils/three/temp.js";
|
|
55
|
-
import "../../shared-utils/three/
|
|
58
|
+
import "../../shared-utils/three/core/Sphere.js";
|
|
56
59
|
import "animejs";
|
|
57
60
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
58
61
|
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
@@ -62,8 +65,8 @@ import "../../shared-utils/nearlyEqual.js";
|
|
|
62
65
|
import "../../shared-utils/five/changeMode.js";
|
|
63
66
|
import "../../shared-utils/changeModelCanvasOpacity.js";
|
|
64
67
|
import "../../shared-utils/isNil.js";
|
|
65
|
-
const
|
|
68
|
+
const xo = (o, r) => new t(o, r);
|
|
66
69
|
export {
|
|
67
|
-
|
|
68
|
-
|
|
70
|
+
xo as ModelFloorplanPlugin,
|
|
71
|
+
xo as default
|
|
69
72
|
};
|
|
@@ -52,6 +52,9 @@ import "three";
|
|
|
52
52
|
import "hammerjs";
|
|
53
53
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
54
54
|
import "@realsee/five/line";
|
|
55
|
+
import "../../vendor/three/examples/jsm/lines/LineGeometry.js";
|
|
56
|
+
import "../../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
57
|
+
import "../../vendor/three/build/three.module.js";
|
|
55
58
|
import "../../shared-utils/tag.js";
|
|
56
59
|
import "../../shared-utils/positionToVector3.js";
|
|
57
60
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
@@ -61,12 +64,12 @@ import "../../shared-utils/Utils/BaseUtil.js";
|
|
|
61
64
|
import "../../shared-utils/Utils/WorkUtil.js";
|
|
62
65
|
import "../../shared-utils/five/transformPosition.js";
|
|
63
66
|
import "../../shared-utils/three/temp.js";
|
|
64
|
-
import "../../shared-utils/three/
|
|
67
|
+
import "../../shared-utils/three/core/Sphere.js";
|
|
65
68
|
import "animejs";
|
|
66
69
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
67
70
|
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
68
71
|
import "../Assets/floorplanExtraObject.js";
|
|
69
|
-
class
|
|
72
|
+
class mt extends O {
|
|
70
73
|
constructor(t, i) {
|
|
71
74
|
super(t);
|
|
72
75
|
// =============== public properties =================
|
|
@@ -209,5 +212,5 @@ class ut extends O {
|
|
|
209
212
|
}
|
|
210
213
|
}
|
|
211
214
|
export {
|
|
212
|
-
|
|
215
|
+
mt as Controller
|
|
213
216
|
};
|
|
@@ -23,6 +23,9 @@ import "three";
|
|
|
23
23
|
import "hammerjs";
|
|
24
24
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
25
25
|
import "@realsee/five/line";
|
|
26
|
+
import "../../vendor/three/examples/jsm/lines/LineGeometry.js";
|
|
27
|
+
import "../../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
28
|
+
import "../../vendor/three/build/three.module.js";
|
|
26
29
|
import "../../shared-utils/tag.js";
|
|
27
30
|
import "../../shared-utils/positionToVector3.js";
|
|
28
31
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
@@ -32,14 +35,14 @@ import "../../shared-utils/Utils/BaseUtil.js";
|
|
|
32
35
|
import "../../shared-utils/Utils/WorkUtil.js";
|
|
33
36
|
import "../../shared-utils/five/transformPosition.js";
|
|
34
37
|
import "../../shared-utils/three/temp.js";
|
|
35
|
-
import "../../shared-utils/three/
|
|
38
|
+
import "../../shared-utils/three/core/Sphere.js";
|
|
36
39
|
import "animejs";
|
|
37
40
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
38
41
|
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
39
42
|
import "../utils/formatData.js";
|
|
40
43
|
import "../Assets/floorplanExtraObject.js";
|
|
41
|
-
const
|
|
44
|
+
const U = (o, r) => new t(o, r);
|
|
42
45
|
export {
|
|
43
|
-
|
|
44
|
-
|
|
46
|
+
U as PanoFloorplanRadarPlugin,
|
|
47
|
+
U as default
|
|
45
48
|
};
|
|
@@ -41,8 +41,9 @@ import { changeModelCanvasOpacity as b } from "../../shared-utils/changeModelCan
|
|
|
41
41
|
import "hammerjs";
|
|
42
42
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
43
43
|
import "@realsee/five/line";
|
|
44
|
+
import "../../vendor/three/examples/jsm/lines/LineGeometry.js";
|
|
44
45
|
import "../../shared-utils/tag.js";
|
|
45
|
-
import "../../shared-utils/three/
|
|
46
|
+
import "../../shared-utils/three/core/Sphere.js";
|
|
46
47
|
import "animejs";
|
|
47
48
|
import { isNil as k } from "../../shared-utils/isNil.js";
|
|
48
49
|
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
@@ -85,10 +86,12 @@ import "../../shared-utils/five/getFiveModel.js";
|
|
|
85
86
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
86
87
|
import "../../shared-utils/nearlyEqual.js";
|
|
87
88
|
import "../../shared-utils/to.js";
|
|
89
|
+
import "../../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
90
|
+
import "../../vendor/three/build/three.module.js";
|
|
88
91
|
import "../../shared-utils/positionToVector3.js";
|
|
89
92
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
90
93
|
import "../../shared-utils/three/temp.js";
|
|
91
|
-
class
|
|
94
|
+
class qt extends M {
|
|
92
95
|
constructor(t, e) {
|
|
93
96
|
var h, c;
|
|
94
97
|
super(t);
|
|
@@ -361,5 +364,5 @@ class Bt extends M {
|
|
|
361
364
|
}
|
|
362
365
|
}
|
|
363
366
|
export {
|
|
364
|
-
|
|
367
|
+
qt as Controller
|
|
365
368
|
};
|
|
@@ -41,6 +41,9 @@ import "../../shared-utils/Subscribe.js";
|
|
|
41
41
|
import "hammerjs";
|
|
42
42
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
43
43
|
import "@realsee/five/line";
|
|
44
|
+
import "../../vendor/three/examples/jsm/lines/LineGeometry.js";
|
|
45
|
+
import "../../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
46
|
+
import "../../vendor/three/build/three.module.js";
|
|
44
47
|
import "../../shared-utils/tag.js";
|
|
45
48
|
import "../../shared-utils/positionToVector3.js";
|
|
46
49
|
import "../../shared-utils/five/vector3ToScreen.js";
|
|
@@ -50,7 +53,7 @@ import "../../shared-utils/Utils/BaseUtil.js";
|
|
|
50
53
|
import "../../shared-utils/Utils/WorkUtil.js";
|
|
51
54
|
import "../../shared-utils/five/transformPosition.js";
|
|
52
55
|
import "../../shared-utils/three/temp.js";
|
|
53
|
-
import "../../shared-utils/three/
|
|
56
|
+
import "../../shared-utils/three/core/Sphere.js";
|
|
54
57
|
import "animejs";
|
|
55
58
|
import "../../shared-utils/url/absoluteUrl.js";
|
|
56
59
|
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
@@ -60,8 +63,8 @@ import "../../shared-utils/to.js";
|
|
|
60
63
|
import "../../shared-utils/getPxmm.js";
|
|
61
64
|
import "../../shared-utils/changeModelCanvasOpacity.js";
|
|
62
65
|
import "../../shared-utils/isNil.js";
|
|
63
|
-
const
|
|
66
|
+
const co = (o, r) => new t(o, r);
|
|
64
67
|
export {
|
|
65
|
-
|
|
66
|
-
|
|
68
|
+
co as TopviewFloorplanPlugin,
|
|
69
|
+
co as default
|
|
67
70
|
};
|
package/libs/floorplan/index.js
CHANGED
|
@@ -3,8 +3,9 @@ import "three";
|
|
|
3
3
|
import "hammerjs";
|
|
4
4
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
5
5
|
import "@realsee/five/line";
|
|
6
|
+
import "../vendor/three/examples/jsm/lines/LineGeometry.js";
|
|
6
7
|
import "../shared-utils/tag.js";
|
|
7
|
-
import "../shared-utils/three/
|
|
8
|
+
import "../shared-utils/three/core/Sphere.js";
|
|
8
9
|
import "animejs";
|
|
9
10
|
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
10
11
|
import "../shared-utils/nearlyEqual.js";
|
package/libs/index.js
CHANGED
|
@@ -1,62 +1,62 @@
|
|
|
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 yl } from "./components/PaintBrush/index.js";
|
|
4
|
+
import { PaintBrushTypeEnum as Dl } from "./components/PaintBrush/typings.js";
|
|
5
|
+
import { ModelViewPlugin as bl } from "./ModelViewPlugin/Plugin.js";
|
|
6
|
+
import { CSS3DRenderPlugin as Fl } from "./CSS3DRenderPlugin/index.js";
|
|
7
|
+
import { PanoCursorRaycasterPlugin as cl } from "./PanoCursorRaycasterPlugin/index.js";
|
|
8
|
+
import { ModelRoomLabelPlugin as Nl, modelRoomLabelPluginServerParams as hl } from "./ModelRoomLabelPlugin/index.js";
|
|
9
|
+
import { FLOOR_PLAN_ATTACHED_TO as wl } from "./floorplan/constant.js";
|
|
10
|
+
import { ModelFloorplanPlugin as Hl } from "./floorplan/ModelFloorplanPlugin/index.js";
|
|
11
|
+
import { MapviewFloorplanPlugin as jl } from "./floorplan/MapviewFloorplanPlugin/index.js";
|
|
12
|
+
import { TopviewFloorplanPlugin as Wl } from "./floorplan/TopviewFloorplanPlugin/index.js";
|
|
13
|
+
import { PanoFloorplanRadarPlugin as zl } from "./floorplan/PanoFloorplanRadarPlugin/index.js";
|
|
14
|
+
import { FLOOR_TYPE_MAP as Kl, ROOM_FETILE_TYPE_MAP as Ql, ROOM_TYPE_MAP as Xl } from "./floorplan/typings/floorplanServerData.js";
|
|
15
|
+
import { ModelChassisCompassPlugin as on } from "./ModelChassisCompassPlugin/Plugin.js";
|
|
16
|
+
import { ModelEntryDoorGuidePlugin as tn } from "./ModelEntryDoorGuidePlugin/Plugin.js";
|
|
17
|
+
import { CameraMovementPlugin as pn } from "./CameraMovementPlugin/CameraMovementPlugin.js";
|
|
18
|
+
import { CameraMovementEffect as ln, Rotation as nn } from "./CameraMovementPlugin/typing.js";
|
|
19
|
+
import { PanoRulerPlugin as Pn } from "./PanoRulerPlugin/Plugin.js";
|
|
20
|
+
import { PanoRulerProPlugin as fn } from "./PanoRulerProPlugin/index.js";
|
|
21
|
+
import { PanoCompassPlugin as gn } from "./PanoCompassPlugin/index.js";
|
|
22
|
+
import { PanoMeasurePlugin as dn } from "./PanoMeasurePlugin/index.js";
|
|
23
|
+
import { PanoSpatialTagPlugin as Tn } from "./PanoSpatialTagPlugin/Plugin.js";
|
|
24
|
+
import { modelItemLabelPluginServerParams as Cn } from "./ModelItemLabelPlugin/index.js";
|
|
25
|
+
import { ModelTVVideoPlugin as En } from "./ModelTVVideoPlugin/Plugin.js";
|
|
26
|
+
import { DIRECTION as Rn } from "./ModelTVVideoPlugin/typings.js";
|
|
27
|
+
import { itemLabelPluginServerParams as On } from "./ItemLabelPlugin/index.js";
|
|
28
|
+
import { PanoDoorLabelPlugin as An } from "./PanoDoorLabelPlugin/index.js";
|
|
29
|
+
import { GuideLinePlugin as Gn } from "./GuideLinePlugin/index.js";
|
|
30
|
+
import { CruisePlugin as vn, MovePlugin as Fn } from "./CruisePlugin/index.js";
|
|
31
|
+
import { PanoTagPlugin as cn } from "./PanoTagPlugin/index.js";
|
|
32
|
+
import { Object3DHelperPlugin as Nn } from "./Object3DHelperPlugin/index.js";
|
|
33
|
+
import { PanoVideoPlugin as kn } from "./PanoVideoPlugin/index.js";
|
|
34
|
+
import { PipelinePlugin as Bn } from "./PipelinePlugin/index.js";
|
|
35
|
+
import { AreaMakerPlugin as Un } from "./AreaMakerPlugin/index.js";
|
|
36
|
+
import { CurrentPanoImagePlugin as $n } from "./CurrentPanoImagePlugin/index.js";
|
|
37
|
+
import { Sculpt as qn, SculptPlugin as zn } from "./Sculpt/index.js";
|
|
38
|
+
import { ModelMakerPlugin as Kn } from "./ModelMakerPlugin/index.js";
|
|
39
|
+
import { index as Xn } from "./shared-utils/index.js";
|
|
40
|
+
import { CSS3DRender as oa } from "./CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
41
|
+
import { Model as ta } from "./PanoMeasurePlugin/Model/index.js";
|
|
42
|
+
import { default as ma } from "./PanoMeasurePlugin/Model/point.js";
|
|
43
|
+
import { default as ea } from "./PanoMeasurePlugin/Model/line.js";
|
|
44
|
+
import { Polyline as na } from "./PanoMeasurePlugin/Model/polyline.js";
|
|
45
|
+
import { Magnifier as Pa } from "./shared-utils/three/Magnifier.js";
|
|
46
|
+
import { DISPLAY_STRATEGY_TYPE as fa } from "./ModelItemLabelPlugin/typings.js";
|
|
47
|
+
import { ModelItemLabelPlugin as ga } from "./ModelItemLabelPlugin/ModelItemLabelPlugin.js";
|
|
48
|
+
import { ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE as da } from "./ItemLabelPlugin/typings.js";
|
|
49
|
+
import { Plugin as Ta } from "./ItemLabelPlugin/Plugin.js";
|
|
50
|
+
import { GuideLineItem$1 as Ca } from "./GuideLinePlugin/GuideLineItem/index.js";
|
|
51
|
+
import { GuideLineModeItem$1 as Ea } from "./GuideLinePlugin/GuideLineModeItem/index.js";
|
|
52
|
+
import { default as Ra, default as Sa } from "./CruisePlugin/Work.js";
|
|
53
|
+
import { default as ya } from "./CruisePlugin/Move.js";
|
|
54
|
+
import { typing as Da } from "./CruisePlugin/typing/index.js";
|
|
55
|
+
import { default as ba, pluginFlag as va } from "./PanoTagPlugin/controller/index.js";
|
|
56
|
+
import { defaultGlobalConfig as Ya } from "./PanoTagPlugin/typings/tag/TagConfig.js";
|
|
57
|
+
import { ContentType as Va, DimensionType as Na, PointType as ha } from "./PanoTagPlugin/Archive/deprecated.js";
|
|
58
|
+
import { Object3DHelperController as wa, PLUGIN as Ba } from "./Object3DHelperPlugin/Controller.js";
|
|
59
|
+
import { typings as Ua } from "./PanoVideoPlugin/typings/index.js";
|
|
60
60
|
import "./components/PaintBrush/Controller.js";
|
|
61
61
|
import "./components/PaintBrush/utils.js";
|
|
62
62
|
import "./components/PaintBrush/tween.js";
|
|
@@ -71,6 +71,9 @@ import "./CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
|
71
71
|
import "hammerjs";
|
|
72
72
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
73
73
|
import "@realsee/five/line";
|
|
74
|
+
import "./vendor/three/examples/jsm/lines/LineGeometry.js";
|
|
75
|
+
import "./vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
76
|
+
import "./vendor/three/build/three.module.js";
|
|
74
77
|
import "./shared-utils/tag.js";
|
|
75
78
|
import "./shared-utils/positionToVector3.js";
|
|
76
79
|
import "./shared-utils/five/vector3ToScreen.js";
|
|
@@ -81,7 +84,7 @@ import "./shared-utils/Subscribe.js";
|
|
|
81
84
|
import "./shared-utils/Utils/WorkUtil.js";
|
|
82
85
|
import "./shared-utils/five/transformPosition.js";
|
|
83
86
|
import "./shared-utils/three/temp.js";
|
|
84
|
-
import "./shared-utils/three/
|
|
87
|
+
import "./shared-utils/three/core/Sphere.js";
|
|
85
88
|
import "animejs";
|
|
86
89
|
import "./shared-utils/url/absoluteUrl.js";
|
|
87
90
|
import "./shared-utils/five/fiveModelLoad.js";
|
|
@@ -379,7 +382,7 @@ import "./PanoTagPlugin/controller/TagUtil.js";
|
|
|
379
382
|
import "./PanoTagPlugin/tag.config.js";
|
|
380
383
|
import "./PanoTagPlugin/utils/normalPositionToPositions.js";
|
|
381
384
|
import "./shared-utils/five/FiveDomEvents.js";
|
|
382
|
-
import "./shared-utils/three/
|
|
385
|
+
import "./shared-utils/three/core/Raycaster.js";
|
|
383
386
|
import "./PanoTagPlugin/utils/DebugUtil.js";
|
|
384
387
|
import "./PanoTagPlugin/utils/addDebugPoints.js";
|
|
385
388
|
import "./PanoTagPlugin/controller/Tag/PointTag.js";
|
|
@@ -441,7 +444,7 @@ import "./shared-utils/three/Extras/Core/Interpolations2.js";
|
|
|
441
444
|
import "./AreaMakerPlugin/Controller.js";
|
|
442
445
|
import "./AreaMakerPlugin/utils/Item.js";
|
|
443
446
|
import "./shared-utils/three/core/Object3D.js";
|
|
444
|
-
import "./shared-utils/three/
|
|
447
|
+
import "./shared-utils/three/core/LineSegments.js";
|
|
445
448
|
import "./components/AreaLabel/LabelItem.js";
|
|
446
449
|
import "./components/AreaLabel/Assets/roomLabelBg.js";
|
|
447
450
|
import "./CurrentPanoImagePlugin/Controller.js";
|
|
@@ -509,72 +512,72 @@ import "./shared-utils/five/lookObject.js";
|
|
|
509
512
|
r();
|
|
510
513
|
o();
|
|
511
514
|
export {
|
|
512
|
-
|
|
513
|
-
|
|
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
|
-
|
|
515
|
+
Un as AreaMakerPlugin,
|
|
516
|
+
oa as CSS3DRender,
|
|
517
|
+
Fl as CSS3DRenderPlugin,
|
|
518
|
+
ln as CameraMovementEffect,
|
|
519
|
+
pn as CameraMovementPlugin,
|
|
520
|
+
Va as ContentType,
|
|
521
|
+
vn as CruisePlugin,
|
|
522
|
+
Ra as CruisePluginController,
|
|
523
|
+
Da as CruisePluginTypes,
|
|
524
|
+
$n as CurrentPanoImagePlugin,
|
|
525
|
+
Rn as DIRECTION,
|
|
526
|
+
fa as DISPLAY_STRATEGY_TYPE,
|
|
527
|
+
Na as DimensionType,
|
|
528
|
+
wl as FLOOR_PLAN_ATTACHED_TO,
|
|
529
|
+
Kl as FLOOR_TYPE_MAP,
|
|
530
|
+
Ca as GuideLineItem,
|
|
531
|
+
Ea as GuideLineModeItem,
|
|
532
|
+
Gn as GuideLinePlugin,
|
|
533
|
+
da as ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE,
|
|
534
|
+
Ta as ItemLabelPlugin,
|
|
535
|
+
Pa as Magnifier,
|
|
536
|
+
jl as MapviewFloorplanPlugin,
|
|
537
|
+
on as ModelChassisCompassPlugin,
|
|
538
|
+
tn as ModelEntryDoorGuidePlugin,
|
|
539
|
+
Hl as ModelFloorplanPlugin,
|
|
540
|
+
ga as ModelItemLabelPlugin,
|
|
541
|
+
Kn as ModelMakerPlugin,
|
|
542
|
+
Nl as ModelRoomLabelPlugin,
|
|
543
|
+
En as ModelTVVideoPlugin,
|
|
544
|
+
bl as ModelViewPlugin,
|
|
545
|
+
ya as MoveController,
|
|
546
|
+
Fn as MovePlugin,
|
|
547
|
+
wa as Object3DHelperController,
|
|
548
|
+
Nn as Object3DHelperPlugin,
|
|
549
|
+
Ba as PLUGIN,
|
|
550
|
+
yl as PaintBrush,
|
|
551
|
+
Dl as PaintBrushTypeEnum,
|
|
552
|
+
gn as PanoCompassPlugin,
|
|
553
|
+
cl as PanoCursorRaycasterPlugin,
|
|
554
|
+
An as PanoDoorLabelPlugin,
|
|
555
|
+
zl as PanoFloorplanRadarPlugin,
|
|
556
|
+
dn as PanoMeasurePlugin,
|
|
557
|
+
ea as PanoMeasurePluginLine,
|
|
558
|
+
ta as PanoMeasurePluginModel,
|
|
559
|
+
ma as PanoMeasurePluginPoint,
|
|
560
|
+
na as PanoMeasurePluginPolyline,
|
|
561
|
+
Pn as PanoRulerPlugin,
|
|
562
|
+
fn as PanoRulerProPlugin,
|
|
563
|
+
Tn as PanoSpatialTagPlugin,
|
|
564
|
+
cn as PanoTagPlugin,
|
|
565
|
+
ba as PanoTagPluginController,
|
|
566
|
+
kn as PanoVideoPlugin,
|
|
567
|
+
Ua as PanoVideoPluginType,
|
|
568
|
+
Bn as PipelinePlugin,
|
|
569
|
+
ha as PointType,
|
|
570
|
+
Ql as ROOM_FETILE_TYPE_MAP,
|
|
571
|
+
Xl as ROOM_TYPE_MAP,
|
|
572
|
+
nn as Rotation,
|
|
573
|
+
qn as Sculpt,
|
|
574
|
+
zn as SculptPlugin,
|
|
575
|
+
Wl as TopviewFloorplanPlugin,
|
|
576
|
+
Xn as Util,
|
|
577
|
+
Sa as WalkController,
|
|
578
|
+
Ya as defaultGlobalConfig,
|
|
579
|
+
On as itemLabelPluginServerParams,
|
|
580
|
+
Cn as modelItemLabelPluginServerParams,
|
|
581
|
+
hl as modelRoomLabelPluginServerParams,
|
|
582
|
+
va as pluginFlag
|
|
580
583
|
};
|