@realsee/dnalogel 3.51.0 → 3.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/Object3DHelperPlugin/Controller.d.ts +9 -9
- package/dist/Object3DHelperPlugin/FiveControllerWrapper.d.ts +4 -2
- package/dist/PanoMeasurePlugin/Model/area.d.ts +1 -1
- package/dist/PanoMeasurePlugin/Model/polygon.d.ts +1 -1
- package/dist/PanoMeasurePlugin/typings/data.d.ts +1 -2
- package/dist/Sculpt/Editors/BoxMeshEditor.d.ts +5 -0
- package/dist/Sculpt/Editors/CircleMeshEditor.d.ts +5 -0
- package/dist/Sculpt/Editors/CylinderMeshEditor.d.ts +5 -0
- package/dist/Sculpt/Editors/PrismMeshEditor.d.ts +5 -0
- package/dist/Sculpt/Editors/RectangleMeshEditor.d.ts +5 -0
- package/dist/Sculpt/Meshes/Box.d.ts +6 -24
- package/dist/Sculpt/Meshes/Circle.d.ts +0 -4
- package/dist/Sculpt/Meshes/Cylinder.d.ts +0 -1
- package/dist/Sculpt/Meshes/Line.d.ts +9 -22
- package/dist/Sculpt/Meshes/Polygon.d.ts +1 -5
- package/dist/Sculpt/Meshes/PolygonWithEdge.d.ts +1 -1
- package/dist/Sculpt/Meshes/Prism.d.ts +29 -10
- package/dist/Sculpt/Meshes/Rectangle.d.ts +1 -1
- package/dist/Sculpt/Objects/Base/index.d.ts +2 -1
- package/dist/Sculpt/Objects/Box/index.d.ts +7 -2
- package/dist/Sculpt/Objects/Circle/index.d.ts +3 -0
- package/dist/Sculpt/Objects/Cylinder/index.d.ts +3 -0
- package/dist/Sculpt/Objects/Line/index.d.ts +3 -0
- package/dist/Sculpt/Objects/Point/index.d.ts +3 -0
- package/dist/Sculpt/Objects/Polygon/index.d.ts +3 -0
- package/dist/Sculpt/Objects/Polyline/index.d.ts +3 -0
- package/dist/Sculpt/Objects/Prism/index.d.ts +3 -0
- package/dist/Sculpt/Objects/Rectangle/index.d.ts +12 -0
- package/dist/Sculpt/index.d.ts +11 -10
- package/dist/Sculpt/typings/style.d.ts +6 -0
- package/dist/Sculpt/utils/export.d.ts +24 -18
- package/dist/Sculpt/utils/sortPositionsByCameraPosition.d.ts +5 -0
- package/dist/Sculpt/utils/three/ColoredMesh.d.ts +4 -0
- package/dist/index.cjs.js +88 -3009
- package/dist/index.d.ts +79 -1
- package/dist/index.js +35153 -54255
- package/dist/index.umd.js +81 -3002
- package/dist/shared-utils/Object3DHelper/Base/BaseController.d.ts +1 -0
- package/dist/shared-utils/Object3DHelper/Base/BaseHelper.d.ts +7 -3
- package/dist/shared-utils/Object3DHelper/Controller/ScaleController.d.ts +0 -1
- package/dist/shared-utils/Object3DHelper/Helper/BoundingBoxHelper.d.ts +3 -1
- package/dist/shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.d.ts +2 -0
- package/dist/shared-utils/Object3DHelper/Helper/MoveHelper.d.ts +2 -1
- package/dist/shared-utils/Object3DHelper/Helper/RotateHelper.d.ts +2 -1
- package/dist/shared-utils/Object3DHelper/Helper/ScaleHelper.d.ts +4 -2
- package/dist/shared-utils/Object3DHelper/typings/index.d.ts +1 -1
- package/dist/shared-utils/Object3DHelper/utils/calculateScaleByCamera.d.ts +4 -1
- package/dist/shared-utils/five/FiveLine.d.ts +18 -14
- package/dist/shared-utils/index.d.ts +0 -1
- package/dist/shared-utils/math/planimetry.d.ts +1 -1
- package/dist/shared-utils/tag.d.ts +5 -7
- package/dist/shared-utils/three/boundingBox.d.ts +14 -20
- package/dist/shared-utils/three/core/LineGeometry.d.ts +13 -0
- package/dist/shared-utils/three/core/PrismGeometry.d.ts +14 -0
- package/dist/shared-utils/three/geometryUtil.d.ts +8 -0
- package/dist/shared-utils/three/getNormal.d.ts +5 -2
- package/libs/AreaMakerPlugin/Controller.js +47 -100
- package/libs/AreaMakerPlugin/index.js +12 -65
- package/libs/AreaMakerPlugin/utils/Item.js +102 -157
- package/libs/CSS3DRenderPlugin/Controller.js +45 -93
- package/libs/CSS3DRenderPlugin/index.js +15 -63
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +51 -106
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +79 -131
- package/libs/CruisePlugin/BaseController.js +90 -143
- package/libs/CruisePlugin/Move.js +39 -83
- package/libs/CruisePlugin/Work.js +52 -96
- package/libs/CruisePlugin/index.js +23 -67
- package/libs/CurrentPanoImagePlugin/Controller.js +88 -141
- package/libs/CurrentPanoImagePlugin/index.js +11 -64
- package/libs/GuideLinePlugin/Controller.js +13 -57
- package/libs/GuideLinePlugin/GuideLineItem.js +20 -64
- package/libs/GuideLinePlugin/GuideLineModeItem/index.js +3 -8
- package/libs/GuideLinePlugin/GuideLineModeItem.js +15 -59
- package/libs/GuideLinePlugin/index.js +23 -67
- package/libs/ModelMakerPlugin/Controller.js +125 -165
- package/libs/ModelMakerPlugin/index.js +23 -63
- package/libs/ModelMakerPlugin/item/baseItem.js +2 -3
- package/libs/ModelMakerPlugin/item/boxItem.js +2 -3
- package/libs/ModelMakerPlugin/item/polygonItem.js +6 -7
- package/libs/ModelMakerPlugin/item/prismItem.js +2 -3
- package/libs/ModelMakerPlugin/utils/getFiveDomEvent.js +2 -3
- package/libs/ModelTVVideoPlugin/Plugin.js +49 -97
- package/libs/ModelTVVideoPlugin/index.js +8 -56
- package/libs/Object3DHelperPlugin/Controller.d.ts +9 -9
- package/libs/Object3DHelperPlugin/Controller.js +105 -92
- package/libs/Object3DHelperPlugin/FiveControllerWrapper.d.ts +4 -2
- package/libs/Object3DHelperPlugin/FiveControllerWrapper.js +35 -30
- package/libs/Object3DHelperPlugin/index.js +15 -30
- package/libs/PanoCompassPlugin/Controller.js +46 -93
- package/libs/PanoCompassPlugin/index.js +17 -64
- package/libs/PanoCursorRaycasterPlugin/index.js +4 -3
- package/libs/PanoDoorLabelPlugin/BaseController.js +27 -80
- package/libs/PanoDoorLabelPlugin/Controller.js +80 -133
- package/libs/PanoDoorLabelPlugin/index.js +11 -64
- package/libs/PanoMeasurePlugin/Components/Controller0.js +79 -128
- package/libs/PanoMeasurePlugin/Components/Controller1.js +92 -141
- package/libs/PanoMeasurePlugin/Controller/BaseController.js +3 -2
- package/libs/PanoMeasurePlugin/Controller/EditController.js +73 -122
- package/libs/PanoMeasurePlugin/Controller/MixedController.js +3 -2
- package/libs/PanoMeasurePlugin/Controller/ViewController.js +3 -2
- package/libs/PanoMeasurePlugin/Controller/WatchController.js +72 -121
- package/libs/PanoMeasurePlugin/Controller/index.js +89 -135
- package/libs/PanoMeasurePlugin/Model/area.d.ts +1 -1
- package/libs/PanoMeasurePlugin/Model/area.js +25 -74
- package/libs/PanoMeasurePlugin/Model/index.js +3 -2
- package/libs/PanoMeasurePlugin/Model/line.js +1 -0
- package/libs/PanoMeasurePlugin/Model/polygon.d.ts +1 -1
- package/libs/PanoMeasurePlugin/Model/polygon.js +7 -7
- package/libs/PanoMeasurePlugin/Model/polyline.js +3 -2
- package/libs/PanoMeasurePlugin/Modules/Magnifier.js +1 -56
- package/libs/PanoMeasurePlugin/Modules/UIController/index.js +17 -66
- package/libs/PanoMeasurePlugin/index.js +18 -64
- package/libs/PanoMeasurePlugin/typings/data.d.ts +1 -2
- package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +5 -59
- package/libs/PanoMeasurePlugin/utils/line.js +3 -2
- package/libs/PanoRulerProPlugin/Controller.js +34 -89
- package/libs/PanoRulerProPlugin/RulerItems.js +92 -147
- package/libs/PanoRulerProPlugin/index.js +10 -65
- package/libs/PanoSpatialTagPlugin/Plugin.js +130 -178
- package/libs/PanoSpatialTagPlugin/index.js +6 -54
- package/libs/PanoTagPlugin/Components/Common/TagPoint.js +61 -116
- package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +138 -193
- package/libs/PanoTagPlugin/Components/Tag/index.js +140 -194
- package/libs/PanoTagPlugin/Components/TagContainer.js +58 -112
- package/libs/PanoTagPlugin/Components/TagItem.js +137 -191
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +109 -164
- package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +22 -76
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +33 -87
- package/libs/PanoTagPlugin/controller/Tag/PointTag.js +39 -94
- package/libs/PanoTagPlugin/controller/TagRender.js +18 -62
- package/libs/PanoTagPlugin/controller/TagUtil.js +80 -124
- package/libs/PanoTagPlugin/controller/index.js +37 -81
- package/libs/PanoTagPlugin/index.js +28 -72
- package/libs/PanoTagPlugin/utils/model/mediaPlane.js +14 -14
- package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +22 -77
- package/libs/PanoVideoPlugin/Controller.js +43 -96
- package/libs/PanoVideoPlugin/VideoMeshController.js +64 -119
- package/libs/PanoVideoPlugin/index.js +14 -67
- package/libs/PipelinePlugin/Controller.js +123 -176
- package/libs/PipelinePlugin/index.js +11 -64
- package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +15 -70
- package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +3 -58
- package/libs/PipelinePlugin/utils/Objects/Pipe.js +42 -97
- package/libs/Sculpt/Editors/BoxMeshEditor.d.ts +5 -0
- package/libs/Sculpt/Editors/BoxMeshEditor.js +98 -0
- package/libs/Sculpt/Editors/CircleMeshEditor.d.ts +5 -0
- package/libs/Sculpt/Editors/CircleMeshEditor.js +9 -0
- package/libs/Sculpt/Editors/CylinderMeshEditor.d.ts +5 -0
- package/libs/Sculpt/Editors/CylinderMeshEditor.js +41 -0
- package/libs/Sculpt/Editors/PrismMeshEditor.d.ts +5 -0
- package/libs/Sculpt/Editors/PrismMeshEditor.js +43 -0
- package/libs/Sculpt/Editors/RectangleMeshEditor.d.ts +5 -0
- package/libs/Sculpt/Editors/RectangleMeshEditor.js +70 -0
- package/libs/Sculpt/Meshes/Box.d.ts +6 -24
- package/libs/Sculpt/Meshes/Box.js +22 -93
- package/libs/Sculpt/Meshes/Circle.d.ts +0 -4
- package/libs/Sculpt/Meshes/Circle.js +18 -27
- package/libs/Sculpt/Meshes/Cylinder.d.ts +0 -1
- package/libs/Sculpt/Meshes/Cylinder.js +17 -24
- package/libs/Sculpt/Meshes/Line.d.ts +9 -22
- package/libs/Sculpt/Meshes/Line.js +85 -104
- package/libs/Sculpt/Meshes/LineWithDots.js +10 -14
- package/libs/Sculpt/Meshes/Point.js +29 -34
- package/libs/Sculpt/Meshes/Polygon.d.ts +1 -5
- package/libs/Sculpt/Meshes/Polygon.js +40 -53
- package/libs/Sculpt/Meshes/PolygonWithEdge.d.ts +1 -1
- package/libs/Sculpt/Meshes/Prism.d.ts +29 -10
- package/libs/Sculpt/Meshes/Prism.js +108 -84
- package/libs/Sculpt/Meshes/Rectangle.d.ts +1 -1
- package/libs/Sculpt/Meshes/Rectangle.js +7 -10
- package/libs/Sculpt/Meshes/RectangleWithEdge.js +17 -20
- package/libs/Sculpt/Objects/Base/index.d.ts +2 -1
- package/libs/Sculpt/Objects/Base/index.js +16 -17
- package/libs/Sculpt/Objects/Box/index.d.ts +7 -2
- package/libs/Sculpt/Objects/Box/index.js +72 -60
- package/libs/Sculpt/Objects/Circle/index.d.ts +3 -0
- package/libs/Sculpt/Objects/Circle/index.js +34 -30
- package/libs/Sculpt/Objects/Cylinder/index.d.ts +3 -0
- package/libs/Sculpt/Objects/Cylinder/index.js +46 -42
- package/libs/Sculpt/Objects/Line/Editor.js +8 -10
- package/libs/Sculpt/Objects/Line/index.d.ts +3 -0
- package/libs/Sculpt/Objects/Line/index.js +45 -41
- package/libs/Sculpt/Objects/Point/index.d.ts +3 -0
- package/libs/Sculpt/Objects/Point/index.js +33 -29
- package/libs/Sculpt/Objects/Polygon/index.d.ts +3 -0
- package/libs/Sculpt/Objects/Polygon/index.js +67 -63
- package/libs/Sculpt/Objects/Polyline/index.d.ts +3 -0
- package/libs/Sculpt/Objects/Polyline/index.js +46 -42
- package/libs/Sculpt/Objects/Prism/index.d.ts +3 -0
- package/libs/Sculpt/Objects/Prism/index.js +58 -53
- package/libs/Sculpt/Objects/Rectangle/index.d.ts +12 -0
- package/libs/Sculpt/Objects/Rectangle/index.js +142 -81
- package/libs/Sculpt/index.d.ts +11 -10
- package/libs/Sculpt/index.js +105 -107
- package/libs/Sculpt/typings/style.d.ts +6 -0
- package/libs/Sculpt/utils/export.d.ts +24 -18
- package/libs/Sculpt/utils/export.js +52 -19
- package/libs/Sculpt/utils/sortPositionsByCameraPosition.d.ts +5 -0
- package/libs/Sculpt/utils/sortPositionsByCameraPosition.js +9 -0
- package/libs/Sculpt/utils/three/ColoredMesh.d.ts +4 -0
- package/libs/Sculpt/utils/three/ColoredMesh.js +40 -37
- package/libs/base/BasePlugin.js +10 -15
- package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +96 -147
- package/libs/floorplan/MapviewFloorplanPlugin/index.js +12 -63
- package/libs/floorplan/ModelFloorplanPlugin/Controller.js +53 -105
- package/libs/floorplan/ModelFloorplanPlugin/index.js +11 -63
- package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +65 -118
- package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +11 -64
- package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +54 -106
- package/libs/floorplan/TopviewFloorplanPlugin/index.js +11 -63
- package/libs/floorplan/index.js +0 -5
- package/libs/index.d.ts +79 -1
- package/libs/index.js +229 -215
- package/libs/shared-utils/Object3DHelper/Base/BaseController.d.ts +1 -0
- package/libs/shared-utils/Object3DHelper/Base/BaseController.js +112 -122
- package/libs/shared-utils/Object3DHelper/Base/BaseHelper.d.ts +7 -3
- package/libs/shared-utils/Object3DHelper/Base/BaseHelper.js +60 -39
- package/libs/shared-utils/Object3DHelper/Controller/RotateController.js +47 -47
- package/libs/shared-utils/Object3DHelper/Controller/ScaleController.d.ts +0 -1
- package/libs/shared-utils/Object3DHelper/Controller/ScaleController.js +28 -28
- package/libs/shared-utils/Object3DHelper/Helper/BoundingBoxHelper.d.ts +3 -1
- package/libs/shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js +25 -18
- package/libs/shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.d.ts +2 -0
- package/libs/shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js +18 -14
- package/libs/shared-utils/Object3DHelper/Helper/MoveHelper.d.ts +2 -1
- package/libs/shared-utils/Object3DHelper/Helper/MoveHelper.js +1 -0
- package/libs/shared-utils/Object3DHelper/Helper/RotateHelper.d.ts +2 -1
- package/libs/shared-utils/Object3DHelper/Helper/RotateHelper.js +2 -1
- package/libs/shared-utils/Object3DHelper/Helper/ScaleHelper.d.ts +4 -2
- package/libs/shared-utils/Object3DHelper/Helper/ScaleHelper.js +40 -28
- package/libs/shared-utils/Object3DHelper/typings/index.d.ts +1 -1
- package/libs/shared-utils/Object3DHelper/utils/calculateScaleByCamera.d.ts +4 -1
- package/libs/shared-utils/Object3DHelper/utils/calculateScaleByCamera.js +4 -4
- package/libs/shared-utils/five/FiveDomEvents.js +88 -88
- package/libs/shared-utils/five/FiveLine.d.ts +18 -14
- package/libs/shared-utils/five/FiveLine.js +31 -13
- package/libs/shared-utils/five/index.js +2 -7
- package/libs/shared-utils/five/lookObject.js +27 -32
- package/libs/shared-utils/index.d.ts +0 -1
- package/libs/shared-utils/index.js +31 -33
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/math/planimetry.d.ts +1 -1
- package/libs/shared-utils/tag.d.ts +5 -7
- package/libs/shared-utils/tag.js +1 -1
- package/libs/shared-utils/three/boundingBox.d.ts +14 -20
- package/libs/shared-utils/three/core/LineGeometry.d.ts +13 -0
- package/libs/shared-utils/three/core/LineGeometry.js +26 -0
- package/libs/shared-utils/three/core/PrismGeometry.d.ts +14 -0
- package/libs/shared-utils/three/core/PrismGeometry.js +42 -0
- package/libs/shared-utils/three/earcut3D.js +5 -5
- package/libs/shared-utils/three/geometryUtil.d.ts +8 -0
- package/libs/shared-utils/three/geometryUtil.js +3 -1
- package/libs/shared-utils/three/getNormal.d.ts +5 -2
- package/libs/shared-utils/three/getNormal.js +6 -5
- package/libs/shared-utils/three/index.js +0 -5
- package/package.json +1 -1
- package/dist/Sculpt/Objects/Box/Editor.d.ts +0 -5
- package/dist/Sculpt/Objects/Circle/Editor.d.ts +0 -5
- package/dist/Sculpt/Objects/Cylinder/Editor.d.ts +0 -5
- package/dist/Sculpt/Objects/Prism/Editor.d.ts +0 -5
- package/dist/Sculpt/Objects/Rectangle/Editor.d.ts +0 -5
- package/dist/Sculpt/utils/getBetterNormal.d.ts +0 -2
- package/libs/Sculpt/Objects/Box/Editor.d.ts +0 -5
- package/libs/Sculpt/Objects/Box/Editor.js +0 -44
- package/libs/Sculpt/Objects/Circle/Editor.d.ts +0 -5
- package/libs/Sculpt/Objects/Circle/Editor.js +0 -9
- package/libs/Sculpt/Objects/Cylinder/Editor.d.ts +0 -5
- package/libs/Sculpt/Objects/Cylinder/Editor.js +0 -41
- package/libs/Sculpt/Objects/Prism/Editor.d.ts +0 -5
- package/libs/Sculpt/Objects/Prism/Editor.js +0 -44
- package/libs/Sculpt/Objects/Rectangle/Editor.d.ts +0 -5
- package/libs/Sculpt/Objects/Rectangle/Editor.js +0 -9
- package/libs/Sculpt/utils/getBetterNormal.d.ts +0 -2
- package/libs/Sculpt/utils/getBetterNormal.js +0 -8
- package/libs/vendor/three/build/three.module.js +0 -19336
- package/libs/vendor/three/examples/jsm/lines/LineGeometry.js +0 -28
- package/libs/vendor/three/examples/jsm/lines/LineSegmentsGeometry.js +0 -69
package/libs/index.js
CHANGED
|
@@ -1,71 +1,84 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import { default as
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
1
|
+
var l = Object.defineProperty, n = Object.defineProperties;
|
|
2
|
+
var a = Object.getOwnPropertyDescriptors;
|
|
3
|
+
var i = Object.getOwnPropertySymbols;
|
|
4
|
+
var P = Object.prototype.hasOwnProperty, f = Object.prototype.propertyIsEnumerable;
|
|
5
|
+
var m = (t, o, r) => o in t ? l(t, o, { enumerable: !0, configurable: !0, writable: !0, value: r }) : t[o] = r, p = (t, o) => {
|
|
6
|
+
for (var r in o || (o = {}))
|
|
7
|
+
P.call(o, r) && m(t, r, o[r]);
|
|
8
|
+
if (i)
|
|
9
|
+
for (var r of i(o))
|
|
10
|
+
f.call(o, r) && m(t, r, o[r]);
|
|
11
|
+
return t;
|
|
12
|
+
}, e = (t, o) => n(t, a(o));
|
|
13
|
+
import { consoleVersion as u } from "./shared-utils/logger.js";
|
|
14
|
+
import { autoFixOffscreenCanvas as x } from "./shared-utils/offscreenCanvas.js";
|
|
15
|
+
import { PaintBrush as Yl } from "./components/PaintBrush/index.js";
|
|
16
|
+
import { PaintBrushTypeEnum as Bl } from "./components/PaintBrush/typings.js";
|
|
17
|
+
import { ModelViewPlugin as Ul } from "./ModelViewPlugin/Plugin.js";
|
|
18
|
+
import { CSS3DRenderPlugin as kl } from "./CSS3DRenderPlugin/index.js";
|
|
19
|
+
import { PanoCursorRaycasterPlugin as Hl } from "./PanoCursorRaycasterPlugin/index.js";
|
|
20
|
+
import { ModelRoomLabelPlugin as $l, modelRoomLabelPluginServerParams as Wl } from "./ModelRoomLabelPlugin/index.js";
|
|
21
|
+
import { FLOOR_PLAN_ATTACHED_TO as zl } from "./floorplan/constant.js";
|
|
22
|
+
import { ModelFloorplanPlugin as Kl } from "./floorplan/ModelFloorplanPlugin/index.js";
|
|
23
|
+
import { MapviewFloorplanPlugin as Xl } from "./floorplan/MapviewFloorplanPlugin/index.js";
|
|
24
|
+
import { TopviewFloorplanPlugin as on } from "./floorplan/TopviewFloorplanPlugin/index.js";
|
|
25
|
+
import { PanoFloorplanRadarPlugin as tn } from "./floorplan/PanoFloorplanRadarPlugin/index.js";
|
|
26
|
+
import { FLOOR_TYPE_MAP as pn, ROOM_FETILE_TYPE_MAP as en, ROOM_TYPE_MAP as ln } from "./floorplan/typings/floorplanServerData.js";
|
|
27
|
+
import { ModelChassisCompassPlugin as an } from "./ModelChassisCompassPlugin/Plugin.js";
|
|
28
|
+
import { ModelEntryDoorGuidePlugin as fn } from "./ModelEntryDoorGuidePlugin/Plugin.js";
|
|
29
|
+
import { CameraMovementPlugin as xn } from "./CameraMovementPlugin/CameraMovementPlugin.js";
|
|
30
|
+
import { CameraMovementEffect as sn, Rotation as dn } from "./CameraMovementPlugin/typing.js";
|
|
31
|
+
import { PanoRulerPlugin as Tn } from "./PanoRulerPlugin/Plugin.js";
|
|
32
|
+
import { PanoRulerProPlugin as Ln } from "./PanoRulerProPlugin/index.js";
|
|
33
|
+
import { PanoCompassPlugin as _n } from "./PanoCompassPlugin/index.js";
|
|
34
|
+
import { PanoMeasurePlugin as En } from "./PanoMeasurePlugin/index.js";
|
|
35
|
+
import { PanoSpatialTagPlugin as yn } from "./PanoSpatialTagPlugin/Plugin.js";
|
|
36
|
+
import { modelItemLabelPluginServerParams as On } from "./ModelItemLabelPlugin/index.js";
|
|
37
|
+
import { ModelTVVideoPlugin as Dn } from "./ModelTVVideoPlugin/Plugin.js";
|
|
38
|
+
import { DIRECTION as bn } from "./ModelTVVideoPlugin/typings.js";
|
|
39
|
+
import { itemLabelPluginServerParams as Fn } from "./ItemLabelPlugin/index.js";
|
|
40
|
+
import { PanoDoorLabelPlugin as Vn } from "./PanoDoorLabelPlugin/index.js";
|
|
41
|
+
import { GuideLinePlugin as Nn } from "./GuideLinePlugin/index.js";
|
|
42
|
+
import { CruisePlugin as hn, MovePlugin as kn } from "./CruisePlugin/index.js";
|
|
43
|
+
import { PanoTagPlugin as Hn } from "./PanoTagPlugin/index.js";
|
|
44
|
+
import { Object3DHelperPlugin as $n } from "./Object3DHelperPlugin/index.js";
|
|
45
|
+
import { PanoVideoPlugin as qn } from "./PanoVideoPlugin/index.js";
|
|
46
|
+
import { PipelinePlugin as Jn } from "./PipelinePlugin/index.js";
|
|
47
|
+
import { AreaMakerPlugin as Qn } from "./AreaMakerPlugin/index.js";
|
|
48
|
+
import { CurrentPanoImagePlugin as Zn } from "./CurrentPanoImagePlugin/index.js";
|
|
49
|
+
import { Sculpt as ra, SculptPlugin as ta } from "./Sculpt/index.js";
|
|
50
|
+
import { ModelMakerPlugin as ma } from "./ModelMakerPlugin/index.js";
|
|
51
|
+
import { _Util as g } from "./shared-utils/index.js";
|
|
52
|
+
import { sculpt as s } from "./Sculpt/utils/export.js";
|
|
53
|
+
import { CSS3DRender as ea } from "./CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
54
|
+
import { Model as na } from "./PanoMeasurePlugin/Model/index.js";
|
|
55
|
+
import { default as Pa } from "./PanoMeasurePlugin/Model/point.js";
|
|
56
|
+
import { default as ua } from "./PanoMeasurePlugin/Model/line.js";
|
|
57
|
+
import { Polyline as ga } from "./PanoMeasurePlugin/Model/polyline.js";
|
|
58
|
+
import { Magnifier as da } from "./shared-utils/three/Magnifier.js";
|
|
59
|
+
import { DISPLAY_STRATEGY_TYPE as Ta } from "./ModelItemLabelPlugin/typings.js";
|
|
60
|
+
import { ModelItemLabelPlugin as La } from "./ModelItemLabelPlugin/ModelItemLabelPlugin.js";
|
|
61
|
+
import { ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE as _a } from "./ItemLabelPlugin/typings.js";
|
|
62
|
+
import { Plugin as Ea } from "./ItemLabelPlugin/Plugin.js";
|
|
63
|
+
import { GuideLineItem$1 as ya } from "./GuideLinePlugin/GuideLineItem/index.js";
|
|
64
|
+
import { GuideLineModeItem$1 as Oa } from "./GuideLinePlugin/GuideLineModeItem/index.js";
|
|
65
|
+
import { default as Da, default as Ga } from "./CruisePlugin/Work.js";
|
|
66
|
+
import { default as va } from "./CruisePlugin/Move.js";
|
|
67
|
+
import { typing as Ya } from "./CruisePlugin/typing/index.js";
|
|
68
|
+
import { default as Ba, pluginFlag as Na } from "./PanoTagPlugin/controller/index.js";
|
|
69
|
+
import { defaultGlobalConfig as ha } from "./PanoTagPlugin/typings/tag/TagConfig.js";
|
|
70
|
+
import { ContentType as wa, DimensionType as Ha, PointType as ja } from "./PanoTagPlugin/Archive/deprecated.js";
|
|
71
|
+
import { Object3DHelperController as Wa, PLUGIN as qa } from "./Object3DHelperPlugin/Controller.js";
|
|
72
|
+
import { typings as Ja } from "./PanoVideoPlugin/typings/index.js";
|
|
73
|
+
import { createPoint as Qa } from "./Sculpt/Objects/Point/index.js";
|
|
74
|
+
import { createLine as Za } from "./Sculpt/Objects/Line/index.js";
|
|
75
|
+
import { createPolyline as rP } from "./Sculpt/Objects/Polyline/index.js";
|
|
76
|
+
import { createPolygon as iP } from "./Sculpt/Objects/Polygon/index.js";
|
|
77
|
+
import { createPrism as pP } from "./Sculpt/Objects/Prism/index.js";
|
|
78
|
+
import { createRectangle as lP } from "./Sculpt/Objects/Rectangle/index.js";
|
|
79
|
+
import { createCircle as aP } from "./Sculpt/Objects/Circle/index.js";
|
|
80
|
+
import { createCylinder as fP } from "./Sculpt/Objects/Cylinder/index.js";
|
|
81
|
+
import { createBox as xP } from "./Sculpt/Objects/Box/index.js";
|
|
69
82
|
import "./components/PaintBrush/Controller.js";
|
|
70
83
|
import "./components/PaintBrush/utils.js";
|
|
71
84
|
import "./components/PaintBrush/tween.js";
|
|
@@ -103,32 +116,9 @@ import "./CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
|
103
116
|
import "./shared-utils/three/centerPoint.js";
|
|
104
117
|
import "./shared-utils/three/getObjectVisible.js";
|
|
105
118
|
import "@realsee/five/line";
|
|
106
|
-
import "./
|
|
107
|
-
import "./vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
108
|
-
import "./vendor/three/build/three.module.js";
|
|
119
|
+
import "./shared-utils/isNil.js";
|
|
109
120
|
import "./shared-utils/three/core/Sphere.js";
|
|
110
121
|
import "animejs";
|
|
111
|
-
import "./shared-utils/isNil.js";
|
|
112
|
-
import "./Sculpt/Meshes/Polygon.js";
|
|
113
|
-
import "./shared-utils/three/generatePolygonGeometry.js";
|
|
114
|
-
import "./shared-utils/three/earcut3D.js";
|
|
115
|
-
import "earcut";
|
|
116
|
-
import "./shared-utils/three/getNormal.js";
|
|
117
|
-
import "./PanoMeasurePlugin/utils/isIntersecting.js";
|
|
118
|
-
import "./Sculpt/typings/style.js";
|
|
119
|
-
import "./Sculpt/utils/three/ColoredMesh.js";
|
|
120
|
-
import "./shared-utils/three/IObject3D.js";
|
|
121
|
-
import "./Sculpt/utils/Modules/Global.js";
|
|
122
|
-
import "./Sculpt/utils/Modules/Cursor.js";
|
|
123
|
-
import "./shared-utils/five/FiveDomEvents.js";
|
|
124
|
-
import "./shared-utils/five/calculateThreeMouse.js";
|
|
125
|
-
import "./shared-utils/isTouchDevice.js";
|
|
126
|
-
import "./vendor/hotkeys-js/dist/hotkeys.esm.js";
|
|
127
|
-
import "./Sculpt/utils/three/rayOnLine.js";
|
|
128
|
-
import "./shared-utils/three/geometryUtil.js";
|
|
129
|
-
import "./Sculpt/utils/Meshes/getLengthHTML.js";
|
|
130
|
-
import "./shared-utils/three/applyObjectMatrixWorld.js";
|
|
131
|
-
import "./shared-utils/util.js";
|
|
132
122
|
import "./shared-utils/three/PointSelector/utils/html.js";
|
|
133
123
|
import "./shared-utils/five/initialCSS3DRender.js";
|
|
134
124
|
import "./CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
@@ -136,48 +126,24 @@ import "./CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
|
136
126
|
import "./CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
137
127
|
import "./shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
138
128
|
import "./Sculpt/Meshes/Line.js";
|
|
129
|
+
import "./Sculpt/typings/style.js";
|
|
139
130
|
import "./shared-utils/five/FiveLine.js";
|
|
131
|
+
import "./shared-utils/three/IObject3D.js";
|
|
140
132
|
import "./Sculpt/utils/removeAllTag.js";
|
|
133
|
+
import "./Sculpt/utils/Meshes/getLengthHTML.js";
|
|
134
|
+
import "./shared-utils/three/applyObjectMatrixWorld.js";
|
|
135
|
+
import "./shared-utils/util.js";
|
|
136
|
+
import "./shared-utils/three/core/LineGeometry.js";
|
|
141
137
|
import "./CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
138
|
+
import "./shared-utils/isTouchDevice.js";
|
|
142
139
|
import "./shared-utils/five/getPosition.js";
|
|
143
140
|
import "./shared-utils/five/getRaycasterByNdcPosition.js";
|
|
144
141
|
import "./shared-utils/three/PointSelector/utils/contents.js";
|
|
145
|
-
import "./
|
|
142
|
+
import "./shared-utils/five/fiveModelLoad.js";
|
|
146
143
|
import "./shared-utils/url/absoluteUrl.js";
|
|
147
|
-
import "./shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
148
|
-
import "./shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
149
|
-
import "./shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
150
|
-
import "./shared-utils/three/boundingBox.js";
|
|
151
|
-
import "./shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
152
|
-
import "./shared-utils/Object3DHelper/utils/direction.js";
|
|
153
|
-
import "./shared-utils/Object3DHelper/Constants/color.js";
|
|
154
|
-
import "./shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
155
144
|
import "./CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
156
145
|
import "./CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
157
146
|
import "./CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
158
|
-
import "./shared-utils/Object3DHelper/Helper/RotateHelper.js";
|
|
159
|
-
import "./shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
|
|
160
|
-
import "./shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
|
|
161
|
-
import "./shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
|
|
162
|
-
import "./shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
|
|
163
|
-
import "./shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
164
|
-
import "./shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
165
|
-
import "./shared-utils/Object3DHelper/Base/BaseController.js";
|
|
166
|
-
import "./shared-utils/threex/domevents/index.js";
|
|
167
|
-
import "./shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
168
|
-
import "./shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
169
|
-
import "./Object3DHelperPlugin/FiveControllerWrapper.js";
|
|
170
|
-
import "./shared-utils/Object3DHelper/index.js";
|
|
171
|
-
import "./shared-utils/Object3DHelper/Controller/RotateController.js";
|
|
172
|
-
import "./shared-utils/math/rad2Deg.js";
|
|
173
|
-
import "./shared-utils/math/deg2Rad.js";
|
|
174
|
-
import "./shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
|
|
175
|
-
import "./shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
|
|
176
|
-
import "./shared-utils/Object3DHelper/utils/vectorIsEqual.js";
|
|
177
|
-
import "./shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
|
|
178
|
-
import "./shared-utils/Object3DHelper/Helper/ScaleHelper.js";
|
|
179
|
-
import "./shared-utils/Object3DHelper/Controller/ScaleController.js";
|
|
180
|
-
import "./shared-utils/five/fiveModelLoad.js";
|
|
181
147
|
import "./shared-utils/createLine/index.js";
|
|
182
148
|
import "./ModelRoomLabelPlugin/Controller.js";
|
|
183
149
|
import "./ModelRoomLabelPlugin/RoomLabelItems.js";
|
|
@@ -213,6 +179,7 @@ import "./floorplan/Components/RoomHighlight/Room.js";
|
|
|
213
179
|
import "./floorplan/Components/MissingFloor.js";
|
|
214
180
|
import "./floorplan/Components/Camera.js";
|
|
215
181
|
import "./floorplan/Assets/camera.js";
|
|
182
|
+
import "./shared-utils/math/rad2Deg.js";
|
|
216
183
|
import "./floorplan/Components/Compass.js";
|
|
217
184
|
import "./floorplan/Assets/compass.js";
|
|
218
185
|
import "./floorplan/utils/formatData.js";
|
|
@@ -221,6 +188,7 @@ import "./shared-utils/filter.js";
|
|
|
221
188
|
import "./shared-utils/tap.js";
|
|
222
189
|
import "./shared-utils/getPxmm.js";
|
|
223
190
|
import "./base/BasePluginWithData.js";
|
|
191
|
+
import "./base/BasePlugin.js";
|
|
224
192
|
import "./floorplan/utils/correctFiveState.js";
|
|
225
193
|
import "./floorplan/utils/constant.js";
|
|
226
194
|
import "./shared-utils/nearlyEqual.js";
|
|
@@ -264,7 +232,13 @@ import "./PanoMeasurePlugin/utils/dom/base.js";
|
|
|
264
232
|
import "./PanoMeasurePlugin/utils/isNDCPointInScreen.js";
|
|
265
233
|
import "./PanoMeasurePlugin/Model/area.js";
|
|
266
234
|
import "./PanoMeasurePlugin/Model/polygon.js";
|
|
235
|
+
import "./shared-utils/three/generatePolygonGeometry.js";
|
|
236
|
+
import "./shared-utils/three/earcut3D.js";
|
|
237
|
+
import "earcut";
|
|
238
|
+
import "./shared-utils/three/getNormal.js";
|
|
239
|
+
import "./PanoMeasurePlugin/utils/isIntersecting.js";
|
|
267
240
|
import "./PanoMeasurePlugin/utils/dom/areaDom.js";
|
|
241
|
+
import "./shared-utils/three/geometryUtil.js";
|
|
268
242
|
import "./PanoMeasurePlugin/Modules/DeleteDom/index.js";
|
|
269
243
|
import "./PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete.svg.js";
|
|
270
244
|
import "./PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_bg.png.js";
|
|
@@ -279,6 +253,7 @@ import "./PanoMeasurePlugin/Controller/MixedController.js";
|
|
|
279
253
|
import "./PanoMeasurePlugin/Modules/rangePiece/index.js";
|
|
280
254
|
import "./shared-utils/noop.js";
|
|
281
255
|
import "./PanoMeasurePlugin/utils/mouseGroup.js";
|
|
256
|
+
import "./shared-utils/five/calculateThreeMouse.js";
|
|
282
257
|
import "./PanoMeasurePlugin/Modules/UIController/index.js";
|
|
283
258
|
import "./PanoMeasurePlugin/Modules/UIController/HTML.js";
|
|
284
259
|
import "./PanoMeasurePlugin/Modules/UIController/mobileHTML.js";
|
|
@@ -428,6 +403,7 @@ import "./PanoTagPlugin/utils/Cache.js";
|
|
|
428
403
|
import "./PanoTagPlugin/controller/TagUtil.js";
|
|
429
404
|
import "./PanoTagPlugin/tag.config.js";
|
|
430
405
|
import "./PanoTagPlugin/utils/normalPositionToPositions.js";
|
|
406
|
+
import "./shared-utils/five/FiveDomEvents.js";
|
|
431
407
|
import "./PanoTagPlugin/utils/DebugUtil.js";
|
|
432
408
|
import "./PanoTagPlugin/utils/addDebugPoints.js";
|
|
433
409
|
import "./PanoTagPlugin/controller/Tag/PointTag.js";
|
|
@@ -444,6 +420,36 @@ import "./CruisePlugin/utils/coordinatesToVector.js";
|
|
|
444
420
|
import "./CruisePlugin/utils/safeCall.js";
|
|
445
421
|
import "./CruisePlugin/utils/sleep.js";
|
|
446
422
|
import "./shared-utils/five/fiveLoaded.js";
|
|
423
|
+
import "./shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
424
|
+
import "./shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
425
|
+
import "./shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
426
|
+
import "./shared-utils/three/boundingBox.js";
|
|
427
|
+
import "./shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
428
|
+
import "./shared-utils/Object3DHelper/utils/direction.js";
|
|
429
|
+
import "./shared-utils/Object3DHelper/Constants/color.js";
|
|
430
|
+
import "./shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
431
|
+
import "./shared-utils/Object3DHelper/Helper/RotateHelper.js";
|
|
432
|
+
import "./shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
|
|
433
|
+
import "./shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
|
|
434
|
+
import "./shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
|
|
435
|
+
import "./shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
|
|
436
|
+
import "./shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
437
|
+
import "./shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
438
|
+
import "./shared-utils/Object3DHelper/Base/BaseController.js";
|
|
439
|
+
import "./shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
440
|
+
import "./shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
441
|
+
import "./Sculpt/utils/three/rayOnLine.js";
|
|
442
|
+
import "./Object3DHelperPlugin/FiveControllerWrapper.js";
|
|
443
|
+
import "./shared-utils/Object3DHelper/index.js";
|
|
444
|
+
import "./shared-utils/Object3DHelper/Controller/RotateController.js";
|
|
445
|
+
import "./shared-utils/math/deg2Rad.js";
|
|
446
|
+
import "./shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
|
|
447
|
+
import "./shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
|
|
448
|
+
import "./shared-utils/Object3DHelper/utils/vectorIsEqual.js";
|
|
449
|
+
import "./shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
|
|
450
|
+
import "./shared-utils/Object3DHelper/Helper/ScaleHelper.js";
|
|
451
|
+
import "./shared-utils/Object3DHelper/Controller/ScaleController.js";
|
|
452
|
+
import "./shared-utils/threex/domevents/index.js";
|
|
447
453
|
import "./PanoVideoPlugin/Controller.js";
|
|
448
454
|
import "./PanoVideoPlugin/VideoMeshController.js";
|
|
449
455
|
import "./PanoVideoPlugin/utils/shader.js";
|
|
@@ -462,8 +468,11 @@ import "./shared-utils/three/core/LineSegments.js";
|
|
|
462
468
|
import "./components/AreaLabel/LabelItem.js";
|
|
463
469
|
import "./components/AreaLabel/Assets/roomLabelBg.js";
|
|
464
470
|
import "./CurrentPanoImagePlugin/Controller.js";
|
|
471
|
+
import "./Sculpt/utils/Modules/Global.js";
|
|
472
|
+
import "./Sculpt/utils/Modules/Cursor.js";
|
|
465
473
|
import "./shared-utils/three/recurveFindObject.js";
|
|
466
474
|
import "./shared-utils/forReverseEach.js";
|
|
475
|
+
import "./vendor/hotkeys-js/dist/hotkeys.esm.js";
|
|
467
476
|
import "./ModelMakerPlugin/Controller.js";
|
|
468
477
|
import "./ModelMakerPlugin/item/boxItem.js";
|
|
469
478
|
import "./ModelMakerPlugin/item/polygonItem.js";
|
|
@@ -471,11 +480,14 @@ import "./ModelMakerPlugin/item/baseItem.js";
|
|
|
471
480
|
import "./shared-utils/three/addIfNotExists.js";
|
|
472
481
|
import "./ModelMakerPlugin/utils/getFiveDomEvent.js";
|
|
473
482
|
import "./Sculpt/Meshes/Prism.js";
|
|
483
|
+
import "./Sculpt/utils/three/ColoredMesh.js";
|
|
484
|
+
import "./shared-utils/three/core/PrismGeometry.js";
|
|
474
485
|
import "./Sculpt/Meshes/PolygonWithEdge.js";
|
|
475
486
|
import "./Sculpt/Meshes/Polyline.js";
|
|
476
487
|
import "./Sculpt/Meshes/LineWithDots.js";
|
|
477
488
|
import "./Sculpt/Meshes/Point.js";
|
|
478
489
|
import "./shared-utils/three/closeVectors.js";
|
|
490
|
+
import "./Sculpt/Meshes/Polygon.js";
|
|
479
491
|
import "./ModelMakerPlugin/utils/tagRenderer.js";
|
|
480
492
|
import "./ModelMakerPlugin/utils/Text.js";
|
|
481
493
|
import "./ModelMakerPlugin/item/prismItem.js";
|
|
@@ -485,109 +497,111 @@ import "./shared-utils/math/convexHull.js";
|
|
|
485
497
|
import "./shared-utils/math/inside.js";
|
|
486
498
|
import "./shared-utils/five/index.js";
|
|
487
499
|
import "./shared-utils/three/getCoords.js";
|
|
488
|
-
import "./
|
|
500
|
+
import "./shared-utils/five/lookObject.js";
|
|
501
|
+
import "./Sculpt/Objects/Base/Editor.js";
|
|
502
|
+
import "./Sculpt/Editors/BoxMeshEditor.js";
|
|
503
|
+
import "./Sculpt/Editors/CircleMeshEditor.js";
|
|
504
|
+
import "./Sculpt/Editors/CylinderMeshEditor.js";
|
|
505
|
+
import "./Sculpt/Editors/PrismMeshEditor.js";
|
|
506
|
+
import "./Sculpt/Editors/RectangleMeshEditor.js";
|
|
489
507
|
import "./Sculpt/Meshes/Box.js";
|
|
490
|
-
import "./Sculpt/Meshes/RectangleWithEdge.js";
|
|
491
|
-
import "./Sculpt/Meshes/Rectangle.js";
|
|
492
|
-
import "./Sculpt/utils/three/RectangleGeometry.js";
|
|
493
|
-
import "./Sculpt/utils/getBetterNormal.js";
|
|
494
508
|
import "./Sculpt/Meshes/Circle.js";
|
|
495
509
|
import "./Sculpt/utils/radiusToSegments.js";
|
|
496
510
|
import "./Sculpt/Meshes/CircleWithEdge.js";
|
|
497
511
|
import "./Sculpt/Meshes/Cylinder.js";
|
|
498
|
-
import "./
|
|
512
|
+
import "./Sculpt/Meshes/Rectangle.js";
|
|
513
|
+
import "./Sculpt/utils/three/RectangleGeometry.js";
|
|
514
|
+
import "./Sculpt/Meshes/RectangleWithEdge.js";
|
|
499
515
|
import "./Sculpt/Objects/Base/index.js";
|
|
500
516
|
import "./Sculpt/Objects/Point/Editor.js";
|
|
501
|
-
import "./Sculpt/Objects/Base/Editor.js";
|
|
502
517
|
import "./shared-utils/three/vector3ToArray.js";
|
|
503
518
|
import "./Sculpt/Objects/Line/Editor.js";
|
|
504
519
|
import "./shared-utils/promise/withResolvers.js";
|
|
505
520
|
import "./Sculpt/Objects/Polyline/Editor.js";
|
|
506
521
|
import "./Sculpt/Meshes/Area.js";
|
|
507
522
|
import "./Sculpt/Objects/Polygon/Editor.js";
|
|
508
|
-
import "./Sculpt/
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
o();
|
|
523
|
+
import "./Sculpt/utils/sortPositionsByCameraPosition.js";
|
|
524
|
+
x();
|
|
525
|
+
u();
|
|
526
|
+
const bl = e(p({}, g), {
|
|
527
|
+
sculpt: s
|
|
528
|
+
});
|
|
515
529
|
export {
|
|
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
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
530
|
+
Qn as AreaMakerPlugin,
|
|
531
|
+
ea as CSS3DRender,
|
|
532
|
+
kl as CSS3DRenderPlugin,
|
|
533
|
+
sn as CameraMovementEffect,
|
|
534
|
+
xn as CameraMovementPlugin,
|
|
535
|
+
wa as ContentType,
|
|
536
|
+
hn as CruisePlugin,
|
|
537
|
+
Da as CruisePluginController,
|
|
538
|
+
Ya as CruisePluginTypes,
|
|
539
|
+
Zn as CurrentPanoImagePlugin,
|
|
540
|
+
bn as DIRECTION,
|
|
541
|
+
Ta as DISPLAY_STRATEGY_TYPE,
|
|
542
|
+
Ha as DimensionType,
|
|
543
|
+
zl as FLOOR_PLAN_ATTACHED_TO,
|
|
544
|
+
pn as FLOOR_TYPE_MAP,
|
|
545
|
+
ya as GuideLineItem,
|
|
546
|
+
Oa as GuideLineModeItem,
|
|
547
|
+
Nn as GuideLinePlugin,
|
|
548
|
+
_a as ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE,
|
|
549
|
+
Ea as ItemLabelPlugin,
|
|
550
|
+
da as Magnifier,
|
|
551
|
+
Xl as MapviewFloorplanPlugin,
|
|
552
|
+
an as ModelChassisCompassPlugin,
|
|
553
|
+
fn as ModelEntryDoorGuidePlugin,
|
|
554
|
+
Kl as ModelFloorplanPlugin,
|
|
555
|
+
La as ModelItemLabelPlugin,
|
|
556
|
+
ma as ModelMakerPlugin,
|
|
557
|
+
$l as ModelRoomLabelPlugin,
|
|
558
|
+
Dn as ModelTVVideoPlugin,
|
|
559
|
+
Ul as ModelViewPlugin,
|
|
560
|
+
va as MoveController,
|
|
561
|
+
kn as MovePlugin,
|
|
562
|
+
Wa as Object3DHelperController,
|
|
563
|
+
$n as Object3DHelperPlugin,
|
|
564
|
+
qa as PLUGIN,
|
|
565
|
+
Yl as PaintBrush,
|
|
566
|
+
Bl as PaintBrushTypeEnum,
|
|
567
|
+
_n as PanoCompassPlugin,
|
|
568
|
+
Hl as PanoCursorRaycasterPlugin,
|
|
569
|
+
Vn as PanoDoorLabelPlugin,
|
|
570
|
+
tn as PanoFloorplanRadarPlugin,
|
|
571
|
+
En as PanoMeasurePlugin,
|
|
572
|
+
ua as PanoMeasurePluginLine,
|
|
573
|
+
na as PanoMeasurePluginModel,
|
|
574
|
+
Pa as PanoMeasurePluginPoint,
|
|
575
|
+
ga as PanoMeasurePluginPolyline,
|
|
576
|
+
Tn as PanoRulerPlugin,
|
|
577
|
+
Ln as PanoRulerProPlugin,
|
|
578
|
+
yn as PanoSpatialTagPlugin,
|
|
579
|
+
Hn as PanoTagPlugin,
|
|
580
|
+
Ba as PanoTagPluginController,
|
|
581
|
+
qn as PanoVideoPlugin,
|
|
582
|
+
Ja as PanoVideoPluginType,
|
|
583
|
+
Jn as PipelinePlugin,
|
|
584
|
+
ja as PointType,
|
|
585
|
+
en as ROOM_FETILE_TYPE_MAP,
|
|
586
|
+
ln as ROOM_TYPE_MAP,
|
|
587
|
+
dn as Rotation,
|
|
588
|
+
ra as Sculpt,
|
|
589
|
+
ta as SculptPlugin,
|
|
590
|
+
on as TopviewFloorplanPlugin,
|
|
591
|
+
bl as Util,
|
|
592
|
+
Ga as WalkController,
|
|
593
|
+
xP as createBox,
|
|
594
|
+
aP as createCircle,
|
|
595
|
+
fP as createCylinder,
|
|
596
|
+
Za as createLine,
|
|
597
|
+
Qa as createPoint,
|
|
598
|
+
iP as createPolygon,
|
|
599
|
+
rP as createPolyline,
|
|
600
|
+
pP as createPrism,
|
|
601
|
+
lP as createRectangle,
|
|
602
|
+
ha as defaultGlobalConfig,
|
|
603
|
+
Fn as itemLabelPluginServerParams,
|
|
604
|
+
On as modelItemLabelPluginServerParams,
|
|
605
|
+
Wl as modelRoomLabelPluginServerParams,
|
|
606
|
+
Na as pluginFlag
|
|
593
607
|
};
|
|
@@ -37,6 +37,7 @@ export declare abstract class BaseController<T extends BaseHelper = BaseHelper,
|
|
|
37
37
|
originObject3D: K;
|
|
38
38
|
helperObject3D: T;
|
|
39
39
|
container: HTMLElement;
|
|
40
|
+
domEvents: DomEvents;
|
|
40
41
|
scene: THREE.Object3D;
|
|
41
42
|
onRender?: () => void;
|
|
42
43
|
sharedHooks?: Subscribe<HelperEventMap>;
|