@realsee/dnalogel 3.45.0 → 3.46.1
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 +6 -0
- package/dist/Sculpt/Meshes/Line.d.ts +6 -1
- package/dist/Sculpt/utils/removeAllTag.d.ts +2 -0
- package/dist/index.cjs.js +53 -53
- package/dist/index.js +29600 -29557
- package/dist/index.umd.js +49 -49
- package/dist/shared-utils/tag.d.ts +6 -3
- package/libs/AreaMakerPlugin/Controller.js +151 -78
- package/libs/AreaMakerPlugin/index.js +77 -4
- package/libs/AreaMakerPlugin/utils/Item.js +191 -111
- package/libs/CSS3DRenderPlugin/Controller.js +90 -29
- package/libs/CSS3DRenderPlugin/index.js +76 -15
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +133 -58
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +182 -116
- package/libs/CruisePlugin/BaseController.js +122 -49
- package/libs/CruisePlugin/Move.js +74 -21
- package/libs/CruisePlugin/Work.js +99 -46
- package/libs/CruisePlugin/index.js +80 -27
- package/libs/CurrentPanoImagePlugin/Controller.js +177 -104
- package/libs/CurrentPanoImagePlugin/index.js +77 -4
- package/libs/GuideLinePlugin/Controller.js +79 -26
- package/libs/GuideLinePlugin/GuideLineItem.js +83 -30
- package/libs/GuideLinePlugin/GuideLineModeItem/index.js +3 -2
- package/libs/GuideLinePlugin/GuideLineModeItem.js +82 -29
- package/libs/GuideLinePlugin/index.js +80 -27
- package/libs/ModelMakerPlugin/Controller.js +140 -82
- package/libs/ModelMakerPlugin/index.js +76 -18
- package/libs/ModelTVVideoPlugin/Plugin.js +118 -57
- package/libs/ModelTVVideoPlugin/index.js +69 -8
- package/libs/Object3DHelperPlugin/Controller.js +67 -43
- package/libs/Object3DHelperPlugin/index.js +36 -13
- package/libs/PanoCompassPlugin/Controller.js +98 -42
- package/libs/PanoCompassPlugin/index.js +72 -16
- package/libs/PanoDoorLabelPlugin/BaseController.js +99 -26
- package/libs/PanoDoorLabelPlugin/Controller.js +188 -115
- package/libs/PanoDoorLabelPlugin/index.js +77 -4
- package/libs/PanoMeasurePlugin/Components/Controller0.js +141 -88
- package/libs/PanoMeasurePlugin/Components/Controller1.js +179 -126
- package/libs/PanoMeasurePlugin/Controller/EditController.js +125 -72
- package/libs/PanoMeasurePlugin/Controller/WatchController.js +168 -92
- package/libs/PanoMeasurePlugin/Controller/index.js +110 -64
- package/libs/PanoMeasurePlugin/Model/area.js +115 -38
- package/libs/PanoMeasurePlugin/Modules/Magnifier.js +79 -0
- package/libs/PanoMeasurePlugin/Modules/UIController/index.js +98 -45
- package/libs/PanoMeasurePlugin/index.js +77 -31
- package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +99 -20
- package/libs/PanoSpatialTagPlugin/Plugin.js +211 -150
- package/libs/PanoSpatialTagPlugin/index.js +67 -6
- package/libs/PanoTagPlugin/Components/Common/TagPoint.js +149 -68
- package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +296 -216
- package/libs/PanoTagPlugin/Components/Tag/index.js +258 -187
- package/libs/PanoTagPlugin/Components/TagContainer.js +158 -87
- package/libs/PanoTagPlugin/Components/TagItem.js +145 -74
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +133 -62
- package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +110 -39
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +106 -35
- package/libs/PanoTagPlugin/controller/Tag/PointTag.js +114 -43
- package/libs/PanoTagPlugin/controller/TagRender.js +133 -80
- package/libs/PanoTagPlugin/controller/TagUtil.js +137 -84
- package/libs/PanoTagPlugin/controller/index.js +114 -61
- package/libs/PanoTagPlugin/index.js +90 -37
- package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +122 -41
- package/libs/PanoVideoPlugin/Controller.js +138 -65
- package/libs/PanoVideoPlugin/VideoMeshController.js +150 -69
- package/libs/PanoVideoPlugin/index.js +83 -10
- package/libs/PipelinePlugin/Controller.js +200 -128
- package/libs/PipelinePlugin/index.js +77 -5
- package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +103 -22
- package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +96 -15
- package/libs/PipelinePlugin/utils/Objects/Pipe.js +137 -56
- package/libs/Sculpt/Meshes/Box.js +6 -5
- package/libs/Sculpt/Meshes/Cylinder.js +7 -6
- package/libs/Sculpt/Meshes/Line.d.ts +6 -1
- package/libs/Sculpt/Meshes/Line.js +80 -57
- package/libs/Sculpt/Meshes/Point.js +6 -5
- package/libs/Sculpt/Meshes/Polyline.js +5 -4
- package/libs/Sculpt/Meshes/Rectangle.js +3 -2
- package/libs/Sculpt/Objects/Base/index.js +20 -17
- package/libs/Sculpt/Objects/Line/Editor.js +11 -10
- package/libs/Sculpt/utils/removeAllTag.d.ts +2 -0
- package/libs/Sculpt/utils/removeAllTag.js +10 -0
- package/libs/Sculpt/utils/three/ColoredMesh.js +14 -13
- package/libs/base/BasePlugin.js +14 -13
- package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +129 -59
- package/libs/floorplan/MapviewFloorplanPlugin/index.js +76 -6
- package/libs/floorplan/ModelFloorplanPlugin/Controller.js +130 -59
- package/libs/floorplan/ModelFloorplanPlugin/index.js +76 -5
- package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +159 -86
- package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +77 -4
- package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +152 -81
- package/libs/floorplan/TopviewFloorplanPlugin/index.js +76 -5
- package/libs/floorplan/index.js +1 -0
- package/libs/index.js +193 -192
- package/libs/shared-utils/five/index.js +3 -2
- package/libs/shared-utils/five/lookObject.js +3 -2
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/tag.d.ts +6 -3
- package/libs/shared-utils/tag.js +38 -24
- package/libs/shared-utils/three/index.js +1 -0
- package/package.json +1 -1
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 El } from "./components/PaintBrush/index.js";
|
|
4
|
+
import { PaintBrushTypeEnum as Rl } from "./components/PaintBrush/typings.js";
|
|
5
|
+
import { ModelViewPlugin as Ol } from "./ModelViewPlugin/Plugin.js";
|
|
6
|
+
import { CSS3DRenderPlugin as Al } from "./CSS3DRenderPlugin/index.js";
|
|
7
|
+
import { PanoCursorRaycasterPlugin as Gl } from "./PanoCursorRaycasterPlugin/index.js";
|
|
8
|
+
import { ModelRoomLabelPlugin as vl, modelRoomLabelPluginServerParams as Fl } from "./ModelRoomLabelPlugin/index.js";
|
|
9
|
+
import { FLOOR_PLAN_ATTACHED_TO as cl } from "./floorplan/constant.js";
|
|
10
|
+
import { ModelFloorplanPlugin as Nl } from "./floorplan/ModelFloorplanPlugin/index.js";
|
|
11
|
+
import { MapviewFloorplanPlugin as kl } from "./floorplan/MapviewFloorplanPlugin/index.js";
|
|
12
|
+
import { TopviewFloorplanPlugin as Bl } from "./floorplan/TopviewFloorplanPlugin/index.js";
|
|
13
|
+
import { PanoFloorplanRadarPlugin as Ul } from "./floorplan/PanoFloorplanRadarPlugin/index.js";
|
|
14
|
+
import { FLOOR_TYPE_MAP as $l, ROOM_FETILE_TYPE_MAP as Wl, ROOM_TYPE_MAP as ql } from "./floorplan/typings/floorplanServerData.js";
|
|
15
|
+
import { ModelChassisCompassPlugin as Jl } from "./ModelChassisCompassPlugin/Plugin.js";
|
|
16
|
+
import { ModelEntryDoorGuidePlugin as Ql } from "./ModelEntryDoorGuidePlugin/Plugin.js";
|
|
17
|
+
import { CameraMovementPlugin as Zl } from "./CameraMovementPlugin/CameraMovementPlugin.js";
|
|
18
|
+
import { CameraMovementEffect as rn, Rotation as tn } from "./CameraMovementPlugin/typing.js";
|
|
19
|
+
import { PanoRulerPlugin as pn } from "./PanoRulerPlugin/Plugin.js";
|
|
20
|
+
import { PanoRulerProPlugin as ln } from "./PanoRulerProPlugin/index.js";
|
|
21
|
+
import { PanoCompassPlugin as an } from "./PanoCompassPlugin/index.js";
|
|
22
|
+
import { PanoMeasurePlugin as un } from "./PanoMeasurePlugin/index.js";
|
|
23
|
+
import { PanoSpatialTagPlugin as xn } from "./PanoSpatialTagPlugin/Plugin.js";
|
|
24
|
+
import { modelItemLabelPluginServerParams as sn } from "./ModelItemLabelPlugin/index.js";
|
|
25
|
+
import { ModelTVVideoPlugin as Mn } from "./ModelTVVideoPlugin/Plugin.js";
|
|
26
|
+
import { DIRECTION as Ln } from "./ModelTVVideoPlugin/typings.js";
|
|
27
|
+
import { itemLabelPluginServerParams as _n } from "./ItemLabelPlugin/index.js";
|
|
28
|
+
import { PanoDoorLabelPlugin as In } from "./PanoDoorLabelPlugin/index.js";
|
|
29
|
+
import { GuideLinePlugin as Sn } from "./GuideLinePlugin/index.js";
|
|
30
|
+
import { CruisePlugin as yn, MovePlugin as An } from "./CruisePlugin/index.js";
|
|
31
|
+
import { PanoTagPlugin as Gn } from "./PanoTagPlugin/index.js";
|
|
32
|
+
import { Object3DHelperPlugin as vn } from "./Object3DHelperPlugin/index.js";
|
|
33
|
+
import { PanoVideoPlugin as Yn } from "./PanoVideoPlugin/index.js";
|
|
34
|
+
import { PipelinePlugin as Vn } from "./PipelinePlugin/index.js";
|
|
35
|
+
import { AreaMakerPlugin as hn } from "./AreaMakerPlugin/index.js";
|
|
36
|
+
import { CurrentPanoImagePlugin as wn } from "./CurrentPanoImagePlugin/index.js";
|
|
37
|
+
import { Sculpt as Hn, SculptPlugin as Un } from "./Sculpt/index.js";
|
|
38
|
+
import { ModelMakerPlugin as $n } from "./ModelMakerPlugin/index.js";
|
|
39
|
+
import { index as qn } from "./shared-utils/index.js";
|
|
40
|
+
import { CSS3DRender as Jn } from "./CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
41
|
+
import { Model as Qn } from "./PanoMeasurePlugin/Model/index.js";
|
|
42
|
+
import { default as Zn } from "./PanoMeasurePlugin/Model/point.js";
|
|
43
|
+
import { default as ra } from "./PanoMeasurePlugin/Model/line.js";
|
|
44
|
+
import { Polyline as ia } from "./PanoMeasurePlugin/Model/polyline.js";
|
|
45
|
+
import { Magnifier as pa } from "./shared-utils/three/Magnifier.js";
|
|
46
|
+
import { DISPLAY_STRATEGY_TYPE as la } from "./ModelItemLabelPlugin/typings.js";
|
|
47
|
+
import { ModelItemLabelPlugin as aa } from "./ModelItemLabelPlugin/ModelItemLabelPlugin.js";
|
|
48
|
+
import { ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE as ua } from "./ItemLabelPlugin/typings.js";
|
|
49
|
+
import { Plugin as xa } from "./ItemLabelPlugin/Plugin.js";
|
|
50
|
+
import { GuideLineItem$1 as sa } from "./GuideLinePlugin/GuideLineItem/index.js";
|
|
51
|
+
import { GuideLineModeItem$1 as Ma } from "./GuideLinePlugin/GuideLineModeItem/index.js";
|
|
52
|
+
import { default as La, default as Ca } from "./CruisePlugin/Work.js";
|
|
53
|
+
import { default as Ea } from "./CruisePlugin/Move.js";
|
|
54
|
+
import { typing as Ra } from "./CruisePlugin/typing/index.js";
|
|
55
|
+
import { default as Oa, pluginFlag as ya } from "./PanoTagPlugin/controller/index.js";
|
|
56
|
+
import { defaultGlobalConfig as Da } from "./PanoTagPlugin/typings/tag/TagConfig.js";
|
|
57
|
+
import { ContentType as ba, DimensionType as va, PointType as Fa } from "./PanoTagPlugin/Archive/deprecated.js";
|
|
58
|
+
import { Object3DHelperController as ca, PLUGIN as Va } from "./Object3DHelperPlugin/Controller.js";
|
|
59
|
+
import { typings as ha } 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,28 +71,86 @@ 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 "./Sculpt/utils/Modules/Global.js";
|
|
75
|
+
import "./Sculpt/utils/Modules/Cursor.js";
|
|
76
|
+
import "./shared-utils/five/FiveDomEvents.js";
|
|
77
|
+
import "./shared-utils/three/getObjectVisible.js";
|
|
78
|
+
import "./shared-utils/five/calculateThreeMouse.js";
|
|
79
|
+
import "./shared-utils/five/getFiveModel.js";
|
|
80
|
+
import "./shared-utils/three/THREERaycaster.js";
|
|
81
|
+
import "./shared-utils/three/PointSelector/index.js";
|
|
82
|
+
import "./shared-utils/three/PointSelector/utils/PointSelectorHelper.js";
|
|
83
|
+
import "./shared-utils/three/PointSelector/utils/PointHelper.js";
|
|
84
|
+
import "./shared-utils/three/Assets/index.js";
|
|
85
|
+
import "./CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
86
|
+
import "./CSS3DRenderPlugin/utils/even.js";
|
|
87
|
+
import "./shared-utils/Subscribe.js";
|
|
88
|
+
import "./CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
89
|
+
import "./shared-utils/three/centerPoint.js";
|
|
74
90
|
import "./shared-utils/three/THREESphere.js";
|
|
75
91
|
import "animejs";
|
|
92
|
+
import "./shared-utils/isNil.js";
|
|
93
|
+
import "./base/BasePlugin.js";
|
|
94
|
+
import "./shared-utils/Utils/FiveUtil.js";
|
|
95
|
+
import "./shared-utils/Utils/BaseUtil.js";
|
|
96
|
+
import "./shared-utils/Utils/WorkUtil.js";
|
|
97
|
+
import "./shared-utils/five/transformPosition.js";
|
|
76
98
|
import "./shared-utils/url/absoluteUrl.js";
|
|
77
|
-
import "./shared-utils/
|
|
78
|
-
import "./shared-utils/
|
|
99
|
+
import "./shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
100
|
+
import "./shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
101
|
+
import "./shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
102
|
+
import "./shared-utils/three/IObject3D.js";
|
|
103
|
+
import "./shared-utils/three/boundingBox.js";
|
|
104
|
+
import "./shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
105
|
+
import "./shared-utils/Object3DHelper/utils/direction.js";
|
|
106
|
+
import "./shared-utils/Object3DHelper/Constants/color.js";
|
|
107
|
+
import "./shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
79
108
|
import "./shared-utils/positionToVector3.js";
|
|
80
109
|
import "./CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
81
110
|
import "./CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
82
111
|
import "./CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
83
|
-
import "./CSS3DRenderPlugin/utils/even.js";
|
|
84
|
-
import "./shared-utils/Subscribe.js";
|
|
85
|
-
import "./CSS3DRenderPlugin/utils/three/CSS3DObject.js";
|
|
86
|
-
import "./CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
87
|
-
import "./shared-utils/three/centerPoint.js";
|
|
88
|
-
import "./shared-utils/three/getObjectVisible.js";
|
|
89
|
-
import "./shared-utils/isNil.js";
|
|
90
112
|
import "./CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
91
113
|
import "./CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
92
114
|
import "./shared-utils/util.js";
|
|
93
115
|
import "./CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
94
|
-
import "./shared-utils/
|
|
116
|
+
import "./shared-utils/Object3DHelper/Helper/RotateHelper.js";
|
|
117
|
+
import "./shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
|
|
118
|
+
import "./shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
|
|
119
|
+
import "./shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
|
|
120
|
+
import "./shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
|
|
121
|
+
import "./shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
122
|
+
import "./shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
123
|
+
import "./shared-utils/Object3DHelper/Base/BaseController.js";
|
|
124
|
+
import "./shared-utils/threex/domevents/index.js";
|
|
125
|
+
import "./shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
126
|
+
import "./shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
127
|
+
import "./Sculpt/utils/three/rayOnLine.js";
|
|
128
|
+
import "./Object3DHelperPlugin/FiveControllerWrapper.js";
|
|
129
|
+
import "./shared-utils/Object3DHelper/index.js";
|
|
130
|
+
import "./shared-utils/Object3DHelper/Controller/RotateController.js";
|
|
131
|
+
import "./shared-utils/math/rad2Deg.js";
|
|
132
|
+
import "./shared-utils/math/deg2Rad.js";
|
|
133
|
+
import "./shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
|
|
134
|
+
import "./shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
|
|
135
|
+
import "./shared-utils/Object3DHelper/utils/vectorIsEqual.js";
|
|
136
|
+
import "./shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
|
|
137
|
+
import "./shared-utils/Object3DHelper/Helper/ScaleHelper.js";
|
|
138
|
+
import "./shared-utils/Object3DHelper/Controller/ScaleController.js";
|
|
139
|
+
import "./shared-utils/five/fiveModelLoad.js";
|
|
140
|
+
import "./shared-utils/three/PointSelector/utils/html.js";
|
|
141
|
+
import "./shared-utils/five/initialCSS3DRender.js";
|
|
142
|
+
import "./shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
143
|
+
import "./Sculpt/Meshes/Line.js";
|
|
144
|
+
import "./Sculpt/typings/style.js";
|
|
95
145
|
import "./shared-utils/five/FiveLine.js";
|
|
146
|
+
import "./shared-utils/tag.js";
|
|
147
|
+
import "./shared-utils/five/vector3ToScreen.js";
|
|
148
|
+
import "./Sculpt/utils/removeAllTag.js";
|
|
149
|
+
import "./CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
150
|
+
import "./shared-utils/isTouchDevice.js";
|
|
151
|
+
import "./shared-utils/five/getPosition.js";
|
|
152
|
+
import "./shared-utils/five/getRaycasterByNdcPosition.js";
|
|
153
|
+
import "./shared-utils/createLine/index.js";
|
|
96
154
|
import "./ModelRoomLabelPlugin/Controller.js";
|
|
97
155
|
import "./ModelRoomLabelPlugin/RoomLabelItems.js";
|
|
98
156
|
import "./vendor/svelte/internal/index.js";
|
|
@@ -127,7 +185,6 @@ import "./floorplan/Components/RoomHighlight/Room.js";
|
|
|
127
185
|
import "./floorplan/Components/MissingFloor.js";
|
|
128
186
|
import "./floorplan/Components/Camera.js";
|
|
129
187
|
import "./floorplan/Assets/camera.js";
|
|
130
|
-
import "./shared-utils/math/rad2Deg.js";
|
|
131
188
|
import "./floorplan/Components/Compass.js";
|
|
132
189
|
import "./floorplan/Assets/compass.js";
|
|
133
190
|
import "./floorplan/utils/formatData.js";
|
|
@@ -136,11 +193,6 @@ import "./shared-utils/filter.js";
|
|
|
136
193
|
import "./shared-utils/tap.js";
|
|
137
194
|
import "./shared-utils/getPxmm.js";
|
|
138
195
|
import "./base/BasePluginWithData.js";
|
|
139
|
-
import "./base/BasePlugin.js";
|
|
140
|
-
import "./shared-utils/Utils/FiveUtil.js";
|
|
141
|
-
import "./shared-utils/Utils/BaseUtil.js";
|
|
142
|
-
import "./shared-utils/Utils/WorkUtil.js";
|
|
143
|
-
import "./shared-utils/five/transformPosition.js";
|
|
144
196
|
import "./floorplan/utils/correctFiveState.js";
|
|
145
197
|
import "./floorplan/utils/constant.js";
|
|
146
198
|
import "./shared-utils/nearlyEqual.js";
|
|
@@ -185,7 +237,6 @@ import "./PanoMeasurePlugin/utils/dom/base.js";
|
|
|
185
237
|
import "./PanoMeasurePlugin/utils/isNDCPointInScreen.js";
|
|
186
238
|
import "./PanoMeasurePlugin/Model/area.js";
|
|
187
239
|
import "./PanoMeasurePlugin/Model/polygon.js";
|
|
188
|
-
import "./shared-utils/three/IObject3D.js";
|
|
189
240
|
import "./shared-utils/three/generatePolygonGeometry.js";
|
|
190
241
|
import "./shared-utils/three/earcut3D.js";
|
|
191
242
|
import "earcut";
|
|
@@ -193,19 +244,6 @@ import "./shared-utils/three/getNormal.js";
|
|
|
193
244
|
import "./PanoMeasurePlugin/utils/dom/areaDom.js";
|
|
194
245
|
import "./shared-utils/three/geometryUtil.js";
|
|
195
246
|
import "./PanoMeasurePlugin/utils/isIntersecting.js";
|
|
196
|
-
import "./shared-utils/three/PointSelector/index.js";
|
|
197
|
-
import "./shared-utils/three/PointSelector/utils/PointSelectorHelper.js";
|
|
198
|
-
import "./shared-utils/three/PointSelector/utils/PointHelper.js";
|
|
199
|
-
import "./shared-utils/three/Assets/index.js";
|
|
200
|
-
import "./shared-utils/three/PointSelector/utils/html.js";
|
|
201
|
-
import "./shared-utils/five/initialCSS3DRender.js";
|
|
202
|
-
import "./shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
203
|
-
import "./Sculpt/Meshes/Line.js";
|
|
204
|
-
import "./Sculpt/typings/style.js";
|
|
205
|
-
import "./CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
206
|
-
import "./shared-utils/isTouchDevice.js";
|
|
207
|
-
import "./shared-utils/five/getPosition.js";
|
|
208
|
-
import "./shared-utils/five/getRaycasterByNdcPosition.js";
|
|
209
247
|
import "./PanoMeasurePlugin/Modules/DeleteDom/index.js";
|
|
210
248
|
import "./PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete.svg.js";
|
|
211
249
|
import "./PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_bg.png.js";
|
|
@@ -220,7 +258,6 @@ import "./PanoMeasurePlugin/Controller/MixedController.js";
|
|
|
220
258
|
import "./PanoMeasurePlugin/Modules/rangePiece/index.js";
|
|
221
259
|
import "./shared-utils/noop.js";
|
|
222
260
|
import "./PanoMeasurePlugin/utils/mouseGroup.js";
|
|
223
|
-
import "./shared-utils/five/calculateThreeMouse.js";
|
|
224
261
|
import "./PanoMeasurePlugin/Modules/UIController/index.js";
|
|
225
262
|
import "./PanoMeasurePlugin/Modules/UIController/HTML.js";
|
|
226
263
|
import "./PanoMeasurePlugin/Modules/UIController/mobileHTML.js";
|
|
@@ -372,8 +409,6 @@ import "./CruisePlugin/utils/sleep.js";
|
|
|
372
409
|
import "./PanoTagPlugin/controller/TagUtil.js";
|
|
373
410
|
import "./PanoTagPlugin/tag.config.js";
|
|
374
411
|
import "./PanoTagPlugin/utils/normalPositionToPositions.js";
|
|
375
|
-
import "./shared-utils/five/FiveDomEvents.js";
|
|
376
|
-
import "./shared-utils/three/THREERaycaster.js";
|
|
377
412
|
import "./PanoTagPlugin/utils/DebugUtil.js";
|
|
378
413
|
import "./PanoTagPlugin/utils/addDebugPoints.js";
|
|
379
414
|
import "./PanoTagPlugin/controller/Tag/PointTag.js";
|
|
@@ -390,36 +425,6 @@ import "./CruisePlugin/utils/coordinatesAngle.js";
|
|
|
390
425
|
import "./CruisePlugin/utils/coordinatesToVector.js";
|
|
391
426
|
import "./CruisePlugin/utils/safeCall.js";
|
|
392
427
|
import "./shared-utils/five/fiveLoaded.js";
|
|
393
|
-
import "./shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
394
|
-
import "./shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
395
|
-
import "./shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
396
|
-
import "./shared-utils/three/boundingBox.js";
|
|
397
|
-
import "./shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
398
|
-
import "./shared-utils/Object3DHelper/utils/direction.js";
|
|
399
|
-
import "./shared-utils/Object3DHelper/Constants/color.js";
|
|
400
|
-
import "./shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
401
|
-
import "./shared-utils/Object3DHelper/Helper/RotateHelper.js";
|
|
402
|
-
import "./shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
|
|
403
|
-
import "./shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
|
|
404
|
-
import "./shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
|
|
405
|
-
import "./shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
|
|
406
|
-
import "./shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
407
|
-
import "./shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
408
|
-
import "./shared-utils/Object3DHelper/Base/BaseController.js";
|
|
409
|
-
import "./shared-utils/threex/domevents/index.js";
|
|
410
|
-
import "./shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
411
|
-
import "./shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
412
|
-
import "./Sculpt/utils/three/rayOnLine.js";
|
|
413
|
-
import "./Object3DHelperPlugin/FiveControllerWrapper.js";
|
|
414
|
-
import "./shared-utils/Object3DHelper/index.js";
|
|
415
|
-
import "./shared-utils/Object3DHelper/Controller/RotateController.js";
|
|
416
|
-
import "./shared-utils/math/deg2Rad.js";
|
|
417
|
-
import "./shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
|
|
418
|
-
import "./shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
|
|
419
|
-
import "./shared-utils/Object3DHelper/utils/vectorIsEqual.js";
|
|
420
|
-
import "./shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
|
|
421
|
-
import "./shared-utils/Object3DHelper/Helper/ScaleHelper.js";
|
|
422
|
-
import "./shared-utils/Object3DHelper/Controller/ScaleController.js";
|
|
423
428
|
import "./PanoVideoPlugin/Controller.js";
|
|
424
429
|
import "./PanoVideoPlugin/VideoMeshController.js";
|
|
425
430
|
import "./PanoVideoPlugin/utils/shader.js";
|
|
@@ -438,8 +443,6 @@ import "./shared-utils/three/objects/LineSegments.js";
|
|
|
438
443
|
import "./components/AreaLabel/LabelItem.js";
|
|
439
444
|
import "./components/AreaLabel/Assets/roomLabelBg.js";
|
|
440
445
|
import "./CurrentPanoImagePlugin/Controller.js";
|
|
441
|
-
import "./Sculpt/utils/Modules/Global.js";
|
|
442
|
-
import "./Sculpt/utils/Modules/Cursor.js";
|
|
443
446
|
import "./shared-utils/three/recurveFindObject.js";
|
|
444
447
|
import "./Sculpt/Objects/Polyline/index.js";
|
|
445
448
|
import "./vendor/hotkeys-js/dist/hotkeys.esm.js";
|
|
@@ -488,8 +491,6 @@ import "./ModelMakerPlugin/item/boxItem.js";
|
|
|
488
491
|
import "./ModelMakerPlugin/item/polygonItem.js";
|
|
489
492
|
import "./ModelMakerPlugin/item/baseItem.js";
|
|
490
493
|
import "./shared-utils/three/addIfNotExists.js";
|
|
491
|
-
import "./shared-utils/tag.js";
|
|
492
|
-
import "./shared-utils/five/vector3ToScreen.js";
|
|
493
494
|
import "./ModelMakerPlugin/utils/getFiveDomEvent.js";
|
|
494
495
|
import "./ModelMakerPlugin/utils/tagRenderer.js";
|
|
495
496
|
import "./ModelMakerPlugin/utils/Text.js";
|
|
@@ -506,72 +507,72 @@ import "./shared-utils/five/lookObject.js";
|
|
|
506
507
|
r();
|
|
507
508
|
o();
|
|
508
509
|
export {
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
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
|
-
|
|
510
|
+
hn as AreaMakerPlugin,
|
|
511
|
+
Jn as CSS3DRender,
|
|
512
|
+
Al as CSS3DRenderPlugin,
|
|
513
|
+
rn as CameraMovementEffect,
|
|
514
|
+
Zl as CameraMovementPlugin,
|
|
515
|
+
ba as ContentType,
|
|
516
|
+
yn as CruisePlugin,
|
|
517
|
+
La as CruisePluginController,
|
|
518
|
+
Ra as CruisePluginTypes,
|
|
519
|
+
wn as CurrentPanoImagePlugin,
|
|
520
|
+
Ln as DIRECTION,
|
|
521
|
+
la as DISPLAY_STRATEGY_TYPE,
|
|
522
|
+
va as DimensionType,
|
|
523
|
+
cl as FLOOR_PLAN_ATTACHED_TO,
|
|
524
|
+
$l as FLOOR_TYPE_MAP,
|
|
525
|
+
sa as GuideLineItem,
|
|
526
|
+
Ma as GuideLineModeItem,
|
|
527
|
+
Sn as GuideLinePlugin,
|
|
528
|
+
ua as ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE,
|
|
529
|
+
xa as ItemLabelPlugin,
|
|
530
|
+
pa as Magnifier,
|
|
531
|
+
kl as MapviewFloorplanPlugin,
|
|
532
|
+
Jl as ModelChassisCompassPlugin,
|
|
533
|
+
Ql as ModelEntryDoorGuidePlugin,
|
|
534
|
+
Nl as ModelFloorplanPlugin,
|
|
535
|
+
aa as ModelItemLabelPlugin,
|
|
536
|
+
$n as ModelMakerPlugin,
|
|
537
|
+
vl as ModelRoomLabelPlugin,
|
|
538
|
+
Mn as ModelTVVideoPlugin,
|
|
539
|
+
Ol as ModelViewPlugin,
|
|
540
|
+
Ea as MoveController,
|
|
541
|
+
An as MovePlugin,
|
|
542
|
+
ca as Object3DHelperController,
|
|
543
|
+
vn as Object3DHelperPlugin,
|
|
544
|
+
Va as PLUGIN,
|
|
545
|
+
El as PaintBrush,
|
|
546
|
+
Rl as PaintBrushTypeEnum,
|
|
547
|
+
an as PanoCompassPlugin,
|
|
548
|
+
Gl as PanoCursorRaycasterPlugin,
|
|
549
|
+
In as PanoDoorLabelPlugin,
|
|
550
|
+
Ul as PanoFloorplanRadarPlugin,
|
|
551
|
+
un as PanoMeasurePlugin,
|
|
552
|
+
ra as PanoMeasurePluginLine,
|
|
553
|
+
Qn as PanoMeasurePluginModel,
|
|
554
|
+
Zn as PanoMeasurePluginPoint,
|
|
555
|
+
ia as PanoMeasurePluginPolyline,
|
|
556
|
+
pn as PanoRulerPlugin,
|
|
557
|
+
ln as PanoRulerProPlugin,
|
|
558
|
+
xn as PanoSpatialTagPlugin,
|
|
559
|
+
Gn as PanoTagPlugin,
|
|
560
|
+
Oa as PanoTagPluginController,
|
|
561
|
+
Yn as PanoVideoPlugin,
|
|
562
|
+
ha as PanoVideoPluginType,
|
|
563
|
+
Vn as PipelinePlugin,
|
|
564
|
+
Fa as PointType,
|
|
565
|
+
Wl as ROOM_FETILE_TYPE_MAP,
|
|
566
|
+
ql as ROOM_TYPE_MAP,
|
|
567
|
+
tn as Rotation,
|
|
568
|
+
Hn as Sculpt,
|
|
569
|
+
Un as SculptPlugin,
|
|
570
|
+
Bl as TopviewFloorplanPlugin,
|
|
571
|
+
qn as Util,
|
|
572
|
+
Ca as WalkController,
|
|
573
|
+
Da as defaultGlobalConfig,
|
|
574
|
+
_n as itemLabelPluginServerParams,
|
|
575
|
+
sn as modelItemLabelPluginServerParams,
|
|
576
|
+
Fl as modelRoomLabelPluginServerParams,
|
|
577
|
+
ya as pluginFlag
|
|
577
578
|
};
|
|
@@ -3,11 +3,12 @@ import "hammerjs";
|
|
|
3
3
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
4
4
|
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
5
5
|
import "@realsee/five/line";
|
|
6
|
+
import "../../Sculpt/utils/Modules/Global.js";
|
|
6
7
|
import "../three/THREESphere.js";
|
|
7
8
|
import "animejs";
|
|
8
|
-
function
|
|
9
|
+
function f(e) {
|
|
9
10
|
return e.model ? e.work ? e.model.loaded ? e.model.name !== e.work.model.file ? { result: !1, msg: "five.model.name 与 five.work.model.file 不一致" } : { result: !0, msg: "" } : { result: !1, msg: "five.model 未加载完成" } : { result: !1, msg: "five 数据未加载" } : { result: !1, msg: "five.model 不存在" };
|
|
10
11
|
}
|
|
11
12
|
export {
|
|
12
|
-
|
|
13
|
+
f as checkFiveModelLoaded
|
|
13
14
|
};
|
|
@@ -33,9 +33,10 @@ import { FiveUtil as O } from "../Utils/FiveUtil.js";
|
|
|
33
33
|
import { notNil as Y } from "../isNil.js";
|
|
34
34
|
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
35
35
|
import "@realsee/five/line";
|
|
36
|
+
import "../../Sculpt/utils/Modules/Global.js";
|
|
36
37
|
import { worldBoundingSphere as j } from "../three/boundingBox.js";
|
|
37
38
|
import "animejs";
|
|
38
|
-
function
|
|
39
|
+
function tt(e, o, t) {
|
|
39
40
|
return g(this, null, function* () {
|
|
40
41
|
var P, x, z;
|
|
41
42
|
if (!o)
|
|
@@ -78,5 +79,5 @@ function $(e, o, t) {
|
|
|
78
79
|
});
|
|
79
80
|
}
|
|
80
81
|
export {
|
|
81
|
-
|
|
82
|
+
tt as lookObject
|
|
82
83
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
function A() {
|
|
2
2
|
console.debug(
|
|
3
|
-
"%c %c@realsee/dnalogel %cv3.
|
|
3
|
+
"%c %c@realsee/dnalogel %cv3.46.1",
|
|
4
4
|
[
|
|
5
5
|
"background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAMCAMAAACHgmeRAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAABLFBMVEUAAAAapPoap/oaqvkbrfkbr/gZnfwZoPsaqfnD4v/E4/8Ylv0clPm93/+/4P/B4f8Yj/683/8Wif+33P8Uhv+x2f8ShP+s1v8Pgf+n0/8Nf/+h0f8Lff8Lff8Nf/9dl/+czv8KfP8KfP+Lxf+Uyv+Xy/+Hwv+Jw/+Mxf+Oxv+RyP8aovsapfoap/oZmfwZm/wZnvsYnPsYkf4YlP0NePsDYfgYcfi43f+63v8Xiv8Xjf4EWfwCV/sWZ/qz2v+02/8Vh/8WiP8EUf8CTf4WXv2u1/+v2P8Thf8Thv8ETf8CR/8VV/+o1f+q1f8Qgv8Rg/8DSv8BRf8UVP+j0v+k0v8OgP8Pgf8DR/8DQv9Nhf+dzv+fz/+Kv/+Vyv+Xy/+azf+Oxv+Qx/+SyP////8MUhLdAAAAK3RSTlMACEWQ2bd98uQECPXxqO7c+Pb49vj2+Pb49vj23Oul8fMHA+TwerXXjEIG2P+bHgAAAAFiS0dEY1y+LaoAAAB+SURBVAjXY2BgZGJmYWVgYGBgY9fW0eVg4ORi4NbTNzDk4eXjZxAwMjYxNTO3EGQQsrSytrG1sxdmEHFwdHJ2cXUTZRBz9/D08vbxFWeQ8PMPCAwKDpFkkAoNC4+IjIqWZpCRlZOPiY2LV2BQVGJQTkhMUlEFWaOmrqGpxQAAyg0S9Dq+VPYAAAAASUVORK5CYII=')",
|
|
6
6
|
"background-repeat: no-repeat",
|
|
@@ -6,12 +6,13 @@ export declare class LightTag {
|
|
|
6
6
|
visible: boolean;
|
|
7
7
|
enabled: boolean;
|
|
8
8
|
wrapper: HTMLElement;
|
|
9
|
+
private tagWrapper;
|
|
9
10
|
private five;
|
|
10
|
-
private originPosition
|
|
11
|
-
private transformedPosition
|
|
11
|
+
private originPosition?;
|
|
12
|
+
private transformedPosition?;
|
|
12
13
|
private disposer;
|
|
13
14
|
private config;
|
|
14
|
-
constructor(five: Five, position
|
|
15
|
+
constructor(five: Five, position?: AnyPosition, config?: {
|
|
15
16
|
wrapper?: HTMLElement;
|
|
16
17
|
});
|
|
17
18
|
show(): void;
|
|
@@ -20,7 +21,9 @@ export declare class LightTag {
|
|
|
20
21
|
}): void;
|
|
21
22
|
enable(): void;
|
|
22
23
|
disable(): void;
|
|
24
|
+
destroy(): void;
|
|
23
25
|
setTransformMatrix(matrix: THREE.Matrix4): void;
|
|
26
|
+
setPosition(position: THREE.Vector3): void;
|
|
24
27
|
updateScreenPosition(): void;
|
|
25
28
|
private onCameraUpdate;
|
|
26
29
|
private onFiveEveryReady;
|