@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
|
@@ -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 or } from "./GuideLineItem/index.js";
|
|
9
9
|
import "three";
|
|
10
10
|
import "./utils/createLineGeometry.js";
|
|
11
11
|
import "../vendor/polyline-normals/index.js";
|
|
@@ -43,82 +43,27 @@ import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
|
43
43
|
import "../shared-utils/three/centerPoint.js";
|
|
44
44
|
import "../shared-utils/three/getObjectVisible.js";
|
|
45
45
|
import "@realsee/five/line";
|
|
46
|
-
import "../
|
|
47
|
-
import "../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
48
|
-
import "../vendor/three/build/three.module.js";
|
|
46
|
+
import "../shared-utils/isNil.js";
|
|
49
47
|
import "../shared-utils/three/core/Sphere.js";
|
|
50
48
|
import "animejs";
|
|
51
|
-
import "../shared-utils/isNil.js";
|
|
52
49
|
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
53
|
-
import "../
|
|
54
|
-
import "../shared-utils/
|
|
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";
|
|
50
|
+
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
51
|
+
import "../shared-utils/five/initialCSS3DRender.js";
|
|
78
52
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
79
53
|
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
80
54
|
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";
|
|
87
55
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
88
56
|
import "../Sculpt/Meshes/Line.js";
|
|
57
|
+
import "../Sculpt/typings/style.js";
|
|
89
58
|
import "../shared-utils/five/FiveLine.js";
|
|
59
|
+
import "../shared-utils/three/IObject3D.js";
|
|
90
60
|
import "../Sculpt/utils/removeAllTag.js";
|
|
91
61
|
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
92
62
|
import "../shared-utils/three/applyObjectMatrixWorld.js";
|
|
63
|
+
import "../shared-utils/util.js";
|
|
64
|
+
import "../shared-utils/three/core/LineGeometry.js";
|
|
93
65
|
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";
|
|
120
66
|
import "../shared-utils/isTouchDevice.js";
|
|
121
|
-
import "../shared-utils/three/geometryUtil.js";
|
|
122
67
|
import "../shared-utils/five/getPosition.js";
|
|
123
68
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
124
69
|
import "../shared-utils/three/PointSelector/utils/contents.js";
|
|
@@ -215,6 +160,7 @@ import "../shared-utils/three/loadVideoTexture.js";
|
|
|
215
160
|
import "../shared-utils/device.js";
|
|
216
161
|
import "../shared-utils/three/getPositionsByObjectFit.js";
|
|
217
162
|
import "../shared-utils/three/FragmentTransparencyMaterial.js";
|
|
163
|
+
import "../shared-utils/three/getNormal.js";
|
|
218
164
|
import "../PanoTagPlugin/controller/Tag/BaseTag.js";
|
|
219
165
|
import "../PanoTagPlugin/utils/tag/calculateTagConfig.js";
|
|
220
166
|
import "../shared-utils/typescript/entries.js";
|
|
@@ -236,6 +182,16 @@ import "../PanoTagPlugin/utils/normalPositionToPositions.js";
|
|
|
236
182
|
import "../vendor/svelte/store/index.js";
|
|
237
183
|
import "../CSS3DRenderPlugin/index.js";
|
|
238
184
|
import "../CSS3DRenderPlugin/Controller.js";
|
|
185
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
186
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
187
|
+
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
188
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
189
|
+
import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
190
|
+
import "../shared-utils/five/fiveModelLoad.js";
|
|
191
|
+
import "../shared-utils/url/absoluteUrl.js";
|
|
192
|
+
import "../shared-utils/five/FiveDomEvents.js";
|
|
193
|
+
import "../shared-utils/five/calculateThreeMouse.js";
|
|
194
|
+
import "../base/BasePlugin.js";
|
|
239
195
|
import "../PanoTagPlugin/utils/DebugUtil.js";
|
|
240
196
|
import "../PanoTagPlugin/utils/addDebugPoints.js";
|
|
241
197
|
import "../PanoTagPlugin/controller/Tag/PointTag.js";
|
|
@@ -259,5 +215,5 @@ import "../CruisePlugin/utils/safeCall.js";
|
|
|
259
215
|
import "../CruisePlugin/utils/sleep.js";
|
|
260
216
|
import "../shared-utils/five/fiveLoaded.js";
|
|
261
217
|
export {
|
|
262
|
-
|
|
218
|
+
or as GuideLineItem
|
|
263
219
|
};
|
|
@@ -20,15 +20,10 @@ import "hammerjs";
|
|
|
20
20
|
import "../../shared-utils/three/PointSelector/index.js";
|
|
21
21
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
22
22
|
import "@realsee/five/line";
|
|
23
|
-
import "../../
|
|
23
|
+
import { notNil as C } from "../../shared-utils/isNil.js";
|
|
24
24
|
import "../../shared-utils/three/core/Sphere.js";
|
|
25
25
|
import { blink as O } from "../../shared-utils/three/blink.js";
|
|
26
|
-
import { notNil as C } from "../../shared-utils/isNil.js";
|
|
27
26
|
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";
|
|
32
27
|
import { loadTexture as A } from "../../shared-utils/three/loadTexture.js";
|
|
33
28
|
import V from "../../PanoTagPlugin/controller/index.js";
|
|
34
29
|
import E from "../Components/Tag.js";
|
|
@@ -571,11 +566,11 @@ class R {
|
|
|
571
566
|
function H(m) {
|
|
572
567
|
return m.contentType === "Custom";
|
|
573
568
|
}
|
|
574
|
-
const
|
|
569
|
+
const ne = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
575
570
|
__proto__: null,
|
|
576
571
|
GuideLineModeItem: R
|
|
577
572
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
578
573
|
export {
|
|
579
574
|
R as GuideLineModeItem,
|
|
580
|
-
|
|
575
|
+
ne as GuideLineModeItem$1
|
|
581
576
|
};
|
|
@@ -7,21 +7,16 @@ import "hammerjs";
|
|
|
7
7
|
import "../shared-utils/three/PointSelector/index.js";
|
|
8
8
|
import "three/examples/jsm/renderers/CSS3DRenderer";
|
|
9
9
|
import "@realsee/five/line";
|
|
10
|
-
import "../
|
|
10
|
+
import "../shared-utils/isNil.js";
|
|
11
11
|
import "../shared-utils/three/core/Sphere.js";
|
|
12
12
|
import "../shared-utils/three/blink.js";
|
|
13
|
-
import "../shared-utils/isNil.js";
|
|
14
13
|
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";
|
|
19
14
|
import "../shared-utils/three/loadTexture.js";
|
|
20
15
|
import "../PanoTagPlugin/controller/index.js";
|
|
21
16
|
import "./Components/Tag.js";
|
|
22
17
|
import "./utils/index.js";
|
|
23
18
|
import "../vendor/object-assign-deep/objectAssignDeep.js";
|
|
24
|
-
import { GuideLineModeItem as
|
|
19
|
+
import { GuideLineModeItem as Km } from "./GuideLineModeItem/index.js";
|
|
25
20
|
import "../vendor/polyline-normals/index.js";
|
|
26
21
|
import "../vendor/polyline-miter-util/index.js";
|
|
27
22
|
import "../vendor/gl-vec2/add.js";
|
|
@@ -68,62 +63,12 @@ import "../Sculpt/utils/removeAllTag.js";
|
|
|
68
63
|
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
69
64
|
import "../shared-utils/three/applyObjectMatrixWorld.js";
|
|
70
65
|
import "../shared-utils/util.js";
|
|
66
|
+
import "../shared-utils/three/core/LineGeometry.js";
|
|
71
67
|
import "../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
72
68
|
import "../shared-utils/isTouchDevice.js";
|
|
73
69
|
import "../shared-utils/five/getPosition.js";
|
|
74
70
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
75
71
|
import "../shared-utils/three/PointSelector/utils/contents.js";
|
|
76
|
-
import "../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
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";
|
|
127
72
|
import "../shared-utils/animationFrame/index.js";
|
|
128
73
|
import "../PanoTagPlugin/utils/tag/tagCheck.js";
|
|
129
74
|
import "../PanoTagPlugin/utils/debounce.js";
|
|
@@ -212,6 +157,7 @@ import "../shared-utils/three/loadVideoTexture.js";
|
|
|
212
157
|
import "../shared-utils/device.js";
|
|
213
158
|
import "../shared-utils/three/getPositionsByObjectFit.js";
|
|
214
159
|
import "../shared-utils/three/FragmentTransparencyMaterial.js";
|
|
160
|
+
import "../shared-utils/three/getNormal.js";
|
|
215
161
|
import "../PanoTagPlugin/controller/Tag/BaseTag.js";
|
|
216
162
|
import "../PanoTagPlugin/utils/tag/calculateTagConfig.js";
|
|
217
163
|
import "../shared-utils/typescript/entries.js";
|
|
@@ -233,6 +179,16 @@ import "../PanoTagPlugin/utils/normalPositionToPositions.js";
|
|
|
233
179
|
import "../vendor/svelte/store/index.js";
|
|
234
180
|
import "../CSS3DRenderPlugin/index.js";
|
|
235
181
|
import "../CSS3DRenderPlugin/Controller.js";
|
|
182
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
183
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
184
|
+
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
185
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
186
|
+
import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
187
|
+
import "../shared-utils/five/fiveModelLoad.js";
|
|
188
|
+
import "../shared-utils/url/absoluteUrl.js";
|
|
189
|
+
import "../shared-utils/five/FiveDomEvents.js";
|
|
190
|
+
import "../shared-utils/five/calculateThreeMouse.js";
|
|
191
|
+
import "../base/BasePlugin.js";
|
|
236
192
|
import "../PanoTagPlugin/utils/DebugUtil.js";
|
|
237
193
|
import "../PanoTagPlugin/utils/addDebugPoints.js";
|
|
238
194
|
import "../PanoTagPlugin/controller/Tag/PointTag.js";
|
|
@@ -241,5 +197,5 @@ import "../PanoTagPlugin/Components/TagContainer.js";
|
|
|
241
197
|
import "../PanoTagPlugin/Components/TagItem.js";
|
|
242
198
|
import "../PanoTagPlugin/Components/Common/TagPoint.js";
|
|
243
199
|
export {
|
|
244
|
-
|
|
200
|
+
Km as GuideLineModeItem
|
|
245
201
|
};
|
|
@@ -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 er } from "./GuideLineItem/index.js";
|
|
3
|
+
import { GuideLineModeItem$1 as dr } from "./GuideLineModeItem/index.js";
|
|
4
4
|
import "../base/BasePluginWithData.js";
|
|
5
5
|
import "../base/BasePlugin.js";
|
|
6
6
|
import "../shared-utils/Subscribe.js";
|
|
@@ -31,84 +31,32 @@ import "../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
|
31
31
|
import "../shared-utils/three/centerPoint.js";
|
|
32
32
|
import "../shared-utils/three/getObjectVisible.js";
|
|
33
33
|
import "@realsee/five/line";
|
|
34
|
-
import "../
|
|
35
|
-
import "../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
36
|
-
import "../vendor/three/build/three.module.js";
|
|
34
|
+
import "../shared-utils/isNil.js";
|
|
37
35
|
import "../shared-utils/three/core/Sphere.js";
|
|
38
36
|
import "animejs";
|
|
39
|
-
import "../shared-utils/isNil.js";
|
|
40
37
|
import "../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
41
|
-
import "../
|
|
42
|
-
import "../shared-utils/
|
|
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";
|
|
38
|
+
import "../shared-utils/three/PointSelector/utils/html.js";
|
|
39
|
+
import "../shared-utils/five/initialCSS3DRender.js";
|
|
62
40
|
import "../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
63
41
|
import "../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
64
42
|
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";
|
|
71
43
|
import "../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
72
44
|
import "../Sculpt/Meshes/Line.js";
|
|
45
|
+
import "../Sculpt/typings/style.js";
|
|
73
46
|
import "../shared-utils/five/FiveLine.js";
|
|
47
|
+
import "../shared-utils/three/IObject3D.js";
|
|
74
48
|
import "../Sculpt/utils/removeAllTag.js";
|
|
75
49
|
import "../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
76
50
|
import "../shared-utils/three/applyObjectMatrixWorld.js";
|
|
77
|
-
import "../
|
|
78
|
-
import "../
|
|
51
|
+
import "../shared-utils/util.js";
|
|
52
|
+
import "../shared-utils/three/core/LineGeometry.js";
|
|
79
53
|
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";
|
|
107
54
|
import "../shared-utils/isTouchDevice.js";
|
|
108
|
-
import "../shared-utils/three/geometryUtil.js";
|
|
109
55
|
import "../shared-utils/five/getPosition.js";
|
|
110
56
|
import "../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
111
57
|
import "../shared-utils/three/PointSelector/utils/contents.js";
|
|
58
|
+
import "../shared-utils/url/absoluteUrl.js";
|
|
59
|
+
import "../shared-utils/five/fiveModelLoad.js";
|
|
112
60
|
import "../shared-utils/uuid.js";
|
|
113
61
|
import "../shared-utils/equal.js";
|
|
114
62
|
import "../shared-utils/isTruelyObject.js";
|
|
@@ -225,6 +173,7 @@ import "../shared-utils/three/loadVideoTexture.js";
|
|
|
225
173
|
import "../shared-utils/device.js";
|
|
226
174
|
import "../shared-utils/three/getPositionsByObjectFit.js";
|
|
227
175
|
import "../shared-utils/three/FragmentTransparencyMaterial.js";
|
|
176
|
+
import "../shared-utils/three/getNormal.js";
|
|
228
177
|
import "../PanoTagPlugin/controller/Tag/BaseTag.js";
|
|
229
178
|
import "../PanoTagPlugin/utils/tag/calculateTagConfig.js";
|
|
230
179
|
import "../shared-utils/typescript/entries.js";
|
|
@@ -244,6 +193,13 @@ import "../PanoTagPlugin/utils/normalPositionToPositions.js";
|
|
|
244
193
|
import "../vendor/svelte/store/index.js";
|
|
245
194
|
import "../CSS3DRenderPlugin/index.js";
|
|
246
195
|
import "../CSS3DRenderPlugin/Controller.js";
|
|
196
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
197
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
198
|
+
import "../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
199
|
+
import "../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
200
|
+
import "../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
201
|
+
import "../shared-utils/five/FiveDomEvents.js";
|
|
202
|
+
import "../shared-utils/five/calculateThreeMouse.js";
|
|
247
203
|
import "../PanoTagPlugin/utils/DebugUtil.js";
|
|
248
204
|
import "../PanoTagPlugin/utils/addDebugPoints.js";
|
|
249
205
|
import "../PanoTagPlugin/controller/Tag/PointTag.js";
|
|
@@ -258,10 +214,10 @@ import "../shared-utils/five/changeMode.js";
|
|
|
258
214
|
import "../shared-utils/nearlyEqual.js";
|
|
259
215
|
import "../CruisePlugin/Move.js";
|
|
260
216
|
import "../CruisePlugin/utils/getFiveStateOnCurve.js";
|
|
261
|
-
const r = (i, o) => new t(i, o),
|
|
217
|
+
const r = (i, o) => new t(i, o), rr = r;
|
|
262
218
|
export {
|
|
263
|
-
|
|
264
|
-
|
|
219
|
+
er as GuideLineItem,
|
|
220
|
+
dr as GuideLineModeItem,
|
|
265
221
|
r as GuideLinePlugin,
|
|
266
|
-
|
|
222
|
+
rr as default
|
|
267
223
|
};
|