@realsee/dnalogel 3.50.17-alpha.0 → 3.51.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 +3 -0
- package/dist/ModelMakerPlugin/Controller.d.ts +2 -0
- package/dist/Sculpt/utils/export.d.ts +18 -0
- package/dist/index.cjs.js +207 -207
- package/dist/index.js +34866 -34775
- package/dist/index.umd.js +211 -211
- package/dist/shared-utils/five/fiveEveryReadyListener.d.ts +2 -0
- package/dist/shared-utils/index.d.ts +1 -0
- package/dist/shared-utils/tag.d.ts +40 -1
- package/dist/shared-utils/three/temp.d.ts +2 -2
- package/libs/AreaMakerPlugin/Controller.js +100 -46
- package/libs/AreaMakerPlugin/index.js +64 -10
- package/libs/AreaMakerPlugin/utils/Item.js +156 -100
- package/libs/CSS3DRenderPlugin/Controller.js +93 -44
- package/libs/CSS3DRenderPlugin/index.js +62 -13
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +105 -49
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +130 -77
- package/libs/CruisePlugin/BaseController.js +143 -89
- package/libs/CruisePlugin/Move.js +83 -39
- package/libs/CruisePlugin/Work.js +95 -51
- package/libs/CruisePlugin/index.js +66 -22
- package/libs/CurrentPanoImagePlugin/Controller.js +139 -85
- package/libs/CurrentPanoImagePlugin/index.js +63 -9
- package/libs/GuideLinePlugin/Controller.js +57 -13
- package/libs/GuideLinePlugin/GuideLineItem.js +63 -19
- package/libs/GuideLinePlugin/GuideLineModeItem/index.js +6 -2
- package/libs/GuideLinePlugin/GuideLineModeItem.js +58 -14
- package/libs/GuideLinePlugin/index.js +66 -22
- package/libs/ModelMakerPlugin/Controller.d.ts +2 -0
- package/libs/ModelMakerPlugin/Controller.js +190 -129
- package/libs/ModelMakerPlugin/index.js +63 -21
- package/libs/ModelMakerPlugin/item/baseItem.js +4 -2
- package/libs/ModelMakerPlugin/item/boxItem.js +5 -3
- package/libs/ModelMakerPlugin/item/polygonItem.js +9 -7
- package/libs/ModelMakerPlugin/item/prismItem.js +5 -3
- package/libs/ModelTVVideoPlugin/Plugin.js +96 -47
- package/libs/ModelTVVideoPlugin/index.js +55 -6
- package/libs/Object3DHelperPlugin/Controller.js +42 -25
- package/libs/Object3DHelperPlugin/index.js +28 -12
- package/libs/PanoCompassPlugin/Controller.js +92 -44
- package/libs/PanoCompassPlugin/index.js +63 -15
- package/libs/PanoDoorLabelPlugin/BaseController.js +79 -25
- package/libs/PanoDoorLabelPlugin/Controller.js +132 -78
- package/libs/PanoDoorLabelPlugin/index.js +63 -9
- package/libs/PanoMeasurePlugin/Components/Controller0.js +126 -77
- package/libs/PanoMeasurePlugin/Components/Controller1.js +139 -90
- package/libs/PanoMeasurePlugin/Controller/EditController.js +120 -71
- package/libs/PanoMeasurePlugin/Controller/WatchController.js +120 -70
- package/libs/PanoMeasurePlugin/Controller/index.js +132 -86
- package/libs/PanoMeasurePlugin/Model/area.js +72 -22
- package/libs/PanoMeasurePlugin/Modules/Magnifier.js +56 -0
- package/libs/PanoMeasurePlugin/Modules/UIController/index.js +64 -15
- package/libs/PanoMeasurePlugin/index.js +62 -16
- package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +57 -2
- package/libs/PanoRulerProPlugin/Controller.js +88 -33
- package/libs/PanoRulerProPlugin/RulerItems.js +146 -91
- package/libs/PanoRulerProPlugin/index.js +64 -9
- package/libs/PanoSpatialTagPlugin/Plugin.js +177 -128
- package/libs/PanoSpatialTagPlugin/index.js +53 -4
- package/libs/PanoTagPlugin/Components/Common/TagPoint.js +116 -60
- package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +192 -136
- package/libs/PanoTagPlugin/Components/Tag/index.js +194 -139
- package/libs/PanoTagPlugin/Components/TagContainer.js +112 -57
- package/libs/PanoTagPlugin/Components/TagItem.js +204 -149
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +157 -101
- package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +75 -20
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +86 -31
- package/libs/PanoTagPlugin/controller/Tag/PointTag.js +93 -37
- package/libs/PanoTagPlugin/controller/TagRender.js +62 -18
- package/libs/PanoTagPlugin/controller/TagUtil.js +123 -79
- package/libs/PanoTagPlugin/controller/index.js +110 -72
- package/libs/PanoTagPlugin/index.js +72 -28
- package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +77 -21
- package/libs/PanoVideoPlugin/Controller.js +95 -41
- package/libs/PanoVideoPlugin/VideoMeshController.js +119 -63
- package/libs/PanoVideoPlugin/index.js +66 -12
- package/libs/PipelinePlugin/Controller.js +173 -119
- package/libs/PipelinePlugin/index.js +63 -9
- package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +70 -14
- package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +58 -2
- package/libs/PipelinePlugin/utils/Objects/Pipe.js +98 -42
- package/libs/Sculpt/Meshes/Box.js +3 -2
- package/libs/Sculpt/Meshes/Cylinder.js +10 -6
- package/libs/Sculpt/Meshes/Line.js +43 -38
- package/libs/Sculpt/Meshes/LineWithDots.js +14 -10
- package/libs/Sculpt/Meshes/Point.js +24 -20
- package/libs/Sculpt/Meshes/Polygon.js +5 -2
- package/libs/Sculpt/Meshes/Prism.js +19 -16
- package/libs/Sculpt/Objects/Line/Editor.js +6 -5
- package/libs/Sculpt/index.js +15 -14
- package/libs/Sculpt/utils/export.d.ts +18 -0
- package/libs/Sculpt/utils/export.js +21 -0
- package/libs/Sculpt/utils/three/ColoredMesh.js +26 -22
- package/libs/base/BasePlugin.js +14 -10
- package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +146 -94
- package/libs/floorplan/MapviewFloorplanPlugin/index.js +62 -10
- package/libs/floorplan/ModelFloorplanPlugin/Controller.js +109 -56
- package/libs/floorplan/ModelFloorplanPlugin/index.js +62 -9
- package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +116 -63
- package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +62 -9
- package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +105 -52
- package/libs/floorplan/TopviewFloorplanPlugin/index.js +62 -9
- package/libs/floorplan/index.js +4 -0
- package/libs/index.js +208 -206
- package/libs/shared-utils/five/fiveEveryReadyListener.d.ts +2 -0
- package/libs/shared-utils/five/fiveEveryReadyListener.js +15 -0
- package/libs/shared-utils/five/index.js +6 -2
- package/libs/shared-utils/five/lookObject.js +31 -27
- package/libs/shared-utils/index.d.ts +1 -0
- package/libs/shared-utils/index.js +19 -17
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/tag.d.ts +40 -1
- package/libs/shared-utils/tag.js +139 -86
- package/libs/shared-utils/three/index.js +4 -0
- package/libs/shared-utils/three/temp.d.ts +2 -2
- package/libs/shared-utils/three/temp.js +4 -4
- package/package.json +1 -1
- package/README.md +0 -116
|
@@ -5,7 +5,7 @@ import "../shared-utils/five/changeMode.js";
|
|
|
5
5
|
import "../CruisePlugin/Move.js";
|
|
6
6
|
import "../CruisePlugin/Work.js";
|
|
7
7
|
import "../shared-utils/Subscribe.js";
|
|
8
|
-
import { GuideLineItem as
|
|
8
|
+
import { GuideLineItem as Ur } from "./GuideLineItem/index.js";
|
|
9
9
|
import "three";
|
|
10
10
|
import "./utils/createLineGeometry.js";
|
|
11
11
|
import "../vendor/polyline-normals/index.js";
|
|
@@ -25,7 +25,10 @@ import "../shared-utils/Utils/BaseUtil.js";
|
|
|
25
25
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
26
26
|
import "../shared-utils/five/transformPosition.js";
|
|
27
27
|
import "../shared-utils/three/temp.js";
|
|
28
|
+
import "../shared-utils/three/core/Raycaster.js";
|
|
28
29
|
import "../shared-utils/dom/resizeObserver.js";
|
|
30
|
+
import "../shared-utils/five/fiveEveryReadyListener.js";
|
|
31
|
+
import "../shared-utils/throttle.js";
|
|
29
32
|
import "../shared-utils/five/mode.js";
|
|
30
33
|
import "hammerjs";
|
|
31
34
|
import "../shared-utils/three/PointSelector/index.js";
|
|
@@ -47,22 +50,75 @@ import "../shared-utils/three/core/Sphere.js";
|
|
|
47
50
|
import "animejs";
|
|
48
51
|
import "../shared-utils/isNil.js";
|
|
49
52
|
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
50
|
-
import "../
|
|
51
|
-
import "../shared-utils/
|
|
53
|
+
import "../Sculpt/Meshes/Polygon.js";
|
|
54
|
+
import "../shared-utils/three/generatePolygonGeometry.js";
|
|
55
|
+
import "../shared-utils/three/earcut3D.js";
|
|
56
|
+
import "earcut";
|
|
57
|
+
import "../shared-utils/three/getNormal.js";
|
|
58
|
+
import "../PanoMeasurePlugin/utils/isIntersecting.js";
|
|
59
|
+
import "../Sculpt/typings/style.js";
|
|
60
|
+
import "../Sculpt/utils/three/ColoredMesh.js";
|
|
61
|
+
import "../shared-utils/three/IObject3D.js";
|
|
62
|
+
import "../Sculpt/utils/Modules/Global.js";
|
|
63
|
+
import "../Sculpt/utils/Modules/Cursor.js";
|
|
64
|
+
import "../Object3DHelperPlugin/Controller.js";
|
|
65
|
+
import "../base/BasePlugin.js";
|
|
66
|
+
import "../shared-utils/url/absoluteUrl.js";
|
|
67
|
+
import "../vendor/hotkeys-js/dist/hotkeys.esm.js";
|
|
68
|
+
import "../Sculpt/utils/three/rayOnLine.js";
|
|
69
|
+
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
70
|
+
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
71
|
+
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
72
|
+
import "../shared-utils/three/boundingBox.js";
|
|
73
|
+
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
74
|
+
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
75
|
+
import "../shared-utils/Object3DHelper/Constants/color.js";
|
|
76
|
+
import "../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
77
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
52
78
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
53
79
|
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
54
80
|
import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
81
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
82
|
+
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
83
|
+
import "../shared-utils/util.js";
|
|
84
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
85
|
+
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
86
|
+
import "../shared-utils/five/initialCSS3DRender.js";
|
|
55
87
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
56
88
|
import "../Sculpt/Meshes/Line.js";
|
|
57
|
-
import "../Sculpt/typings/style.js";
|
|
58
89
|
import "../shared-utils/five/FiveLine.js";
|
|
59
|
-
import "../shared-utils/three/IObject3D.js";
|
|
60
90
|
import "../Sculpt/utils/removeAllTag.js";
|
|
61
91
|
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
62
92
|
import "../shared-utils/three/applyObjectMatrixWorld.js";
|
|
63
|
-
import "../shared-utils/util.js";
|
|
64
93
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.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";
|
|
65
120
|
import "../shared-utils/isTouchDevice.js";
|
|
121
|
+
import "../shared-utils/three/geometryUtil.js";
|
|
66
122
|
import "../shared-utils/five/getPosition.js";
|
|
67
123
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
68
124
|
import "../shared-utils/three/PointSelector/utils/contents.js";
|
|
@@ -159,7 +215,6 @@ import "../shared-utils/three/loadVideoTexture.js";
|
|
|
159
215
|
import "../shared-utils/device.js";
|
|
160
216
|
import "../shared-utils/three/getPositionsByObjectFit.js";
|
|
161
217
|
import "../shared-utils/three/FragmentTransparencyMaterial.js";
|
|
162
|
-
import "../shared-utils/three/getNormal.js";
|
|
163
218
|
import "../PanoTagPlugin/controller/Tag/BaseTag.js";
|
|
164
219
|
import "../PanoTagPlugin/utils/tag/calculateTagConfig.js";
|
|
165
220
|
import "../shared-utils/typescript/entries.js";
|
|
@@ -181,17 +236,6 @@ import "../PanoTagPlugin/utils/normalPositionToPositions.js";
|
|
|
181
236
|
import "../vendor/svelte/store/index.js";
|
|
182
237
|
import "../CSS3DRenderPlugin/index.js";
|
|
183
238
|
import "../CSS3DRenderPlugin/Controller.js";
|
|
184
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
185
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
186
|
-
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
187
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
188
|
-
import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
189
|
-
import "../shared-utils/five/fiveModelLoad.js";
|
|
190
|
-
import "../shared-utils/url/absoluteUrl.js";
|
|
191
|
-
import "../shared-utils/five/FiveDomEvents.js";
|
|
192
|
-
import "../shared-utils/five/calculateThreeMouse.js";
|
|
193
|
-
import "../shared-utils/three/core/Raycaster.js";
|
|
194
|
-
import "../base/BasePlugin.js";
|
|
195
239
|
import "../PanoTagPlugin/utils/DebugUtil.js";
|
|
196
240
|
import "../PanoTagPlugin/utils/addDebugPoints.js";
|
|
197
241
|
import "../PanoTagPlugin/controller/Tag/PointTag.js";
|
|
@@ -215,5 +259,5 @@ import "../CruisePlugin/utils/safeCall.js";
|
|
|
215
259
|
import "../CruisePlugin/utils/sleep.js";
|
|
216
260
|
import "../shared-utils/five/fiveLoaded.js";
|
|
217
261
|
export {
|
|
218
|
-
|
|
262
|
+
Ur as GuideLineItem
|
|
219
263
|
};
|
|
@@ -25,6 +25,10 @@ import "../../shared-utils/three/core/Sphere.js";
|
|
|
25
25
|
import { blink as O } from "../../shared-utils/three/blink.js";
|
|
26
26
|
import { notNil as C } from "../../shared-utils/isNil.js";
|
|
27
27
|
import { BetterTween as _ } from "../../shared-utils/animationFrame/BetterTween.js";
|
|
28
|
+
import "../../Sculpt/Meshes/Polygon.js";
|
|
29
|
+
import "../../Sculpt/utils/Modules/Global.js";
|
|
30
|
+
import "../../vendor/hotkeys-js/dist/hotkeys.esm.js";
|
|
31
|
+
import "../../Sculpt/utils/three/rayOnLine.js";
|
|
28
32
|
import { loadTexture as A } from "../../shared-utils/three/loadTexture.js";
|
|
29
33
|
import V from "../../PanoTagPlugin/controller/index.js";
|
|
30
34
|
import E from "../Components/Tag.js";
|
|
@@ -567,11 +571,11 @@ class R {
|
|
|
567
571
|
function H(m) {
|
|
568
572
|
return m.contentType === "Custom";
|
|
569
573
|
}
|
|
570
|
-
const
|
|
574
|
+
const pe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
571
575
|
__proto__: null,
|
|
572
576
|
GuideLineModeItem: R
|
|
573
577
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
574
578
|
export {
|
|
575
579
|
R as GuideLineModeItem,
|
|
576
|
-
|
|
580
|
+
pe as GuideLineModeItem$1
|
|
577
581
|
};
|
|
@@ -12,12 +12,16 @@ import "../shared-utils/three/core/Sphere.js";
|
|
|
12
12
|
import "../shared-utils/three/blink.js";
|
|
13
13
|
import "../shared-utils/isNil.js";
|
|
14
14
|
import "../shared-utils/animationFrame/BetterTween.js";
|
|
15
|
+
import "../Sculpt/Meshes/Polygon.js";
|
|
16
|
+
import "../Sculpt/utils/Modules/Global.js";
|
|
17
|
+
import "../vendor/hotkeys-js/dist/hotkeys.esm.js";
|
|
18
|
+
import "../Sculpt/utils/three/rayOnLine.js";
|
|
15
19
|
import "../shared-utils/three/loadTexture.js";
|
|
16
20
|
import "../PanoTagPlugin/controller/index.js";
|
|
17
21
|
import "./Components/Tag.js";
|
|
18
22
|
import "./utils/index.js";
|
|
19
23
|
import "../vendor/object-assign-deep/objectAssignDeep.js";
|
|
20
|
-
import { GuideLineModeItem as
|
|
24
|
+
import { GuideLineModeItem as yr } from "./GuideLineModeItem/index.js";
|
|
21
25
|
import "../vendor/polyline-normals/index.js";
|
|
22
26
|
import "../vendor/polyline-miter-util/index.js";
|
|
23
27
|
import "../vendor/gl-vec2/add.js";
|
|
@@ -35,7 +39,10 @@ import "../shared-utils/Subscribe.js";
|
|
|
35
39
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
36
40
|
import "../shared-utils/five/transformPosition.js";
|
|
37
41
|
import "../shared-utils/three/temp.js";
|
|
42
|
+
import "../shared-utils/three/core/Raycaster.js";
|
|
38
43
|
import "../shared-utils/dom/resizeObserver.js";
|
|
44
|
+
import "../shared-utils/five/fiveEveryReadyListener.js";
|
|
45
|
+
import "../shared-utils/throttle.js";
|
|
39
46
|
import "../shared-utils/three/PointSelector/utils/PointSelectorHelper.js";
|
|
40
47
|
import "../shared-utils/three/Magnifier.js";
|
|
41
48
|
import "../shared-utils/three/PointSelector/utils/PointHelper.js";
|
|
@@ -68,6 +75,55 @@ import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
|
68
75
|
import "../shared-utils/three/PointSelector/utils/contents.js";
|
|
69
76
|
import "../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
70
77
|
import "../vendor/three/build/three.module.js";
|
|
78
|
+
import "../shared-utils/three/generatePolygonGeometry.js";
|
|
79
|
+
import "../shared-utils/three/earcut3D.js";
|
|
80
|
+
import "earcut";
|
|
81
|
+
import "../shared-utils/three/getNormal.js";
|
|
82
|
+
import "../PanoMeasurePlugin/utils/isIntersecting.js";
|
|
83
|
+
import "../Sculpt/utils/three/ColoredMesh.js";
|
|
84
|
+
import "../shared-utils/three/geometryUtil.js";
|
|
85
|
+
import "../Sculpt/utils/Modules/Cursor.js";
|
|
86
|
+
import "../Object3DHelperPlugin/Controller.js";
|
|
87
|
+
import "../base/BasePlugin.js";
|
|
88
|
+
import "../shared-utils/url/absoluteUrl.js";
|
|
89
|
+
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
90
|
+
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
91
|
+
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
92
|
+
import "../shared-utils/three/boundingBox.js";
|
|
93
|
+
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
94
|
+
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
95
|
+
import "../shared-utils/Object3DHelper/Constants/color.js";
|
|
96
|
+
import "../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
97
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
98
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
99
|
+
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
100
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
101
|
+
import "../shared-utils/Object3DHelper/Helper/RotateHelper.js";
|
|
102
|
+
import "../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
|
|
103
|
+
import "../shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
|
|
104
|
+
import "../shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
|
|
105
|
+
import "../shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
|
|
106
|
+
import "../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
107
|
+
import "../shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
108
|
+
import "../shared-utils/Object3DHelper/Base/BaseController.js";
|
|
109
|
+
import "../shared-utils/threex/domevents/index.js";
|
|
110
|
+
import "../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
111
|
+
import "../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
112
|
+
import "../Object3DHelperPlugin/FiveControllerWrapper.js";
|
|
113
|
+
import "../shared-utils/Object3DHelper/index.js";
|
|
114
|
+
import "../shared-utils/Object3DHelper/Controller/RotateController.js";
|
|
115
|
+
import "../shared-utils/math/rad2Deg.js";
|
|
116
|
+
import "../shared-utils/math/deg2Rad.js";
|
|
117
|
+
import "../shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
|
|
118
|
+
import "../shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
|
|
119
|
+
import "../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
|
|
120
|
+
import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
121
|
+
import "../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
|
|
122
|
+
import "../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
|
|
123
|
+
import "../shared-utils/Object3DHelper/Controller/ScaleController.js";
|
|
124
|
+
import "../shared-utils/five/fiveModelLoad.js";
|
|
125
|
+
import "../shared-utils/five/FiveDomEvents.js";
|
|
126
|
+
import "../shared-utils/five/calculateThreeMouse.js";
|
|
71
127
|
import "../shared-utils/animationFrame/index.js";
|
|
72
128
|
import "../PanoTagPlugin/utils/tag/tagCheck.js";
|
|
73
129
|
import "../PanoTagPlugin/utils/debounce.js";
|
|
@@ -156,7 +212,6 @@ import "../shared-utils/three/loadVideoTexture.js";
|
|
|
156
212
|
import "../shared-utils/device.js";
|
|
157
213
|
import "../shared-utils/three/getPositionsByObjectFit.js";
|
|
158
214
|
import "../shared-utils/three/FragmentTransparencyMaterial.js";
|
|
159
|
-
import "../shared-utils/three/getNormal.js";
|
|
160
215
|
import "../PanoTagPlugin/controller/Tag/BaseTag.js";
|
|
161
216
|
import "../PanoTagPlugin/utils/tag/calculateTagConfig.js";
|
|
162
217
|
import "../shared-utils/typescript/entries.js";
|
|
@@ -178,17 +233,6 @@ import "../PanoTagPlugin/utils/normalPositionToPositions.js";
|
|
|
178
233
|
import "../vendor/svelte/store/index.js";
|
|
179
234
|
import "../CSS3DRenderPlugin/index.js";
|
|
180
235
|
import "../CSS3DRenderPlugin/Controller.js";
|
|
181
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
182
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
183
|
-
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
184
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
185
|
-
import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
186
|
-
import "../shared-utils/five/fiveModelLoad.js";
|
|
187
|
-
import "../shared-utils/url/absoluteUrl.js";
|
|
188
|
-
import "../shared-utils/five/FiveDomEvents.js";
|
|
189
|
-
import "../shared-utils/five/calculateThreeMouse.js";
|
|
190
|
-
import "../shared-utils/three/core/Raycaster.js";
|
|
191
|
-
import "../base/BasePlugin.js";
|
|
192
236
|
import "../PanoTagPlugin/utils/DebugUtil.js";
|
|
193
237
|
import "../PanoTagPlugin/utils/addDebugPoints.js";
|
|
194
238
|
import "../PanoTagPlugin/controller/Tag/PointTag.js";
|
|
@@ -197,5 +241,5 @@ import "../PanoTagPlugin/Components/TagContainer.js";
|
|
|
197
241
|
import "../PanoTagPlugin/Components/TagItem.js";
|
|
198
242
|
import "../PanoTagPlugin/Components/Common/TagPoint.js";
|
|
199
243
|
export {
|
|
200
|
-
|
|
244
|
+
yr as GuideLineModeItem
|
|
201
245
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import t from "./Controller.js";
|
|
2
|
-
import { GuideLineItem$1 as
|
|
3
|
-
import { GuideLineModeItem$1 as
|
|
2
|
+
import { GuideLineItem$1 as Xr } from "./GuideLineItem/index.js";
|
|
3
|
+
import { GuideLineModeItem$1 as Zr } from "./GuideLineModeItem/index.js";
|
|
4
4
|
import "../base/BasePluginWithData.js";
|
|
5
5
|
import "../base/BasePlugin.js";
|
|
6
6
|
import "../shared-utils/Subscribe.js";
|
|
@@ -14,7 +14,10 @@ import "../shared-utils/Utils/BaseUtil.js";
|
|
|
14
14
|
import "../shared-utils/Utils/WorkUtil.js";
|
|
15
15
|
import "../shared-utils/five/transformPosition.js";
|
|
16
16
|
import "../shared-utils/three/temp.js";
|
|
17
|
+
import "../shared-utils/three/core/Raycaster.js";
|
|
17
18
|
import "../shared-utils/dom/resizeObserver.js";
|
|
19
|
+
import "../shared-utils/five/fiveEveryReadyListener.js";
|
|
20
|
+
import "../shared-utils/throttle.js";
|
|
18
21
|
import "hammerjs";
|
|
19
22
|
import "../shared-utils/three/PointSelector/index.js";
|
|
20
23
|
import "../shared-utils/three/PointSelector/utils/PointSelectorHelper.js";
|
|
@@ -35,27 +38,77 @@ import "../shared-utils/three/core/Sphere.js";
|
|
|
35
38
|
import "animejs";
|
|
36
39
|
import "../shared-utils/isNil.js";
|
|
37
40
|
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
38
|
-
import "../
|
|
39
|
-
import "../shared-utils/
|
|
41
|
+
import "../Sculpt/Meshes/Polygon.js";
|
|
42
|
+
import "../shared-utils/three/generatePolygonGeometry.js";
|
|
43
|
+
import "../shared-utils/three/earcut3D.js";
|
|
44
|
+
import "earcut";
|
|
45
|
+
import "../shared-utils/three/getNormal.js";
|
|
46
|
+
import "../PanoMeasurePlugin/utils/isIntersecting.js";
|
|
47
|
+
import "../Sculpt/typings/style.js";
|
|
48
|
+
import "../Sculpt/utils/three/ColoredMesh.js";
|
|
49
|
+
import "../shared-utils/three/IObject3D.js";
|
|
50
|
+
import "../Sculpt/utils/Modules/Global.js";
|
|
51
|
+
import "../Sculpt/utils/Modules/Cursor.js";
|
|
52
|
+
import "../Object3DHelperPlugin/Controller.js";
|
|
53
|
+
import "../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
54
|
+
import "../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
55
|
+
import "../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
56
|
+
import "../shared-utils/three/boundingBox.js";
|
|
57
|
+
import "../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
58
|
+
import "../shared-utils/Object3DHelper/utils/direction.js";
|
|
59
|
+
import "../shared-utils/Object3DHelper/Constants/color.js";
|
|
60
|
+
import "../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
61
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
40
62
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
41
63
|
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
42
64
|
import "../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
65
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
66
|
+
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
67
|
+
import "../shared-utils/util.js";
|
|
68
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
69
|
+
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
70
|
+
import "../shared-utils/five/initialCSS3DRender.js";
|
|
43
71
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
44
72
|
import "../Sculpt/Meshes/Line.js";
|
|
45
|
-
import "../Sculpt/typings/style.js";
|
|
46
73
|
import "../shared-utils/five/FiveLine.js";
|
|
47
|
-
import "../shared-utils/three/IObject3D.js";
|
|
48
74
|
import "../Sculpt/utils/removeAllTag.js";
|
|
49
75
|
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
50
76
|
import "../shared-utils/three/applyObjectMatrixWorld.js";
|
|
51
|
-
import "../
|
|
77
|
+
import "../vendor/hotkeys-js/dist/hotkeys.esm.js";
|
|
78
|
+
import "../Sculpt/utils/three/rayOnLine.js";
|
|
52
79
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
80
|
+
import "../shared-utils/url/absoluteUrl.js";
|
|
81
|
+
import "../shared-utils/Object3DHelper/Helper/RotateHelper.js";
|
|
82
|
+
import "../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
|
|
83
|
+
import "../shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
|
|
84
|
+
import "../shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
|
|
85
|
+
import "../shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
|
|
86
|
+
import "../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
87
|
+
import "../shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
88
|
+
import "../shared-utils/Object3DHelper/Base/BaseController.js";
|
|
89
|
+
import "../shared-utils/threex/domevents/index.js";
|
|
90
|
+
import "../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
91
|
+
import "../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
92
|
+
import "../Object3DHelperPlugin/FiveControllerWrapper.js";
|
|
93
|
+
import "../shared-utils/Object3DHelper/index.js";
|
|
94
|
+
import "../shared-utils/Object3DHelper/Controller/RotateController.js";
|
|
95
|
+
import "../shared-utils/math/rad2Deg.js";
|
|
96
|
+
import "../shared-utils/math/deg2Rad.js";
|
|
97
|
+
import "../shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
|
|
98
|
+
import "../shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
|
|
99
|
+
import "../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
|
|
100
|
+
import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
101
|
+
import "../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
|
|
102
|
+
import "../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
|
|
103
|
+
import "../shared-utils/Object3DHelper/Controller/ScaleController.js";
|
|
104
|
+
import "../shared-utils/five/fiveModelLoad.js";
|
|
105
|
+
import "../shared-utils/five/FiveDomEvents.js";
|
|
106
|
+
import "../shared-utils/five/calculateThreeMouse.js";
|
|
53
107
|
import "../shared-utils/isTouchDevice.js";
|
|
108
|
+
import "../shared-utils/three/geometryUtil.js";
|
|
54
109
|
import "../shared-utils/five/getPosition.js";
|
|
55
110
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
56
111
|
import "../shared-utils/three/PointSelector/utils/contents.js";
|
|
57
|
-
import "../shared-utils/url/absoluteUrl.js";
|
|
58
|
-
import "../shared-utils/five/fiveModelLoad.js";
|
|
59
112
|
import "../shared-utils/uuid.js";
|
|
60
113
|
import "../shared-utils/equal.js";
|
|
61
114
|
import "../shared-utils/isTruelyObject.js";
|
|
@@ -172,7 +225,6 @@ import "../shared-utils/three/loadVideoTexture.js";
|
|
|
172
225
|
import "../shared-utils/device.js";
|
|
173
226
|
import "../shared-utils/three/getPositionsByObjectFit.js";
|
|
174
227
|
import "../shared-utils/three/FragmentTransparencyMaterial.js";
|
|
175
|
-
import "../shared-utils/three/getNormal.js";
|
|
176
228
|
import "../PanoTagPlugin/controller/Tag/BaseTag.js";
|
|
177
229
|
import "../PanoTagPlugin/utils/tag/calculateTagConfig.js";
|
|
178
230
|
import "../shared-utils/typescript/entries.js";
|
|
@@ -192,14 +244,6 @@ import "../PanoTagPlugin/utils/normalPositionToPositions.js";
|
|
|
192
244
|
import "../vendor/svelte/store/index.js";
|
|
193
245
|
import "../CSS3DRenderPlugin/index.js";
|
|
194
246
|
import "../CSS3DRenderPlugin/Controller.js";
|
|
195
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
196
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
197
|
-
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
198
|
-
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
199
|
-
import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
200
|
-
import "../shared-utils/five/FiveDomEvents.js";
|
|
201
|
-
import "../shared-utils/five/calculateThreeMouse.js";
|
|
202
|
-
import "../shared-utils/three/core/Raycaster.js";
|
|
203
247
|
import "../PanoTagPlugin/utils/DebugUtil.js";
|
|
204
248
|
import "../PanoTagPlugin/utils/addDebugPoints.js";
|
|
205
249
|
import "../PanoTagPlugin/controller/Tag/PointTag.js";
|
|
@@ -214,10 +258,10 @@ import "../shared-utils/five/changeMode.js";
|
|
|
214
258
|
import "../shared-utils/nearlyEqual.js";
|
|
215
259
|
import "../CruisePlugin/Move.js";
|
|
216
260
|
import "../CruisePlugin/utils/getFiveStateOnCurve.js";
|
|
217
|
-
const r = (i, o) => new t(i, o),
|
|
261
|
+
const r = (i, o) => new t(i, o), Ur = r;
|
|
218
262
|
export {
|
|
219
|
-
|
|
220
|
-
|
|
263
|
+
Xr as GuideLineItem,
|
|
264
|
+
Zr as GuideLineModeItem,
|
|
221
265
|
r as GuideLinePlugin,
|
|
222
|
-
|
|
266
|
+
Ur as default
|
|
223
267
|
};
|
|
@@ -14,6 +14,7 @@ export declare class Controller extends BasePlugin.Controller<PluginType.State,
|
|
|
14
14
|
private tagWrapper;
|
|
15
15
|
private occlusionVisibility;
|
|
16
16
|
private occlusionMode;
|
|
17
|
+
private fiveEveryReadyListenerDisposer?;
|
|
17
18
|
constructor(five: Five, config?: {
|
|
18
19
|
tagContainerZIndex?: number;
|
|
19
20
|
/**
|
|
@@ -46,5 +47,6 @@ export declare class Controller extends BasePlugin.Controller<PluginType.State,
|
|
|
46
47
|
private handleHide;
|
|
47
48
|
private handleEnable;
|
|
48
49
|
private handleDisable;
|
|
50
|
+
private onFiveEveryReady;
|
|
49
51
|
private updateTagRenderer;
|
|
50
52
|
}
|