@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
|
@@ -2,15 +2,15 @@ var $ = Object.defineProperty, B = Object.defineProperties;
|
|
|
2
2
|
var U = Object.getOwnPropertyDescriptors;
|
|
3
3
|
var C = Object.getOwnPropertySymbols;
|
|
4
4
|
var G = Object.prototype.hasOwnProperty, N = Object.prototype.propertyIsEnumerable;
|
|
5
|
-
var T = (
|
|
5
|
+
var T = (p, a, i) => a in p ? $(p, a, { enumerable: !0, configurable: !0, writable: !0, value: i }) : p[a] = i, H = (p, a) => {
|
|
6
6
|
for (var i in a || (a = {}))
|
|
7
|
-
G.call(a, i) && T(
|
|
7
|
+
G.call(a, i) && T(p, i, a[i]);
|
|
8
8
|
if (C)
|
|
9
9
|
for (var i of C(a))
|
|
10
|
-
N.call(a, i) && T(
|
|
11
|
-
return
|
|
12
|
-
}, W = (
|
|
13
|
-
var n = (
|
|
10
|
+
N.call(a, i) && T(p, i, a[i]);
|
|
11
|
+
return p;
|
|
12
|
+
}, W = (p, a) => B(p, U(a));
|
|
13
|
+
var n = (p, a, i) => (T(p, typeof a != "symbol" ? a + "" : a, i), i);
|
|
14
14
|
import { Raycaster as Q, Vector3 as V, Quaternion as j, Euler as z } from "three";
|
|
15
15
|
import { BasePanoPluginController as q } from "./BaseController.js";
|
|
16
16
|
import X from "./DoorLabelItem.js";
|
|
@@ -44,88 +44,35 @@ import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
|
44
44
|
import "../shared-utils/three/centerPoint.js";
|
|
45
45
|
import "../shared-utils/three/getObjectVisible.js";
|
|
46
46
|
import "@realsee/five/line";
|
|
47
|
-
import "../
|
|
48
|
-
import "../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
49
|
-
import "../vendor/three/build/three.module.js";
|
|
47
|
+
import "../shared-utils/isNil.js";
|
|
50
48
|
import "../shared-utils/three/core/Sphere.js";
|
|
51
49
|
import "animejs";
|
|
52
|
-
import "../shared-utils/isNil.js";
|
|
53
50
|
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
54
|
-
import "../
|
|
55
|
-
import "../shared-utils/
|
|
56
|
-
import "../shared-utils/three/earcut3D.js";
|
|
57
|
-
import "earcut";
|
|
58
|
-
import "../shared-utils/three/getNormal.js";
|
|
59
|
-
import "../PanoMeasurePlugin/utils/isIntersecting.js";
|
|
60
|
-
import "../Sculpt/typings/style.js";
|
|
61
|
-
import "../Sculpt/utils/three/ColoredMesh.js";
|
|
62
|
-
import "../shared-utils/three/IObject3D.js";
|
|
63
|
-
import "../Sculpt/utils/Modules/Global.js";
|
|
64
|
-
import "../Sculpt/utils/Modules/Cursor.js";
|
|
65
|
-
import "../Object3DHelperPlugin/Controller.js";
|
|
66
|
-
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
67
|
-
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
68
|
-
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
69
|
-
import "../shared-utils/three/boundingBox.js";
|
|
70
|
-
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
71
|
-
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
72
|
-
import "../shared-utils/Object3DHelper/Constants/color.js";
|
|
73
|
-
import "../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
74
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
51
|
+
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
52
|
+
import "../shared-utils/five/initialCSS3DRender.js";
|
|
75
53
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
76
54
|
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
77
55
|
import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
78
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
79
|
-
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
80
|
-
import "../shared-utils/util.js";
|
|
81
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
82
|
-
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
83
|
-
import "../shared-utils/five/initialCSS3DRender.js";
|
|
84
56
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
85
57
|
import "../Sculpt/Meshes/Line.js";
|
|
58
|
+
import "../Sculpt/typings/style.js";
|
|
86
59
|
import "../shared-utils/five/FiveLine.js";
|
|
60
|
+
import "../shared-utils/three/IObject3D.js";
|
|
87
61
|
import "../Sculpt/utils/removeAllTag.js";
|
|
88
62
|
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
89
63
|
import "../shared-utils/three/applyObjectMatrixWorld.js";
|
|
90
|
-
import "../
|
|
91
|
-
import "../
|
|
64
|
+
import "../shared-utils/util.js";
|
|
65
|
+
import "../shared-utils/three/core/LineGeometry.js";
|
|
92
66
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
93
|
-
import "../shared-utils/url/absoluteUrl.js";
|
|
94
|
-
import "../shared-utils/Object3DHelper/Helper/RotateHelper.js";
|
|
95
|
-
import "../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
|
|
96
|
-
import "../shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
|
|
97
|
-
import "../shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
|
|
98
|
-
import "../shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
|
|
99
|
-
import "../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
100
|
-
import "../shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
101
|
-
import "../shared-utils/Object3DHelper/Base/BaseController.js";
|
|
102
|
-
import "../shared-utils/threex/domevents/index.js";
|
|
103
|
-
import "../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
104
|
-
import "../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
105
|
-
import "../Object3DHelperPlugin/FiveControllerWrapper.js";
|
|
106
|
-
import "../shared-utils/Object3DHelper/index.js";
|
|
107
|
-
import "../shared-utils/Object3DHelper/Controller/RotateController.js";
|
|
108
|
-
import "../shared-utils/math/rad2Deg.js";
|
|
109
|
-
import "../shared-utils/math/deg2Rad.js";
|
|
110
|
-
import "../shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
|
|
111
|
-
import "../shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
|
|
112
|
-
import "../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
|
|
113
|
-
import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
114
|
-
import "../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
|
|
115
|
-
import "../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
|
|
116
|
-
import "../shared-utils/Object3DHelper/Controller/ScaleController.js";
|
|
117
|
-
import "../shared-utils/five/fiveModelLoad.js";
|
|
118
|
-
import "../shared-utils/five/FiveDomEvents.js";
|
|
119
|
-
import "../shared-utils/five/calculateThreeMouse.js";
|
|
120
67
|
import "../shared-utils/isTouchDevice.js";
|
|
121
|
-
import "../shared-utils/three/geometryUtil.js";
|
|
122
68
|
import "../shared-utils/five/getPosition.js";
|
|
123
69
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
124
70
|
import "../shared-utils/three/PointSelector/utils/contents.js";
|
|
71
|
+
import "../shared-utils/url/absoluteUrl.js";
|
|
125
72
|
import "../vendor/svelte/internal/index.js";
|
|
126
73
|
import "../vendor/classnames/index.js";
|
|
127
74
|
const ii = { userAction: !0 };
|
|
128
|
-
class
|
|
75
|
+
class lt extends q {
|
|
129
76
|
constructor(i) {
|
|
130
77
|
super(i);
|
|
131
78
|
n(this, "MinVisibledistance", 1.8);
|
|
@@ -144,23 +91,23 @@ class ao extends q {
|
|
|
144
91
|
n(this, "doorLabels");
|
|
145
92
|
n(this, "roomObservers");
|
|
146
93
|
n(this, "loadData", (i, r) => {
|
|
147
|
-
r && (this.MaxVisibledistance = r.MaxVisibledistance, this.MinVisibledistance = r.MinVisibledistance, this.OffsetHeight = r.OffsetHeight), this.doorLabelItems && this.doorLabelItems.length > 0 && this.doorLabelItems.forEach((
|
|
148
|
-
|
|
94
|
+
r && (this.MaxVisibledistance = r.MaxVisibledistance, this.MinVisibledistance = r.MinVisibledistance, this.OffsetHeight = r.OffsetHeight), this.doorLabelItems && this.doorLabelItems.length > 0 && this.doorLabelItems.forEach((m) => {
|
|
95
|
+
m.$destroy();
|
|
149
96
|
}), this.labelItems = [], this.doorLabels = [], this.doorLabelItems = [], this.floorplanServerData = i, typeof this.five.ready == "function" ? this.five.ready().then(() => this.initData()) : this.five.once("panoArrived", () => {
|
|
150
97
|
this.initData();
|
|
151
98
|
});
|
|
152
99
|
});
|
|
153
100
|
n(this, "initRoomObservers", () => {
|
|
154
|
-
var
|
|
155
|
-
const i = this.floorplanServerData.computed_data.floor_datas || [],
|
|
156
|
-
const s =
|
|
101
|
+
var l, h;
|
|
102
|
+
const i = this.floorplanServerData.computed_data.floor_datas || [], m = (((h = (l = this.five) == null ? void 0 : l.work) == null ? void 0 : h.observers) || []).map((o) => {
|
|
103
|
+
const s = o.panoIndex, f = o.floorIndex, t = i == null ? void 0 : i.find((e) => e.floor_index === f);
|
|
157
104
|
if (t) {
|
|
158
|
-
const
|
|
159
|
-
if (
|
|
160
|
-
return { panoIndex: s, floorIndex:
|
|
105
|
+
const e = t.rooms.find((c) => c.observer_indexs.includes(s));
|
|
106
|
+
if (e)
|
|
107
|
+
return { panoIndex: s, floorIndex: f, name: e.name };
|
|
161
108
|
}
|
|
162
109
|
}).filter(Boolean);
|
|
163
|
-
this.roomObservers =
|
|
110
|
+
this.roomObservers = m;
|
|
164
111
|
});
|
|
165
112
|
n(this, "hideAllLabels", () => {
|
|
166
113
|
this.labelItems.forEach((i) => {
|
|
@@ -170,115 +117,115 @@ class ao extends q {
|
|
|
170
117
|
n(this, "fixDoorVisibleAndPosition", () => {
|
|
171
118
|
this.initRoomObservers();
|
|
172
119
|
const { panoIndex: i } = this.five;
|
|
173
|
-
if (!this.visible || this.five.model.empty || i === null || !this.roomObservers.find((
|
|
120
|
+
if (!this.visible || this.five.model.empty || i === null || !this.roomObservers.find((o) => o.panoIndex === i))
|
|
174
121
|
return;
|
|
175
|
-
const r = this.roomObservers.find((
|
|
122
|
+
const r = this.roomObservers.find((o) => o.panoIndex === i), l = this.five.work.observers.find((o) => o.panoIndex === i).position.clone(), h = (() => {
|
|
176
123
|
if (this.visibleLabelMap.has(i))
|
|
177
124
|
return this.visibleLabelMap.get(i);
|
|
178
125
|
{
|
|
179
|
-
const
|
|
180
|
-
return this.doorLabels.forEach((s,
|
|
126
|
+
const o = [];
|
|
127
|
+
return this.doorLabels.forEach((s, f) => {
|
|
181
128
|
if (s.roomName === r.name)
|
|
182
129
|
return;
|
|
183
|
-
const t = s.position.clone(),
|
|
184
|
-
if (
|
|
130
|
+
const t = s.position.clone(), e = t.distanceTo(l);
|
|
131
|
+
if (e < this.MinVisibledistance || e > this.MaxVisibledistance)
|
|
185
132
|
return;
|
|
186
|
-
const
|
|
187
|
-
|
|
188
|
-
const [b] = this.five.model.intersectRaycaster(
|
|
189
|
-
b && b.distance + 0.1 <
|
|
190
|
-
}), this.visibleLabelMap.set(i,
|
|
133
|
+
const c = new Q(), v = t.clone().sub(l).normalize();
|
|
134
|
+
c.set(l, v);
|
|
135
|
+
const [b] = this.five.model.intersectRaycaster(c);
|
|
136
|
+
b && b.distance + 0.1 < e || o.push(f);
|
|
137
|
+
}), this.visibleLabelMap.set(i, o), o;
|
|
191
138
|
}
|
|
192
139
|
})();
|
|
193
|
-
this.labelItems.forEach((
|
|
194
|
-
|
|
140
|
+
this.labelItems.forEach((o, s) => {
|
|
141
|
+
o.visible = h.includes(s);
|
|
195
142
|
}), this.fixDoorPosition();
|
|
196
143
|
});
|
|
197
144
|
n(this, "fixDoorPosition", () => {
|
|
198
|
-
var t,
|
|
145
|
+
var t, e, c, v, b, y, g, w, L, E, _, S;
|
|
199
146
|
const { panoIndex: i, camera: r } = this.five;
|
|
200
147
|
if (i === null)
|
|
201
148
|
return;
|
|
202
149
|
if (this.five.currentMode !== "Panorama")
|
|
203
150
|
return this.hideAllLabels();
|
|
204
|
-
const
|
|
205
|
-
if (
|
|
206
|
-
if (
|
|
207
|
-
const x = r.position.distanceTo(
|
|
208
|
-
|
|
151
|
+
const m = this.five.getElement(), l = m.clientWidth, h = m.clientHeight, o = r.getWorldDirection(new V()), s = [], f = [...this.labelItems];
|
|
152
|
+
if (f.forEach((d, u) => {
|
|
153
|
+
if (d.visible) {
|
|
154
|
+
const x = r.position.distanceTo(d.position), M = d.position.clone().add(new V(0, this.OffsetHeight, 0)), A = M.clone().sub(r.position).normalize().angleTo(o), O = M.clone().project(r), P = (O.x + 1) / 2.2 * 100, I = (-O.y + 1) / 2.2 * 100, D = P >= 0 && P <= 100 && I >= 0 && I <= 100 && x > this.MinVisibledistance && x <= this.MaxVisibledistance;
|
|
155
|
+
d.left = P, d.top = I, d.inSight = D && A < Math.PI / 2, d.cameraToward = Y(this.five), D ? s.push({ disFromCameraToLabel: x, left: P, top: I, index: u }) : d.transform = "translate(-50%, -50%)";
|
|
209
156
|
} else
|
|
210
|
-
|
|
157
|
+
d.inSight = !1;
|
|
211
158
|
}), s.length > 1) {
|
|
212
|
-
let
|
|
159
|
+
let d = 0;
|
|
213
160
|
s.sort((u, x) => x.disFromCameraToLabel - u.disFromCameraToLabel);
|
|
214
161
|
for (let u = 1; u < s.length; u++) {
|
|
215
162
|
const { index: x, left: M, top: k } = s[u - 1], { index: A, left: O, top: P } = s[u], I = this.container.children[x], D = this.container.children[A];
|
|
216
163
|
if (!I || !D)
|
|
217
164
|
return;
|
|
218
165
|
const R = {
|
|
219
|
-
left:
|
|
220
|
-
top:
|
|
221
|
-
width: (
|
|
166
|
+
left: l * M / 100,
|
|
167
|
+
top: h * k / 100,
|
|
168
|
+
width: (c = (e = (t = I.children) == null ? void 0 : t[0]) == null ? void 0 : e.clientWidth) != null ? c : 0,
|
|
222
169
|
height: (y = (b = (v = I.children) == null ? void 0 : v[0]) == null ? void 0 : b.clientHeight) != null ? y : 0
|
|
223
170
|
}, F = {
|
|
224
|
-
left:
|
|
225
|
-
top:
|
|
171
|
+
left: l * O / 100,
|
|
172
|
+
top: h * P / 100,
|
|
226
173
|
width: (L = (w = (g = D.children) == null ? void 0 : g[0]) == null ? void 0 : w.clientWidth) != null ? L : 0,
|
|
227
174
|
height: (S = (_ = (E = D.children) == null ? void 0 : E[0]) == null ? void 0 : _.clientHeight) != null ? S : 0
|
|
228
175
|
};
|
|
229
|
-
Z(R, F) && (
|
|
176
|
+
Z(R, F) && (d++, f[x].transform = `translate(-50%, ${(d - 1) * 100 - 50}%)`, f[A].transform = `translate(-50%, ${d * 100 - 50}%)`);
|
|
230
177
|
}
|
|
231
178
|
}
|
|
232
|
-
this.labelItems =
|
|
179
|
+
this.labelItems = f, this.render();
|
|
233
180
|
});
|
|
234
181
|
n(this, "onClick", (i, r) => {
|
|
235
182
|
if (!this.roomObservers)
|
|
236
183
|
return;
|
|
237
|
-
const { work:
|
|
238
|
-
let
|
|
239
|
-
for (const s of
|
|
184
|
+
const { work: m } = this.five;
|
|
185
|
+
let l, h, o = 1 / 0;
|
|
186
|
+
for (const s of m.observers)
|
|
240
187
|
if (this.roomObservers.find((t) => t.panoIndex === s.panoIndex && t.name === i)) {
|
|
241
|
-
const t = s.standingPosition,
|
|
242
|
-
|
|
188
|
+
const t = s.standingPosition, e = r.distanceTo(t);
|
|
189
|
+
e < o && (l = s.panoIndex, h = t.clone().sub(r).normalize(), o = e);
|
|
243
190
|
}
|
|
244
|
-
if (
|
|
191
|
+
if (h !== null && l !== null) {
|
|
245
192
|
const s = {};
|
|
246
|
-
if (
|
|
247
|
-
const t = new V(0, 0, -1),
|
|
248
|
-
|
|
193
|
+
if (o > 0) {
|
|
194
|
+
const t = new V(0, 0, -1), e = h.clone(), c = new j();
|
|
195
|
+
c.setFromUnitVectors(t, e);
|
|
249
196
|
const v = new z();
|
|
250
|
-
v.setFromQuaternion(
|
|
197
|
+
v.setFromQuaternion(c, "YXZ"), s.longitude = v.y;
|
|
251
198
|
}
|
|
252
|
-
this.five.emit("wantsToMoveToPano",
|
|
199
|
+
this.five.emit("wantsToMoveToPano", l, {}, !0) || this.five.moveToPano(l, { longitude: s.longitude });
|
|
253
200
|
}
|
|
254
201
|
});
|
|
255
202
|
n(this, "initData", () => {
|
|
256
|
-
var
|
|
203
|
+
var l;
|
|
257
204
|
this.doorLabels = [];
|
|
258
|
-
const i = this.five.panoIndex, r = this.floorplanServerData.computed_data.observers[i].floor_index,
|
|
259
|
-
this.rooms =
|
|
260
|
-
var
|
|
261
|
-
const
|
|
262
|
-
|
|
263
|
-
const
|
|
264
|
-
let
|
|
205
|
+
const i = this.five.panoIndex, r = this.floorplanServerData.computed_data.observers[i].floor_index, m = r !== void 0 && ((l = this.floorplanServerData.computed_data.floor_datas[r]) == null ? void 0 : l.rooms);
|
|
206
|
+
this.rooms = m, this.rooms && this.rooms.length > 0 && this.rooms.forEach((h) => {
|
|
207
|
+
var f;
|
|
208
|
+
const o = (f = this.floorplanServerData.computed_data.doors) == null ? void 0 : f.filter((t) => !!(t && t.name === h.name)), s = this.five.work.observers.filter((t, e) => !!h.observer_indexs.find((c) => c === e));
|
|
209
|
+
o && o.forEach((t) => {
|
|
210
|
+
const e = t.position;
|
|
211
|
+
let c = 1 / 0, v;
|
|
265
212
|
s.forEach((y) => {
|
|
266
213
|
const g = y.standingPosition, w = {
|
|
267
214
|
x: g.x,
|
|
268
215
|
y: g.y,
|
|
269
216
|
z: g.z
|
|
270
|
-
}, L = J(
|
|
271
|
-
L <
|
|
272
|
-
}), v && (
|
|
273
|
-
const b = new V(
|
|
217
|
+
}, L = J(e, w);
|
|
218
|
+
L < c && (c = L, v = w);
|
|
219
|
+
}), v && (e.y = v.y + 0.01);
|
|
220
|
+
const b = new V(e.x, e.y, e.z);
|
|
274
221
|
b.add(new V(-0.2, 1.8, 0).applyEuler(new z(0, t.rad, 0))), this.doorLabels.push({
|
|
275
|
-
roomName:
|
|
222
|
+
roomName: h.name,
|
|
276
223
|
name: t.name,
|
|
277
224
|
position: b,
|
|
278
225
|
toward: K(t.rad)
|
|
279
226
|
});
|
|
280
227
|
});
|
|
281
|
-
}), this.labelItems = this.doorLabels.map((
|
|
228
|
+
}), this.labelItems = this.doorLabels.map((h) => W(H({}, h), {
|
|
282
229
|
left: 0,
|
|
283
230
|
top: 0,
|
|
284
231
|
visible: !1,
|
|
@@ -290,12 +237,12 @@ class ao extends q {
|
|
|
290
237
|
}
|
|
291
238
|
stateChangedCallback(i, r) {
|
|
292
239
|
if (this.hooks.hasListener("stateChange")) {
|
|
293
|
-
const
|
|
240
|
+
const m = {
|
|
294
241
|
state: this.state,
|
|
295
242
|
prevState: i,
|
|
296
243
|
userAction: r ? r.userAction : ii.userAction
|
|
297
244
|
};
|
|
298
|
-
this.hooks.emit("stateChange",
|
|
245
|
+
this.hooks.emit("stateChange", m);
|
|
299
246
|
}
|
|
300
247
|
}
|
|
301
248
|
render() {
|
|
@@ -329,5 +276,5 @@ class ao extends q {
|
|
|
329
276
|
}
|
|
330
277
|
}
|
|
331
278
|
export {
|
|
332
|
-
|
|
279
|
+
lt as PanoDoorLabelPluginController
|
|
333
280
|
};
|
|
@@ -30,90 +30,37 @@ import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
|
30
30
|
import "../shared-utils/three/centerPoint.js";
|
|
31
31
|
import "../shared-utils/three/getObjectVisible.js";
|
|
32
32
|
import "@realsee/five/line";
|
|
33
|
-
import "../
|
|
34
|
-
import "../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
35
|
-
import "../vendor/three/build/three.module.js";
|
|
33
|
+
import "../shared-utils/isNil.js";
|
|
36
34
|
import "../shared-utils/three/core/Sphere.js";
|
|
37
35
|
import "animejs";
|
|
38
|
-
import "../shared-utils/isNil.js";
|
|
39
36
|
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
40
|
-
import "../
|
|
41
|
-
import "../shared-utils/
|
|
42
|
-
import "../shared-utils/three/earcut3D.js";
|
|
43
|
-
import "earcut";
|
|
44
|
-
import "../shared-utils/three/getNormal.js";
|
|
45
|
-
import "../PanoMeasurePlugin/utils/isIntersecting.js";
|
|
46
|
-
import "../Sculpt/typings/style.js";
|
|
47
|
-
import "../Sculpt/utils/three/ColoredMesh.js";
|
|
48
|
-
import "../shared-utils/three/IObject3D.js";
|
|
49
|
-
import "../Sculpt/utils/Modules/Global.js";
|
|
50
|
-
import "../Sculpt/utils/Modules/Cursor.js";
|
|
51
|
-
import "../Object3DHelperPlugin/Controller.js";
|
|
52
|
-
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
53
|
-
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
54
|
-
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
55
|
-
import "../shared-utils/three/boundingBox.js";
|
|
56
|
-
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
57
|
-
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
58
|
-
import "../shared-utils/Object3DHelper/Constants/color.js";
|
|
59
|
-
import "../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
60
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
37
|
+
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
38
|
+
import "../shared-utils/five/initialCSS3DRender.js";
|
|
61
39
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
62
40
|
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
63
41
|
import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
64
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
65
|
-
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
66
|
-
import "../shared-utils/util.js";
|
|
67
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
68
|
-
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
69
|
-
import "../shared-utils/five/initialCSS3DRender.js";
|
|
70
42
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
71
43
|
import "../Sculpt/Meshes/Line.js";
|
|
44
|
+
import "../Sculpt/typings/style.js";
|
|
72
45
|
import "../shared-utils/five/FiveLine.js";
|
|
46
|
+
import "../shared-utils/three/IObject3D.js";
|
|
73
47
|
import "../Sculpt/utils/removeAllTag.js";
|
|
74
48
|
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
75
49
|
import "../shared-utils/three/applyObjectMatrixWorld.js";
|
|
76
|
-
import "../
|
|
77
|
-
import "../
|
|
50
|
+
import "../shared-utils/util.js";
|
|
51
|
+
import "../shared-utils/three/core/LineGeometry.js";
|
|
78
52
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
79
|
-
import "../shared-utils/url/absoluteUrl.js";
|
|
80
|
-
import "../shared-utils/Object3DHelper/Helper/RotateHelper.js";
|
|
81
|
-
import "../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
|
|
82
|
-
import "../shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
|
|
83
|
-
import "../shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
|
|
84
|
-
import "../shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
|
|
85
|
-
import "../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
86
|
-
import "../shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
87
|
-
import "../shared-utils/Object3DHelper/Base/BaseController.js";
|
|
88
|
-
import "../shared-utils/threex/domevents/index.js";
|
|
89
|
-
import "../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
90
|
-
import "../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
91
|
-
import "../Object3DHelperPlugin/FiveControllerWrapper.js";
|
|
92
|
-
import "../shared-utils/Object3DHelper/index.js";
|
|
93
|
-
import "../shared-utils/Object3DHelper/Controller/RotateController.js";
|
|
94
|
-
import "../shared-utils/math/rad2Deg.js";
|
|
95
|
-
import "../shared-utils/math/deg2Rad.js";
|
|
96
|
-
import "../shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
|
|
97
|
-
import "../shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
|
|
98
|
-
import "../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
|
|
99
|
-
import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
100
|
-
import "../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
|
|
101
|
-
import "../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
|
|
102
|
-
import "../shared-utils/Object3DHelper/Controller/ScaleController.js";
|
|
103
|
-
import "../shared-utils/five/fiveModelLoad.js";
|
|
104
|
-
import "../shared-utils/five/FiveDomEvents.js";
|
|
105
|
-
import "../shared-utils/five/calculateThreeMouse.js";
|
|
106
53
|
import "../shared-utils/isTouchDevice.js";
|
|
107
|
-
import "../shared-utils/three/geometryUtil.js";
|
|
108
54
|
import "../shared-utils/five/getPosition.js";
|
|
109
55
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
110
56
|
import "../shared-utils/three/PointSelector/utils/contents.js";
|
|
57
|
+
import "../shared-utils/url/absoluteUrl.js";
|
|
111
58
|
import "./DoorLabelItem.js";
|
|
112
59
|
import "../vendor/svelte/internal/index.js";
|
|
113
60
|
import "../vendor/classnames/index.js";
|
|
114
61
|
import "./utils.js";
|
|
115
|
-
const
|
|
62
|
+
const ao = (o) => new r(o);
|
|
116
63
|
export {
|
|
117
|
-
|
|
118
|
-
|
|
64
|
+
ao as PanoDoorLabelPlugin,
|
|
65
|
+
ao as default
|
|
119
66
|
};
|