@realsee/dnalogel 3.51.0 → 3.52.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 +15 -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 -5
- package/dist/Sculpt/Objects/Base/index.d.ts +3 -3
- 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 +13 -2
- package/dist/Sculpt/index.d.ts +10 -19
- 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 +35141 -54254
- 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 -5
- package/libs/Sculpt/Meshes/Rectangle.js +12 -22
- package/libs/Sculpt/Meshes/RectangleWithEdge.js +17 -20
- package/libs/Sculpt/Objects/Base/index.d.ts +3 -3
- package/libs/Sculpt/Objects/Base/index.js +20 -25
- 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 +41 -37
- package/libs/Sculpt/Objects/Cylinder/index.d.ts +3 -0
- package/libs/Sculpt/Objects/Cylinder/index.js +66 -62
- 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 +13 -2
- package/libs/Sculpt/Objects/Rectangle/index.js +143 -81
- package/libs/Sculpt/index.d.ts +10 -19
- 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
|
@@ -85,80 +85,25 @@ import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
|
|
|
85
85
|
import "../../shared-utils/three/centerPoint.js";
|
|
86
86
|
import "../../shared-utils/three/getObjectVisible.js";
|
|
87
87
|
import "@realsee/five/line";
|
|
88
|
-
import "../../vendor/three/examples/jsm/lines/LineGeometry.js";
|
|
89
|
-
import "../../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
90
|
-
import "../../vendor/three/build/three.module.js";
|
|
91
88
|
import "../../shared-utils/three/core/Sphere.js";
|
|
92
89
|
import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
93
|
-
import "../../
|
|
94
|
-
import "../../shared-utils/
|
|
95
|
-
import "../../shared-utils/three/earcut3D.js";
|
|
96
|
-
import "earcut";
|
|
97
|
-
import "../../shared-utils/three/getNormal.js";
|
|
98
|
-
import "../../PanoMeasurePlugin/utils/isIntersecting.js";
|
|
99
|
-
import "../../Sculpt/typings/style.js";
|
|
100
|
-
import "../../Sculpt/utils/three/ColoredMesh.js";
|
|
101
|
-
import "../../shared-utils/three/IObject3D.js";
|
|
102
|
-
import "../../Sculpt/utils/Modules/Global.js";
|
|
103
|
-
import "../../Sculpt/utils/Modules/Cursor.js";
|
|
104
|
-
import "../../Object3DHelperPlugin/Controller.js";
|
|
105
|
-
import "../../base/BasePlugin.js";
|
|
106
|
-
import "../../shared-utils/url/absoluteUrl.js";
|
|
107
|
-
import "../../vendor/hotkeys-js/dist/hotkeys.esm.js";
|
|
108
|
-
import "../../Sculpt/utils/three/rayOnLine.js";
|
|
109
|
-
import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
110
|
-
import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
111
|
-
import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
112
|
-
import "../../shared-utils/three/boundingBox.js";
|
|
113
|
-
import "../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
114
|
-
import "../../shared-utils/Object3DHelper/utils/direction.js";
|
|
115
|
-
import "../../shared-utils/Object3DHelper/Constants/color.js";
|
|
116
|
-
import "../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
117
|
-
import "../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
90
|
+
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
91
|
+
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
118
92
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
|
|
119
93
|
import "../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
|
|
120
94
|
import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
|
|
121
|
-
import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
122
|
-
import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
123
|
-
import "../../shared-utils/util.js";
|
|
124
|
-
import "../../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
125
|
-
import "../../shared-utils/three/PointSelector/utils/html.js";
|
|
126
|
-
import "../../shared-utils/five/initialCSS3DRender.js";
|
|
127
95
|
import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
|
|
128
96
|
import "../../Sculpt/Meshes/Line.js";
|
|
97
|
+
import "../../Sculpt/typings/style.js";
|
|
129
98
|
import "../../shared-utils/five/FiveLine.js";
|
|
99
|
+
import "../../shared-utils/three/IObject3D.js";
|
|
130
100
|
import "../../Sculpt/utils/removeAllTag.js";
|
|
131
101
|
import "../../Sculpt/utils/Meshes/getLengthHTML.js";
|
|
132
102
|
import "../../shared-utils/three/applyObjectMatrixWorld.js";
|
|
103
|
+
import "../../shared-utils/util.js";
|
|
104
|
+
import "../../shared-utils/three/core/LineGeometry.js";
|
|
133
105
|
import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
134
|
-
import "../../shared-utils/Object3DHelper/Helper/RotateHelper.js";
|
|
135
|
-
import "../../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
|
|
136
|
-
import "../../shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
|
|
137
|
-
import "../../shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
|
|
138
|
-
import "../../shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
|
|
139
|
-
import "../../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
140
|
-
import "../../shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
141
|
-
import "../../shared-utils/Object3DHelper/Base/BaseController.js";
|
|
142
|
-
import "../../shared-utils/threex/domevents/index.js";
|
|
143
|
-
import "../../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
144
|
-
import "../../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
145
|
-
import "../../Object3DHelperPlugin/FiveControllerWrapper.js";
|
|
146
|
-
import "../../shared-utils/Object3DHelper/index.js";
|
|
147
|
-
import "../../shared-utils/Object3DHelper/Controller/RotateController.js";
|
|
148
|
-
import "../../shared-utils/math/rad2Deg.js";
|
|
149
|
-
import "../../shared-utils/math/deg2Rad.js";
|
|
150
|
-
import "../../shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
|
|
151
|
-
import "../../shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
|
|
152
|
-
import "../../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
|
|
153
|
-
import "../../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
154
|
-
import "../../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
|
|
155
|
-
import "../../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
|
|
156
|
-
import "../../shared-utils/Object3DHelper/Controller/ScaleController.js";
|
|
157
|
-
import "../../shared-utils/five/fiveModelLoad.js";
|
|
158
|
-
import "../../shared-utils/five/FiveDomEvents.js";
|
|
159
|
-
import "../../shared-utils/five/calculateThreeMouse.js";
|
|
160
106
|
import "../../shared-utils/isTouchDevice.js";
|
|
161
|
-
import "../../shared-utils/three/geometryUtil.js";
|
|
162
107
|
import "../../shared-utils/five/getPosition.js";
|
|
163
108
|
import "../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
164
109
|
import "../../shared-utils/three/PointSelector/utils/contents.js";
|
|
@@ -190,6 +135,7 @@ import "../../shared-utils/three/loadVideoTexture.js";
|
|
|
190
135
|
import "../../shared-utils/device.js";
|
|
191
136
|
import "../../shared-utils/three/getPositionsByObjectFit.js";
|
|
192
137
|
import "../../shared-utils/three/FragmentTransparencyMaterial.js";
|
|
138
|
+
import "../../shared-utils/three/getNormal.js";
|
|
193
139
|
import "../controller/Tag/BaseTag.js";
|
|
194
140
|
import "../utils/tag/calculateTagConfig.js";
|
|
195
141
|
import "../../vendor/object-assign-deep/objectAssignDeep.js";
|
|
@@ -218,7 +164,7 @@ function b(a, t, o) {
|
|
|
218
164
|
return i[8] = t[o], i;
|
|
219
165
|
}
|
|
220
166
|
function y(a) {
|
|
221
|
-
let t, o = [], i = /* @__PURE__ */ new Map(),
|
|
167
|
+
let t, o = [], i = /* @__PURE__ */ new Map(), m, r, n = (
|
|
222
168
|
/*tags*/
|
|
223
169
|
a[0]
|
|
224
170
|
);
|
|
@@ -227,15 +173,15 @@ function y(a) {
|
|
|
227
173
|
p[8].id
|
|
228
174
|
);
|
|
229
175
|
for (let p = 0; p < n.length; p += 1) {
|
|
230
|
-
let
|
|
231
|
-
i.set(s, o[p] = z(s,
|
|
176
|
+
let e = b(a, n, p), s = f(e);
|
|
177
|
+
i.set(s, o[p] = z(s, e));
|
|
232
178
|
}
|
|
233
179
|
return {
|
|
234
180
|
c() {
|
|
235
181
|
var p;
|
|
236
182
|
t = N("div");
|
|
237
|
-
for (let
|
|
238
|
-
o[
|
|
183
|
+
for (let e = 0; e < o.length; e += 1)
|
|
184
|
+
o[e].c();
|
|
239
185
|
h(t, "class", "tag--container svelte-1owzhnq"), h(t, "data-infive", "1"), g(t, "hide", !/*state*/
|
|
240
186
|
a[4].visible || !/*temporaryState*/
|
|
241
187
|
a[5].visible), k(
|
|
@@ -245,20 +191,20 @@ function y(a) {
|
|
|
245
191
|
(p = a[6]) != null ? p : ""
|
|
246
192
|
);
|
|
247
193
|
},
|
|
248
|
-
m(p,
|
|
249
|
-
_(p, t,
|
|
194
|
+
m(p, e) {
|
|
195
|
+
_(p, t, e);
|
|
250
196
|
for (let s = 0; s < o.length; s += 1)
|
|
251
197
|
o[s] && o[s].m(t, null);
|
|
252
|
-
|
|
198
|
+
r = !0;
|
|
253
199
|
},
|
|
254
|
-
p(p,
|
|
200
|
+
p(p, e) {
|
|
255
201
|
var s;
|
|
256
|
-
|
|
202
|
+
e & /*state, temporaryState, tags, mediaStore, rendererMap, contentTypeMap*/
|
|
257
203
|
63 && (n = /*tags*/
|
|
258
|
-
p[0], v(), o = j(o,
|
|
204
|
+
p[0], v(), o = j(o, e, f, 1, p, n, i, t, A, z, null, b), S()), (!r || e & /*state, temporaryState*/
|
|
259
205
|
48) && g(t, "hide", !/*state*/
|
|
260
206
|
p[4].visible || !/*temporaryState*/
|
|
261
|
-
p[5].visible),
|
|
207
|
+
p[5].visible), e & /*zIndex*/
|
|
262
208
|
64 && k(
|
|
263
209
|
t,
|
|
264
210
|
"z-index",
|
|
@@ -267,28 +213,28 @@ function y(a) {
|
|
|
267
213
|
);
|
|
268
214
|
},
|
|
269
215
|
i(p) {
|
|
270
|
-
if (!
|
|
271
|
-
for (let
|
|
272
|
-
c(o[
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
}),
|
|
216
|
+
if (!r) {
|
|
217
|
+
for (let e = 0; e < n.length; e += 1)
|
|
218
|
+
c(o[e]);
|
|
219
|
+
m || B(() => {
|
|
220
|
+
m = D(t, J, {}), m.start();
|
|
221
|
+
}), r = !0;
|
|
276
222
|
}
|
|
277
223
|
},
|
|
278
224
|
o(p) {
|
|
279
|
-
for (let
|
|
280
|
-
u(o[
|
|
281
|
-
|
|
225
|
+
for (let e = 0; e < o.length; e += 1)
|
|
226
|
+
u(o[e]);
|
|
227
|
+
r = !1;
|
|
282
228
|
},
|
|
283
229
|
d(p) {
|
|
284
230
|
p && d(t);
|
|
285
|
-
for (let
|
|
286
|
-
o[
|
|
231
|
+
for (let e = 0; e < o.length; e += 1)
|
|
232
|
+
o[e].d();
|
|
287
233
|
}
|
|
288
234
|
};
|
|
289
235
|
}
|
|
290
236
|
function z(a, t) {
|
|
291
|
-
let o, i,
|
|
237
|
+
let o, i, m;
|
|
292
238
|
return i = new H({
|
|
293
239
|
props: {
|
|
294
240
|
state: (
|
|
@@ -322,11 +268,11 @@ function z(a, t) {
|
|
|
322
268
|
c() {
|
|
323
269
|
o = M(), E(i.$$.fragment), this.first = o;
|
|
324
270
|
},
|
|
325
|
-
m(
|
|
326
|
-
_(
|
|
271
|
+
m(r, n) {
|
|
272
|
+
_(r, o, n), F(i, r, n), m = !0;
|
|
327
273
|
},
|
|
328
|
-
p(
|
|
329
|
-
t =
|
|
274
|
+
p(r, n) {
|
|
275
|
+
t = r;
|
|
330
276
|
const f = {};
|
|
331
277
|
n & /*state*/
|
|
332
278
|
16 && (f.state = /*state*/
|
|
@@ -342,14 +288,14 @@ function z(a, t) {
|
|
|
342
288
|
8 && (f.contentTypeMap = /*contentTypeMap*/
|
|
343
289
|
t[3]), i.$set(f);
|
|
344
290
|
},
|
|
345
|
-
i(
|
|
346
|
-
|
|
291
|
+
i(r) {
|
|
292
|
+
m || (c(i.$$.fragment, r), m = !0);
|
|
347
293
|
},
|
|
348
|
-
o(
|
|
349
|
-
u(i.$$.fragment,
|
|
294
|
+
o(r) {
|
|
295
|
+
u(i.$$.fragment, r), m = !1;
|
|
350
296
|
},
|
|
351
|
-
d(
|
|
352
|
-
|
|
297
|
+
d(r) {
|
|
298
|
+
r && d(o), G(i, r);
|
|
353
299
|
}
|
|
354
300
|
};
|
|
355
301
|
}
|
|
@@ -362,43 +308,43 @@ function L(a) {
|
|
|
362
308
|
c() {
|
|
363
309
|
i && i.c(), t = M();
|
|
364
310
|
},
|
|
365
|
-
m(
|
|
366
|
-
i && i.m(
|
|
311
|
+
m(m, r) {
|
|
312
|
+
i && i.m(m, r), _(m, t, r), o = !0;
|
|
367
313
|
},
|
|
368
|
-
p(
|
|
314
|
+
p(m, [r]) {
|
|
369
315
|
/*state*/
|
|
370
|
-
|
|
371
|
-
16 && c(i, 1)) : (i = y(
|
|
316
|
+
m[4].enabled ? i ? (i.p(m, r), r & /*state*/
|
|
317
|
+
16 && c(i, 1)) : (i = y(m), i.c(), c(i, 1), i.m(t.parentNode, t)) : i && (v(), u(i, 1, 1, () => {
|
|
372
318
|
i = null;
|
|
373
319
|
}), S());
|
|
374
320
|
},
|
|
375
|
-
i(
|
|
321
|
+
i(m) {
|
|
376
322
|
o || (c(i), o = !0);
|
|
377
323
|
},
|
|
378
|
-
o(
|
|
324
|
+
o(m) {
|
|
379
325
|
u(i), o = !1;
|
|
380
326
|
},
|
|
381
|
-
d(
|
|
382
|
-
i && i.d(
|
|
327
|
+
d(m) {
|
|
328
|
+
i && i.d(m), m && d(t);
|
|
383
329
|
}
|
|
384
330
|
};
|
|
385
331
|
}
|
|
386
332
|
function O(a, t, o) {
|
|
387
|
-
let { tags: i = [] } = t, { hooks:
|
|
388
|
-
return C("hooks",
|
|
389
|
-
"tags" in l && o(0, i = l.tags), "hooks" in l && o(7,
|
|
333
|
+
let { tags: i = [] } = t, { hooks: m } = t, { mediaStore: r } = t, { rendererMap: n } = t, { contentTypeMap: f } = t, { state: p } = t, { temporaryState: e } = t, { zIndex: s = void 0 } = t;
|
|
334
|
+
return C("hooks", m), a.$$set = (l) => {
|
|
335
|
+
"tags" in l && o(0, i = l.tags), "hooks" in l && o(7, m = l.hooks), "mediaStore" in l && o(1, r = l.mediaStore), "rendererMap" in l && o(2, n = l.rendererMap), "contentTypeMap" in l && o(3, f = l.contentTypeMap), "state" in l && o(4, p = l.state), "temporaryState" in l && o(5, e = l.temporaryState), "zIndex" in l && o(6, s = l.zIndex);
|
|
390
336
|
}, [
|
|
391
337
|
i,
|
|
392
|
-
|
|
338
|
+
r,
|
|
393
339
|
n,
|
|
394
340
|
f,
|
|
395
341
|
p,
|
|
396
|
-
|
|
342
|
+
e,
|
|
397
343
|
s,
|
|
398
|
-
|
|
344
|
+
m
|
|
399
345
|
];
|
|
400
346
|
}
|
|
401
|
-
class
|
|
347
|
+
class Ko extends w {
|
|
402
348
|
constructor(t) {
|
|
403
349
|
super(), T(
|
|
404
350
|
this,
|
|
@@ -421,5 +367,5 @@ class Kr extends w {
|
|
|
421
367
|
}
|
|
422
368
|
}
|
|
423
369
|
export {
|
|
424
|
-
|
|
370
|
+
Ko as default
|
|
425
371
|
};
|