@realsee/dnalogel 3.43.0 → 3.44.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.
Files changed (158) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/dist/CSS3DRenderPlugin/utils/three/CSS3DObject.d.ts +4 -2
  3. package/dist/CSS3DRenderPlugin/utils/three/CSS3DRenderer.d.ts +2 -1
  4. package/dist/CSS3DRenderPlugin/utils/three/CSS3DSprite.d.ts +4 -0
  5. package/dist/PanoMeasurePlugin/Controller/BaseController.d.ts +6 -1
  6. package/dist/PanoMeasurePlugin/Controller/EditController.d.ts +1 -1
  7. package/dist/PanoMeasurePlugin/Controller/index.d.ts +2 -0
  8. package/dist/Sculpt/Meshes/Line.d.ts +19 -1
  9. package/dist/Sculpt/utils/color.d.ts +1 -1
  10. package/dist/index.cjs.js +102 -68
  11. package/dist/index.js +7374 -7116
  12. package/dist/index.umd.js +106 -72
  13. package/dist/shared-utils/five/getPosition.d.ts +12 -4
  14. package/dist/shared-utils/five/initialCSS3DRender.d.ts +2 -0
  15. package/dist/shared-utils/math/deg2Rad.d.ts +1 -1
  16. package/dist/shared-utils/math/rad2Deg.d.ts +1 -1
  17. package/dist/shared-utils/positionToVector3.d.ts +6 -6
  18. package/{libs/shared-utils/three/PointSelector.d.ts → dist/shared-utils/three/PointSelector/index.d.ts} +23 -7
  19. package/dist/shared-utils/three/{PointHelper.d.ts → PointSelector/utils/PointHelper.d.ts} +11 -3
  20. package/dist/shared-utils/three/PointSelector/utils/PointHelper2.d.ts +30 -0
  21. package/dist/shared-utils/three/{PointSelectorHelper.d.ts → PointSelector/utils/PointSelectorHelper.d.ts} +9 -10
  22. package/dist/shared-utils/three/PointSelector/utils/typing.d.ts +8 -0
  23. package/dist/shared-utils/three/index.d.ts +2 -3
  24. package/libs/AreaMakerPlugin/Controller.js +5 -18
  25. package/libs/AreaMakerPlugin/index.js +4 -17
  26. package/libs/AreaMakerPlugin/utils/Item.js +13 -26
  27. package/libs/CSS3DRenderPlugin/Controller.js +9 -6
  28. package/libs/CSS3DRenderPlugin/index.js +12 -9
  29. package/libs/CSS3DRenderPlugin/utils/getAllCSS3DObject.js +6 -6
  30. package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.d.ts +4 -2
  31. package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +73 -56
  32. package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +11 -4
  33. package/libs/CSS3DRenderPlugin/utils/three/CSS3DRenderer.d.ts +2 -1
  34. package/libs/CSS3DRenderPlugin/utils/three/CSS3DRenderer.js +14 -14
  35. package/libs/CSS3DRenderPlugin/utils/three/CSS3DSprite.d.ts +4 -0
  36. package/libs/CSS3DRenderPlugin/utils/three/CSS3DSprite.js +13 -0
  37. package/libs/CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js +85 -0
  38. package/libs/CruisePlugin/BaseController.js +20 -33
  39. package/libs/CruisePlugin/Move.js +25 -23
  40. package/libs/CruisePlugin/Work.js +10 -8
  41. package/libs/CruisePlugin/index.js +23 -21
  42. package/libs/CurrentPanoImagePlugin/Controller.js +30 -43
  43. package/libs/CurrentPanoImagePlugin/index.js +5 -18
  44. package/libs/GuideLinePlugin/Controller.js +15 -13
  45. package/libs/GuideLinePlugin/GuideLineItem.js +19 -17
  46. package/libs/GuideLinePlugin/GuideLineModeItem/index.js +4 -5
  47. package/libs/GuideLinePlugin/GuideLineModeItem.js +21 -19
  48. package/libs/GuideLinePlugin/index.js +23 -21
  49. package/libs/ModelMakerPlugin/Controller.js +19 -30
  50. package/libs/ModelMakerPlugin/index.js +11 -22
  51. package/libs/ModelTVVideoPlugin/Plugin.js +13 -10
  52. package/libs/ModelTVVideoPlugin/index.js +12 -9
  53. package/libs/Object3DHelperPlugin/Controller.js +7 -5
  54. package/libs/Object3DHelperPlugin/index.js +23 -21
  55. package/libs/PanoCompassPlugin/Controller.js +18 -15
  56. package/libs/PanoCompassPlugin/index.js +21 -18
  57. package/libs/PanoDoorLabelPlugin/BaseController.js +24 -37
  58. package/libs/PanoDoorLabelPlugin/Controller.js +56 -69
  59. package/libs/PanoDoorLabelPlugin/index.js +5 -18
  60. package/libs/PanoMeasurePlugin/Components/Controller0.js +40 -47
  61. package/libs/PanoMeasurePlugin/Components/Controller1.js +72 -79
  62. package/libs/PanoMeasurePlugin/Controller/BaseController.d.ts +6 -1
  63. package/libs/PanoMeasurePlugin/Controller/BaseController.js +53 -39
  64. package/libs/PanoMeasurePlugin/Controller/EditController.d.ts +1 -1
  65. package/libs/PanoMeasurePlugin/Controller/EditController.js +177 -153
  66. package/libs/PanoMeasurePlugin/Controller/MixedController.js +1 -1
  67. package/libs/PanoMeasurePlugin/Controller/WatchController.js +60 -74
  68. package/libs/PanoMeasurePlugin/Controller/index.d.ts +2 -0
  69. package/libs/PanoMeasurePlugin/Controller/index.js +59 -60
  70. package/libs/PanoMeasurePlugin/Model/area.js +30 -44
  71. package/libs/PanoMeasurePlugin/Modules/Magnifier.js +3 -16
  72. package/libs/PanoMeasurePlugin/Modules/UIController/index.js +42 -49
  73. package/libs/PanoMeasurePlugin/Modules/rangePiece/index.js +1 -1
  74. package/libs/PanoMeasurePlugin/index.js +35 -40
  75. package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +23 -36
  76. package/libs/PanoSpatialTagPlugin/Plugin.js +41 -38
  77. package/libs/PanoSpatialTagPlugin/index.js +10 -7
  78. package/libs/PanoTagPlugin/Components/Common/TagPoint.js +29 -43
  79. package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +55 -69
  80. package/libs/PanoTagPlugin/Components/Tag/index.js +9 -19
  81. package/libs/PanoTagPlugin/Components/TagContainer.js +42 -52
  82. package/libs/PanoTagPlugin/Components/TagItem.js +9 -19
  83. package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +23 -33
  84. package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +29 -39
  85. package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +11 -21
  86. package/libs/PanoTagPlugin/controller/Tag/PointTag.js +18 -28
  87. package/libs/PanoTagPlugin/controller/TagRender.js +18 -16
  88. package/libs/PanoTagPlugin/controller/TagUtil.js +12 -9
  89. package/libs/PanoTagPlugin/controller/index.js +27 -25
  90. package/libs/PanoTagPlugin/index.js +28 -26
  91. package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +43 -57
  92. package/libs/PanoVideoPlugin/Controller.js +52 -65
  93. package/libs/PanoVideoPlugin/VideoMeshController.js +11 -25
  94. package/libs/PanoVideoPlugin/index.js +8 -21
  95. package/libs/PipelinePlugin/Controller.js +44 -57
  96. package/libs/PipelinePlugin/index.js +5 -18
  97. package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +20 -34
  98. package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +16 -30
  99. package/libs/PipelinePlugin/utils/Objects/Pipe.js +39 -53
  100. package/libs/Sculpt/Meshes/Box.js +3 -3
  101. package/libs/Sculpt/Meshes/Cylinder.js +14 -14
  102. package/libs/Sculpt/Meshes/Line.d.ts +19 -1
  103. package/libs/Sculpt/Meshes/Line.js +40 -41
  104. package/libs/Sculpt/Meshes/LineWithDots.js +5 -6
  105. package/libs/Sculpt/Meshes/Point.js +3 -3
  106. package/libs/Sculpt/Meshes/Polyline.js +3 -3
  107. package/libs/Sculpt/Meshes/Prism.js +11 -12
  108. package/libs/Sculpt/Meshes/Rectangle.js +3 -3
  109. package/libs/Sculpt/Objects/Point/Editor.js +10 -10
  110. package/libs/Sculpt/Objects/Polygon/Editor.js +6 -6
  111. package/libs/Sculpt/Objects/Polyline/Editor.js +4 -4
  112. package/libs/Sculpt/index.js +3 -3
  113. package/libs/Sculpt/utils/Modules/Global.js +1 -1
  114. package/libs/Sculpt/utils/color.d.ts +1 -1
  115. package/libs/Sculpt/utils/three/ColoredMesh.js +3 -3
  116. package/libs/base/BasePlugin.js +4 -4
  117. package/libs/floorplan/Components/Compass.js +29 -31
  118. package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +9 -22
  119. package/libs/floorplan/MapviewFloorplanPlugin/index.js +6 -19
  120. package/libs/floorplan/ModelFloorplanPlugin/Controller.js +5 -18
  121. package/libs/floorplan/ModelFloorplanPlugin/index.js +5 -18
  122. package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +48 -61
  123. package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +5 -18
  124. package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +28 -41
  125. package/libs/floorplan/TopviewFloorplanPlugin/index.js +5 -18
  126. package/libs/floorplan/index.js +3 -3
  127. package/libs/index.js +140 -137
  128. package/libs/shared-utils/five/getPosition.d.ts +12 -4
  129. package/libs/shared-utils/five/getPosition.js +23 -23
  130. package/libs/shared-utils/five/index.js +2 -2
  131. package/libs/shared-utils/five/initialCSS3DRender.d.ts +2 -0
  132. package/libs/shared-utils/five/initialCSS3DRender.js +17 -0
  133. package/libs/shared-utils/five/lookObject.js +3 -3
  134. package/libs/shared-utils/index.js +38 -40
  135. package/libs/shared-utils/logger.js +1 -1
  136. package/libs/shared-utils/math/deg2Rad.d.ts +1 -1
  137. package/libs/shared-utils/math/rad2Deg.d.ts +1 -1
  138. package/libs/shared-utils/positionToVector3.d.ts +6 -6
  139. package/{dist/shared-utils/three/PointSelector.d.ts → libs/shared-utils/three/PointSelector/index.d.ts} +23 -7
  140. package/libs/shared-utils/three/{PointSelector.js → PointSelector/index.js} +54 -45
  141. package/libs/shared-utils/three/{PointHelper.d.ts → PointSelector/utils/PointHelper.d.ts} +11 -3
  142. package/libs/shared-utils/three/PointSelector/utils/PointHelper.js +95 -0
  143. package/libs/shared-utils/three/PointSelector/utils/PointHelper2.d.ts +30 -0
  144. package/libs/shared-utils/three/PointSelector/utils/PointHelper2.js +153 -0
  145. package/libs/shared-utils/three/{PointSelectorHelper.d.ts → PointSelector/utils/PointSelectorHelper.d.ts} +9 -10
  146. package/libs/shared-utils/three/PointSelector/utils/PointSelectorHelper.js +60 -0
  147. package/libs/{PanoMeasurePlugin/Modules/rangePiece → shared-utils/three/PointSelector/utils}/html.js +3 -4
  148. package/libs/shared-utils/three/PointSelector/utils/typing.d.ts +8 -0
  149. package/libs/shared-utils/three/index.d.ts +2 -3
  150. package/libs/shared-utils/three/index.js +3 -3
  151. package/package.json +3 -3
  152. package/dist/shared-utils/three/PointDomHelper.d.ts +0 -18
  153. package/libs/shared-utils/three/PointDomHelper.d.ts +0 -18
  154. package/libs/shared-utils/three/PointDomHelper.js +0 -62
  155. package/libs/shared-utils/three/PointHelper.js +0 -73
  156. package/libs/shared-utils/three/PointSelectorHelper.js +0 -52
  157. /package/dist/{PanoMeasurePlugin/Modules/rangePiece → shared-utils/three/PointSelector/utils}/html.d.ts +0 -0
  158. /package/libs/{PanoMeasurePlugin/Modules/rangePiece → shared-utils/three/PointSelector/utils}/html.d.ts +0 -0
package/libs/index.js CHANGED
@@ -1,62 +1,62 @@
1
1
  import { consoleVersion as o } from "./shared-utils/logger.js";
2
2
  import { autoFixOffscreenCanvas as r } from "./shared-utils/offscreenCanvas.js";
3
- import { PaintBrush as dl } from "./components/PaintBrush/index.js";
4
- import { PaintBrushTypeEnum as Tl } from "./components/PaintBrush/typings.js";
5
- import { ModelViewPlugin as Cl } from "./ModelViewPlugin/Plugin.js";
6
- import { CSS3DRenderPlugin as El } from "./CSS3DRenderPlugin/index.js";
7
- import { PanoCursorRaycasterPlugin as Rl } from "./PanoCursorRaycasterPlugin/index.js";
8
- import { ModelRoomLabelPlugin as Ol, modelRoomLabelPluginServerParams as yl } from "./ModelRoomLabelPlugin/index.js";
9
- import { FLOOR_PLAN_ATTACHED_TO as Dl } from "./floorplan/constant.js";
10
- import { ModelFloorplanPlugin as bl } from "./floorplan/ModelFloorplanPlugin/index.js";
11
- import { MapviewFloorplanPlugin as Fl } from "./floorplan/MapviewFloorplanPlugin/index.js";
12
- import { TopviewFloorplanPlugin as cl } from "./floorplan/TopviewFloorplanPlugin/index.js";
13
- import { PanoFloorplanRadarPlugin as Nl } from "./floorplan/PanoFloorplanRadarPlugin/index.js";
14
- import { FLOOR_TYPE_MAP as kl, ROOM_FETILE_TYPE_MAP as wl, ROOM_TYPE_MAP as Bl } from "./floorplan/typings/floorplanServerData.js";
15
- import { ModelChassisCompassPlugin as Ul } from "./ModelChassisCompassPlugin/Plugin.js";
16
- import { ModelEntryDoorGuidePlugin as $l } from "./ModelEntryDoorGuidePlugin/Plugin.js";
17
- import { CameraMovementPlugin as ql } from "./CameraMovementPlugin/CameraMovementPlugin.js";
18
- import { CameraMovementEffect as Jl, Rotation as Kl } from "./CameraMovementPlugin/typing.js";
19
- import { PanoRulerPlugin as Xl } from "./PanoRulerPlugin/Plugin.js";
20
- import { PanoRulerProPlugin as on } from "./PanoRulerProPlugin/index.js";
21
- import { PanoCompassPlugin as tn } from "./PanoCompassPlugin/index.js";
22
- import { PanoMeasurePlugin as pn } from "./PanoMeasurePlugin/index.js";
23
- import { PanoSpatialTagPlugin as ln } from "./PanoSpatialTagPlugin/Plugin.js";
24
- import { modelItemLabelPluginServerParams as an } from "./ModelItemLabelPlugin/index.js";
25
- import { ModelTVVideoPlugin as un } from "./ModelTVVideoPlugin/Plugin.js";
26
- import { DIRECTION as xn } from "./ModelTVVideoPlugin/typings.js";
27
- import { itemLabelPluginServerParams as sn } from "./ItemLabelPlugin/index.js";
28
- import { PanoDoorLabelPlugin as Mn } from "./PanoDoorLabelPlugin/index.js";
29
- import { GuideLinePlugin as Ln } from "./GuideLinePlugin/index.js";
30
- import { CruisePlugin as _n, MovePlugin as En } from "./CruisePlugin/index.js";
31
- import { PanoTagPlugin as Rn } from "./PanoTagPlugin/index.js";
32
- import { Object3DHelperPlugin as On } from "./Object3DHelperPlugin/index.js";
33
- import { PanoVideoPlugin as An } from "./PanoVideoPlugin/index.js";
34
- import { PipelinePlugin as Gn } from "./PipelinePlugin/index.js";
35
- import { AreaMakerPlugin as vn } from "./AreaMakerPlugin/index.js";
36
- import { CurrentPanoImagePlugin as Yn } from "./CurrentPanoImagePlugin/index.js";
37
- import { Sculpt as Vn, SculptPlugin as Nn } from "./Sculpt/index.js";
38
- import { ModelMakerPlugin as kn } from "./ModelMakerPlugin/index.js";
39
- import { index as Bn } from "./shared-utils/index.js";
40
- import { CSS3DRender as Un } from "./CSS3DRenderPlugin/utils/three/CSS3DRender.js";
41
- import { Model as $n } from "./PanoMeasurePlugin/Model/index.js";
42
- import { default as qn } from "./PanoMeasurePlugin/Model/point.js";
43
- import { default as Jn } from "./PanoMeasurePlugin/Model/line.js";
44
- import { Polyline as Qn } from "./PanoMeasurePlugin/Model/polyline.js";
45
- import { Magnifier as Zn } from "./shared-utils/three/Magnifier.js";
46
- import { DISPLAY_STRATEGY_TYPE as ra } from "./ModelItemLabelPlugin/typings.js";
47
- import { ModelItemLabelPlugin as ia } from "./ModelItemLabelPlugin/ModelItemLabelPlugin.js";
48
- import { ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE as pa } from "./ItemLabelPlugin/typings.js";
49
- import { Plugin as la } from "./ItemLabelPlugin/Plugin.js";
50
- import { GuideLineItem$1 as aa } from "./GuideLinePlugin/GuideLineItem/index.js";
51
- import { GuideLineModeItem$1 as ua } from "./GuideLinePlugin/GuideLineModeItem/index.js";
52
- import { default as xa, default as ga } from "./CruisePlugin/Work.js";
53
- import { default as da } from "./CruisePlugin/Move.js";
54
- import { typing as Ta } from "./CruisePlugin/typing/index.js";
55
- import { default as Ca, pluginFlag as _a } from "./PanoTagPlugin/controller/index.js";
56
- import { defaultGlobalConfig as Ia } from "./PanoTagPlugin/typings/tag/TagConfig.js";
57
- import { ContentType as Sa, DimensionType as Oa, PointType as ya } from "./PanoTagPlugin/Archive/deprecated.js";
58
- import { Object3DHelperController as Da, PLUGIN as Ga } from "./Object3DHelperPlugin/Controller.js";
59
- import { typings as va } from "./PanoVideoPlugin/typings/index.js";
3
+ import { PaintBrush as Ll } from "./components/PaintBrush/index.js";
4
+ import { PaintBrushTypeEnum as _l } from "./components/PaintBrush/typings.js";
5
+ import { ModelViewPlugin as Il } from "./ModelViewPlugin/Plugin.js";
6
+ import { CSS3DRenderPlugin as Sl } from "./CSS3DRenderPlugin/index.js";
7
+ import { PanoCursorRaycasterPlugin as yl } from "./PanoCursorRaycasterPlugin/index.js";
8
+ import { ModelRoomLabelPlugin as Dl, modelRoomLabelPluginServerParams as Gl } from "./ModelRoomLabelPlugin/index.js";
9
+ import { FLOOR_PLAN_ATTACHED_TO as vl } from "./floorplan/constant.js";
10
+ import { ModelFloorplanPlugin as Yl } from "./floorplan/ModelFloorplanPlugin/index.js";
11
+ import { MapviewFloorplanPlugin as Vl } from "./floorplan/MapviewFloorplanPlugin/index.js";
12
+ import { TopviewFloorplanPlugin as hl } from "./floorplan/TopviewFloorplanPlugin/index.js";
13
+ import { PanoFloorplanRadarPlugin as wl } from "./floorplan/PanoFloorplanRadarPlugin/index.js";
14
+ import { FLOOR_TYPE_MAP as Hl, ROOM_FETILE_TYPE_MAP as Ul, ROOM_TYPE_MAP as jl } from "./floorplan/typings/floorplanServerData.js";
15
+ import { ModelChassisCompassPlugin as Wl } from "./ModelChassisCompassPlugin/Plugin.js";
16
+ import { ModelEntryDoorGuidePlugin as zl } from "./ModelEntryDoorGuidePlugin/Plugin.js";
17
+ import { CameraMovementPlugin as Kl } from "./CameraMovementPlugin/CameraMovementPlugin.js";
18
+ import { CameraMovementEffect as Xl, Rotation as Zl } from "./CameraMovementPlugin/typing.js";
19
+ import { PanoRulerPlugin as rn } from "./PanoRulerPlugin/Plugin.js";
20
+ import { PanoRulerProPlugin as mn } from "./PanoRulerProPlugin/index.js";
21
+ import { PanoCompassPlugin as en } from "./PanoCompassPlugin/index.js";
22
+ import { PanoMeasurePlugin as nn } from "./PanoMeasurePlugin/index.js";
23
+ import { PanoSpatialTagPlugin as Pn } from "./PanoSpatialTagPlugin/Plugin.js";
24
+ import { modelItemLabelPluginServerParams as fn } from "./ModelItemLabelPlugin/index.js";
25
+ import { ModelTVVideoPlugin as gn } from "./ModelTVVideoPlugin/Plugin.js";
26
+ import { DIRECTION as dn } from "./ModelTVVideoPlugin/typings.js";
27
+ import { itemLabelPluginServerParams as Tn } from "./ItemLabelPlugin/index.js";
28
+ import { PanoDoorLabelPlugin as Cn } from "./PanoDoorLabelPlugin/index.js";
29
+ import { GuideLinePlugin as En } from "./GuideLinePlugin/index.js";
30
+ import { CruisePlugin as Rn, MovePlugin as Sn } from "./CruisePlugin/index.js";
31
+ import { PanoTagPlugin as yn } from "./PanoTagPlugin/index.js";
32
+ import { Object3DHelperPlugin as Dn } from "./Object3DHelperPlugin/index.js";
33
+ import { PanoVideoPlugin as bn } from "./PanoVideoPlugin/index.js";
34
+ import { PipelinePlugin as Fn } from "./PipelinePlugin/index.js";
35
+ import { AreaMakerPlugin as cn } from "./AreaMakerPlugin/index.js";
36
+ import { CurrentPanoImagePlugin as Nn } from "./CurrentPanoImagePlugin/index.js";
37
+ import { Sculpt as kn, SculptPlugin as wn } from "./Sculpt/index.js";
38
+ import { ModelMakerPlugin as Hn } from "./ModelMakerPlugin/index.js";
39
+ import { index as jn } from "./shared-utils/index.js";
40
+ import { CSS3DRender as Wn } from "./CSS3DRenderPlugin/utils/three/CSS3DRender.js";
41
+ import { Model as zn } from "./PanoMeasurePlugin/Model/index.js";
42
+ import { default as Kn } from "./PanoMeasurePlugin/Model/point.js";
43
+ import { default as Xn } from "./PanoMeasurePlugin/Model/line.js";
44
+ import { Polyline as oa } from "./PanoMeasurePlugin/Model/polyline.js";
45
+ import { Magnifier as ta } from "./shared-utils/three/Magnifier.js";
46
+ import { DISPLAY_STRATEGY_TYPE as ma } from "./ModelItemLabelPlugin/typings.js";
47
+ import { ModelItemLabelPlugin as ea } from "./ModelItemLabelPlugin/ModelItemLabelPlugin.js";
48
+ import { ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE as na } from "./ItemLabelPlugin/typings.js";
49
+ import { Plugin as Pa } from "./ItemLabelPlugin/Plugin.js";
50
+ import { GuideLineItem$1 as fa } from "./GuideLinePlugin/GuideLineItem/index.js";
51
+ import { GuideLineModeItem$1 as ga } from "./GuideLinePlugin/GuideLineModeItem/index.js";
52
+ import { default as da, default as Ma } from "./CruisePlugin/Work.js";
53
+ import { default as La } from "./CruisePlugin/Move.js";
54
+ import { typing as _a } from "./CruisePlugin/typing/index.js";
55
+ import { default as Ia, pluginFlag as Ra } from "./PanoTagPlugin/controller/index.js";
56
+ import { defaultGlobalConfig as Oa } from "./PanoTagPlugin/typings/tag/TagConfig.js";
57
+ import { ContentType as Aa, DimensionType as Da, PointType as Ga } from "./PanoTagPlugin/Archive/deprecated.js";
58
+ import { Object3DHelperController as va, PLUGIN as Fa } from "./Object3DHelperPlugin/Controller.js";
59
+ import { typings as ca } from "./PanoVideoPlugin/typings/index.js";
60
60
  import "./components/PaintBrush/Controller.js";
61
61
  import "./components/PaintBrush/utils.js";
62
62
  import "./components/PaintBrush/tween.js";
@@ -69,6 +69,8 @@ import "three";
69
69
  import "./CSS3DRenderPlugin/Controller.js";
70
70
  import "./CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
71
71
  import "hammerjs";
72
+ import "three/examples/jsm/renderers/CSS3DRenderer";
73
+ import "@realsee/five/line";
72
74
  import "./shared-utils/three/THREESphere.js";
73
75
  import "animejs";
74
76
  import "./shared-utils/url/absoluteUrl.js";
@@ -76,9 +78,7 @@ import "./shared-utils/five/fiveModelLoad.js";
76
78
  import "./shared-utils/five/getFiveModel.js";
77
79
  import "./shared-utils/positionToVector3.js";
78
80
  import "./CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
79
- import "three/examples/jsm/renderers/CSS3DRenderer";
80
- import "./CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
81
- import "./shared-utils/util.js";
81
+ import "./CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
82
82
  import "./CSS3DRenderPlugin/utils/createResizeObserver.js";
83
83
  import "./CSS3DRenderPlugin/utils/even.js";
84
84
  import "./shared-utils/Subscribe.js";
@@ -86,11 +86,13 @@ import "./CSS3DRenderPlugin/utils/three/CSS3DObject.js";
86
86
  import "./CSS3DRenderPlugin/utils/three/OpacityMesh.js";
87
87
  import "./shared-utils/three/centerPoint.js";
88
88
  import "./shared-utils/three/getObjectVisible.js";
89
+ import "./shared-utils/isNil.js";
89
90
  import "./CSS3DRenderPlugin/utils/three/CSS3DScene.js";
91
+ import "./CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
92
+ import "./shared-utils/util.js";
90
93
  import "./CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
91
94
  import "./shared-utils/createLine/index.js";
92
95
  import "./shared-utils/five/FiveLine.js";
93
- import "@realsee/five/line";
94
96
  import "./ModelRoomLabelPlugin/Controller.js";
95
97
  import "./ModelRoomLabelPlugin/RoomLabelItems.js";
96
98
  import "./vendor/svelte/internal/index.js";
@@ -144,7 +146,6 @@ import "./floorplan/utils/constant.js";
144
146
  import "./shared-utils/nearlyEqual.js";
145
147
  import "./shared-utils/five/changeMode.js";
146
148
  import "./shared-utils/changeModelCanvasOpacity.js";
147
- import "./shared-utils/isNil.js";
148
149
  import "./floorplan/MapviewFloorplanPlugin/Controller.js";
149
150
  import "./floorplan/TopviewFloorplanPlugin/Controller.js";
150
151
  import "./floorplan/PanoFloorplanRadarPlugin/Controller.js";
@@ -192,12 +193,16 @@ import "./shared-utils/three/getNormal.js";
192
193
  import "./PanoMeasurePlugin/utils/dom/areaDom.js";
193
194
  import "./shared-utils/three/geometryUtil.js";
194
195
  import "./PanoMeasurePlugin/utils/isIntersecting.js";
195
- import "./shared-utils/three/PointSelector.js";
196
- import "./shared-utils/three/PointSelectorHelper.js";
197
- import "./shared-utils/three/PointHelper.js";
196
+ import "./shared-utils/three/PointSelector/index.js";
197
+ import "./shared-utils/three/PointSelector/utils/PointSelectorHelper.js";
198
+ import "./shared-utils/three/PointSelector/utils/PointHelper.js";
198
199
  import "./shared-utils/three/Assets/index.js";
199
- import "./shared-utils/three/PointDomHelper.js";
200
- import "./PanoMeasurePlugin/Modules/rangePiece/html.js";
200
+ import "./shared-utils/three/PointSelector/utils/html.js";
201
+ import "./shared-utils/five/initialCSS3DRender.js";
202
+ import "./shared-utils/three/PointSelector/utils/PointHelper2.js";
203
+ import "./Sculpt/Meshes/Line.js";
204
+ import "./Sculpt/utils/color.js";
205
+ import "./CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
201
206
  import "./shared-utils/isTouchDevice.js";
202
207
  import "./shared-utils/five/getPosition.js";
203
208
  import "./shared-utils/five/getRaycasterByNdcPosition.js";
@@ -441,8 +446,6 @@ import "./vendor/hotkeys-js/dist/hotkeys.esm.js";
441
446
  import "./Sculpt/Meshes/Polyline.js";
442
447
  import "./Sculpt/Meshes/LineWithDots.js";
443
448
  import "./Sculpt/Meshes/Point.js";
444
- import "./Sculpt/utils/color.js";
445
- import "./Sculpt/Meshes/Line.js";
446
449
  import "./shared-utils/three/closeVectors.js";
447
450
  import "./Sculpt/Objects/Base/index.js";
448
451
  import "./shared-utils/three/applyObjectMatrixWorld.js";
@@ -501,72 +504,72 @@ import "./shared-utils/five/lookObject.js";
501
504
  r();
502
505
  o();
503
506
  export {
504
- vn as AreaMakerPlugin,
505
- Un as CSS3DRender,
506
- El as CSS3DRenderPlugin,
507
- Jl as CameraMovementEffect,
508
- ql as CameraMovementPlugin,
509
- Sa as ContentType,
510
- _n as CruisePlugin,
511
- xa as CruisePluginController,
512
- Ta as CruisePluginTypes,
513
- Yn as CurrentPanoImagePlugin,
514
- xn as DIRECTION,
515
- ra as DISPLAY_STRATEGY_TYPE,
516
- Oa as DimensionType,
517
- Dl as FLOOR_PLAN_ATTACHED_TO,
518
- kl as FLOOR_TYPE_MAP,
519
- aa as GuideLineItem,
520
- ua as GuideLineModeItem,
521
- Ln as GuideLinePlugin,
522
- pa as ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE,
523
- la as ItemLabelPlugin,
524
- Zn as Magnifier,
525
- Fl as MapviewFloorplanPlugin,
526
- Ul as ModelChassisCompassPlugin,
527
- $l as ModelEntryDoorGuidePlugin,
528
- bl as ModelFloorplanPlugin,
529
- ia as ModelItemLabelPlugin,
530
- kn as ModelMakerPlugin,
531
- Ol as ModelRoomLabelPlugin,
532
- un as ModelTVVideoPlugin,
533
- Cl as ModelViewPlugin,
534
- da as MoveController,
535
- En as MovePlugin,
536
- Da as Object3DHelperController,
537
- On as Object3DHelperPlugin,
538
- Ga as PLUGIN,
539
- dl as PaintBrush,
540
- Tl as PaintBrushTypeEnum,
541
- tn as PanoCompassPlugin,
542
- Rl as PanoCursorRaycasterPlugin,
543
- Mn as PanoDoorLabelPlugin,
544
- Nl as PanoFloorplanRadarPlugin,
545
- pn as PanoMeasurePlugin,
546
- Jn as PanoMeasurePluginLine,
547
- $n as PanoMeasurePluginModel,
548
- qn as PanoMeasurePluginPoint,
549
- Qn as PanoMeasurePluginPolyline,
550
- Xl as PanoRulerPlugin,
551
- on as PanoRulerProPlugin,
552
- ln as PanoSpatialTagPlugin,
553
- Rn as PanoTagPlugin,
554
- Ca as PanoTagPluginController,
555
- An as PanoVideoPlugin,
556
- va as PanoVideoPluginType,
557
- Gn as PipelinePlugin,
558
- ya as PointType,
559
- wl as ROOM_FETILE_TYPE_MAP,
560
- Bl as ROOM_TYPE_MAP,
561
- Kl as Rotation,
562
- Vn as Sculpt,
563
- Nn as SculptPlugin,
564
- cl as TopviewFloorplanPlugin,
565
- Bn as Util,
566
- ga as WalkController,
567
- Ia as defaultGlobalConfig,
568
- sn as itemLabelPluginServerParams,
569
- an as modelItemLabelPluginServerParams,
570
- yl as modelRoomLabelPluginServerParams,
571
- _a as pluginFlag
507
+ cn as AreaMakerPlugin,
508
+ Wn as CSS3DRender,
509
+ Sl as CSS3DRenderPlugin,
510
+ Xl as CameraMovementEffect,
511
+ Kl as CameraMovementPlugin,
512
+ Aa as ContentType,
513
+ Rn as CruisePlugin,
514
+ da as CruisePluginController,
515
+ _a as CruisePluginTypes,
516
+ Nn as CurrentPanoImagePlugin,
517
+ dn as DIRECTION,
518
+ ma as DISPLAY_STRATEGY_TYPE,
519
+ Da as DimensionType,
520
+ vl as FLOOR_PLAN_ATTACHED_TO,
521
+ Hl as FLOOR_TYPE_MAP,
522
+ fa as GuideLineItem,
523
+ ga as GuideLineModeItem,
524
+ En as GuideLinePlugin,
525
+ na as ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE,
526
+ Pa as ItemLabelPlugin,
527
+ ta as Magnifier,
528
+ Vl as MapviewFloorplanPlugin,
529
+ Wl as ModelChassisCompassPlugin,
530
+ zl as ModelEntryDoorGuidePlugin,
531
+ Yl as ModelFloorplanPlugin,
532
+ ea as ModelItemLabelPlugin,
533
+ Hn as ModelMakerPlugin,
534
+ Dl as ModelRoomLabelPlugin,
535
+ gn as ModelTVVideoPlugin,
536
+ Il as ModelViewPlugin,
537
+ La as MoveController,
538
+ Sn as MovePlugin,
539
+ va as Object3DHelperController,
540
+ Dn as Object3DHelperPlugin,
541
+ Fa as PLUGIN,
542
+ Ll as PaintBrush,
543
+ _l as PaintBrushTypeEnum,
544
+ en as PanoCompassPlugin,
545
+ yl as PanoCursorRaycasterPlugin,
546
+ Cn as PanoDoorLabelPlugin,
547
+ wl as PanoFloorplanRadarPlugin,
548
+ nn as PanoMeasurePlugin,
549
+ Xn as PanoMeasurePluginLine,
550
+ zn as PanoMeasurePluginModel,
551
+ Kn as PanoMeasurePluginPoint,
552
+ oa as PanoMeasurePluginPolyline,
553
+ rn as PanoRulerPlugin,
554
+ mn as PanoRulerProPlugin,
555
+ Pn as PanoSpatialTagPlugin,
556
+ yn as PanoTagPlugin,
557
+ Ia as PanoTagPluginController,
558
+ bn as PanoVideoPlugin,
559
+ ca as PanoVideoPluginType,
560
+ Fn as PipelinePlugin,
561
+ Ga as PointType,
562
+ Ul as ROOM_FETILE_TYPE_MAP,
563
+ jl as ROOM_TYPE_MAP,
564
+ Zl as Rotation,
565
+ kn as Sculpt,
566
+ wn as SculptPlugin,
567
+ hl as TopviewFloorplanPlugin,
568
+ jn as Util,
569
+ Ma as WalkController,
570
+ Oa as defaultGlobalConfig,
571
+ Tn as itemLabelPluginServerParams,
572
+ fn as modelItemLabelPluginServerParams,
573
+ Gl as modelRoomLabelPluginServerParams,
574
+ Ra as pluginFlag
572
575
  };
@@ -4,11 +4,19 @@ interface IIntersection extends THREE.Intersection {
4
4
  raycaster: THREE.Raycaster;
5
5
  isVirtual: boolean;
6
6
  }
7
+ /**
8
+ * @description 根据 ndc 坐标获取 Intersect
9
+ */
7
10
  export declare function getIntersectByNdcPosition(five: Five, position: {
8
11
  x: number;
9
12
  y: number;
10
- }): IIntersection;
11
- export declare function getIntersectByRaycaster(five: Five, raycaster: THREE.Raycaster): IIntersection;
12
- export declare function getVirtualIntersectByRaycaster(raycaster: THREE.Raycaster): IIntersection;
13
- export declare function getRealIntersectByRaycaster(five: Five, raycaster: THREE.Raycaster): IIntersection;
13
+ }, config?: {
14
+ virtualPoint?: boolean;
15
+ }): IIntersection | undefined;
16
+ /**
17
+ * @description 根据射线获取 Intersect
18
+ */
19
+ export declare function getIntersectByRaycaster(five: Five, raycaster: THREE.Raycaster, config?: {
20
+ virtualPoint?: boolean;
21
+ }): IIntersection | undefined;
14
22
  export {};
@@ -1,46 +1,46 @@
1
1
  var u = Object.defineProperty, d = Object.defineProperties;
2
2
  var m = Object.getOwnPropertyDescriptors;
3
- var i = Object.getOwnPropertySymbols;
4
- var y = Object.prototype.hasOwnProperty, f = Object.prototype.propertyIsEnumerable;
3
+ var c = Object.getOwnPropertySymbols;
4
+ var y = Object.prototype.hasOwnProperty, p = Object.prototype.propertyIsEnumerable;
5
5
  var s = (t, e, n) => e in t ? u(t, e, { enumerable: !0, configurable: !0, writable: !0, value: n }) : t[e] = n, a = (t, e) => {
6
6
  for (var n in e || (e = {}))
7
7
  y.call(e, n) && s(t, n, e[n]);
8
- if (i)
9
- for (var n of i(e))
10
- f.call(e, n) && s(t, n, e[n]);
8
+ if (c)
9
+ for (var n of c(e))
10
+ p.call(e, n) && s(t, n, e[n]);
11
11
  return t;
12
12
  }, l = (t, e) => d(t, m(e));
13
- import * as o from "three";
14
- import { getRaycasterByNdcPosition as g } from "./getRaycasterByNdcPosition.js";
15
- import { getFiveModel as p } from "./getFiveModel.js";
16
- function j(t, e) {
17
- const n = g(t, e);
18
- return R(t, n);
13
+ import * as i from "three";
14
+ import { getRaycasterByNdcPosition as R } from "./getRaycasterByNdcPosition.js";
15
+ import { getFiveModel as f } from "./getFiveModel.js";
16
+ function P(t, e, n) {
17
+ const r = R(t, e);
18
+ return B(t, r, n);
19
19
  }
20
- function R(t, e) {
21
- var n;
22
- return (n = B(t, e)) != null ? n : I(e);
20
+ function B(t, e, n) {
21
+ const r = V(t, e);
22
+ return n != null && n.virtualPoint ? r != null ? r : I(e) : r;
23
23
  }
24
24
  function I(t) {
25
- const n = new o.Vector3().addVectors(
25
+ const n = new i.Vector3().addVectors(
26
26
  t.ray.origin,
27
27
  t.ray.direction.clone().normalize().multiplyScalar(3)
28
28
  ), r = t.ray.direction.clone().negate();
29
29
  return {
30
30
  distance: 3,
31
31
  point: n,
32
- object: new o.Object3D(),
33
- face: new o.Face3(0, 0, 0, r),
32
+ object: new i.Object3D(),
33
+ face: new i.Face3(0, 0, 0, r),
34
34
  raycaster: t,
35
35
  isVirtual: !0
36
36
  };
37
37
  }
38
- function B(t, e) {
39
- const c = p(t).intersectRaycaster(e)[0];
40
- if (c)
41
- return l(a({}, c), { raycaster: e, isVirtual: !1 });
38
+ function V(t, e) {
39
+ const o = f(t).intersectRaycaster(e)[0];
40
+ if (o)
41
+ return l(a({}, o), { raycaster: e, isVirtual: !1 });
42
42
  }
43
43
  export {
44
- j as getIntersectByNdcPosition,
45
- R as getIntersectByRaycaster
44
+ P as getIntersectByNdcPosition,
45
+ B as getIntersectByRaycaster
46
46
  };
@@ -1,8 +1,8 @@
1
1
  import "three";
2
2
  import "hammerjs";
3
+ import "three/examples/jsm/renderers/CSS3DRenderer";
3
4
  import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
4
- import "../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
5
- import "../../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
5
+ import "@realsee/five/line";
6
6
  import "../three/THREESphere.js";
7
7
  import "animejs";
8
8
  function d(e) {
@@ -0,0 +1,2 @@
1
+ import { Five } from '@realsee/five';
2
+ export declare function initialCSS3DRender(five: Five): void;
@@ -0,0 +1,17 @@
1
+ import m from "../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
2
+ const d = "CSS3DRenderer-dshauidwahdslkadnmsla";
3
+ function a(n) {
4
+ var t;
5
+ const r = (t = n.getElement()) == null ? void 0 : t.parentElement;
6
+ if (!r) {
7
+ console.error("initialCSS3DRender: five element is not exist");
8
+ return;
9
+ }
10
+ if (document.getElementById(d))
11
+ return;
12
+ const e = new m();
13
+ e.domElementWrapper.id = d, e.domElementWrapper.style.zIndex = "1", e.appendToElement(r), e.renderEveryFrame(n.scene, n.camera);
14
+ }
15
+ export {
16
+ a as initialCSS3DRender
17
+ };
@@ -27,12 +27,12 @@ var g = (e, o, t) => new Promise((r, m) => {
27
27
  });
28
28
  import * as n from "three";
29
29
  import "hammerjs";
30
- import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
30
+ import "three/examples/jsm/renderers/CSS3DRenderer";
31
31
  import { vectorToCoordinates as N } from "../vectorToCoordinate.js";
32
32
  import { FiveUtil as O } from "../Utils/FiveUtil.js";
33
33
  import { notNil as Y } from "../isNil.js";
34
- import "../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
35
- import "../../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
34
+ import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
35
+ import "@realsee/five/line";
36
36
  import { worldBoundingSphere as j } from "../three/boundingBox.js";
37
37
  import "animejs";
38
38
  function $(e, o, t) {
@@ -7,42 +7,40 @@ import { Magnifier as m } from "./three/Magnifier.js";
7
7
  import { getCoordsFromClient as n, getCoordsFromElement as p } from "./three/getCoords.js";
8
8
  import { getRaycasterFromFivePointer as l } from "./three/getRaycaster.js";
9
9
  import { getIntersectFromRelativePosition as f } from "./three/getIntersect.js";
10
- import { PointHelper as a } from "./three/PointHelper.js";
11
- import { PointDomHelper as d } from "./three/PointDomHelper.js";
12
- import { PointSelectorHelper as g } from "./three/PointSelectorHelper.js";
13
- import { Object3D as s } from "./three/core/Object3D.js";
14
- import { LineSegments as u } from "./three/objects/LineSegments.js";
15
- import { bounding as b, boundingBox as c, boundingSphere as x, boxVertex as F, boxVertexes as P, worldBounding as k, worldBoundingBox as v, worldBoundingSphere as w } from "./three/boundingBox.js";
16
- import { animeMap as B, blink as S, reblink as L } from "./three/blink.js";
17
- import { isNil as M, notNil as j } from "./isNil.js";
18
- import { uuid as y } from "./uuid.js";
19
- import { absoluteUrl as H, isAbsoluteURL as I } from "./url/absoluteUrl.js";
10
+ import { PointHelper as a } from "./three/PointSelector/utils/PointHelper.js";
11
+ import { PointSelectorHelper as d } from "./three/PointSelector/utils/PointSelectorHelper.js";
12
+ import { Object3D as g } from "./three/core/Object3D.js";
13
+ import { LineSegments as s } from "./three/objects/LineSegments.js";
14
+ import { bounding as u, boundingBox as b, boundingSphere as c, boxVertex as x, boxVertexes as F, worldBounding as P, worldBoundingBox as k, worldBoundingSphere as v } from "./three/boundingBox.js";
15
+ import { animeMap as w, blink as B, reblink as S } from "./three/blink.js";
16
+ import { isNil as L, notNil as M } from "./isNil.js";
17
+ import { uuid as j } from "./uuid.js";
18
+ import { absoluteUrl as y, isAbsoluteURL as I } from "./url/absoluteUrl.js";
20
19
  import { awaitNextFrame as O, getFrameTime as R, nextFrame as _, requestAnimationFrameInterval as h } from "./animationFrame/index.js";
21
20
  import { equal as C } from "./equal.js";
22
- import { isModelLike as N, isPanoramaLike as T } from "./five/mode.js";
23
- import { lookObject as q } from "./five/lookObject.js";
24
- import { lookPoint as A } from "./five/lookPoint.js";
25
- import { BetterTween as D, tweenProgress as U } from "./animationFrame/BetterTween.js";
26
- const uo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
21
+ import { isModelLike as H, isPanoramaLike as N } from "./five/mode.js";
22
+ import { lookObject as T } from "./five/lookObject.js";
23
+ import { lookPoint as q } from "./five/lookPoint.js";
24
+ import { BetterTween as A, tweenProgress as U } from "./animationFrame/BetterTween.js";
25
+ const go = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
27
26
  __proto__: null,
28
- BetterTween: D,
27
+ BetterTween: A,
29
28
  Interval: r,
30
- LineSegments: u,
29
+ LineSegments: s,
31
30
  Magnifier: m,
32
- Object3D: s,
33
- PointDomHelper: d,
31
+ Object3D: g,
34
32
  PointHelper: a,
35
- PointSelectorHelper: g,
33
+ PointSelectorHelper: d,
36
34
  Rectangle: e,
37
- absoluteUrl: H,
38
- animeMap: B,
35
+ absoluteUrl: y,
36
+ animeMap: w,
39
37
  awaitNextFrame: O,
40
- blink: S,
41
- bounding: b,
42
- boundingBox: c,
43
- boundingSphere: x,
44
- boxVertex: F,
45
- boxVertexes: P,
38
+ blink: B,
39
+ bounding: u,
40
+ boundingBox: b,
41
+ boundingSphere: c,
42
+ boxVertex: x,
43
+ boxVertexes: F,
46
44
  checkFiveModelLoaded: i,
47
45
  convexHull: t,
48
46
  equal: C,
@@ -53,22 +51,22 @@ const uo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
53
51
  getRaycasterFromFivePointer: l,
54
52
  inside: o,
55
53
  isAbsoluteURL: I,
56
- isModelLike: N,
57
- isNil: M,
58
- isPanoramaLike: T,
59
- lookObject: q,
60
- lookPoint: A,
54
+ isModelLike: H,
55
+ isNil: L,
56
+ isPanoramaLike: N,
57
+ lookObject: T,
58
+ lookPoint: q,
61
59
  nextFrame: _,
62
- notNil: j,
60
+ notNil: M,
63
61
  pointInPolygon: o,
64
- reblink: L,
62
+ reblink: S,
65
63
  requestAnimationFrameInterval: h,
66
64
  tweenProgress: U,
67
- uuid: y,
68
- worldBounding: k,
69
- worldBoundingBox: v,
70
- worldBoundingSphere: w
65
+ uuid: j,
66
+ worldBounding: P,
67
+ worldBoundingBox: k,
68
+ worldBoundingSphere: v
71
69
  }, Symbol.toStringTag, { value: "Module" }));
72
70
  export {
73
- uo as index
71
+ go as index
74
72
  };
@@ -1,6 +1,6 @@
1
1
  function A() {
2
2
  console.debug(
3
- "%c %c@realsee/dnalogel %cv3.43.0",
3
+ "%c %c@realsee/dnalogel %cv3.44.0",
4
4
  [
5
5
  "background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAMCAMAAACHgmeRAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAABLFBMVEUAAAAapPoap/oaqvkbrfkbr/gZnfwZoPsaqfnD4v/E4/8Ylv0clPm93/+/4P/B4f8Yj/683/8Wif+33P8Uhv+x2f8ShP+s1v8Pgf+n0/8Nf/+h0f8Lff8Lff8Nf/9dl/+czv8KfP8KfP+Lxf+Uyv+Xy/+Hwv+Jw/+Mxf+Oxv+RyP8aovsapfoap/oZmfwZm/wZnvsYnPsYkf4YlP0NePsDYfgYcfi43f+63v8Xiv8Xjf4EWfwCV/sWZ/qz2v+02/8Vh/8WiP8EUf8CTf4WXv2u1/+v2P8Thf8Thv8ETf8CR/8VV/+o1f+q1f8Qgv8Rg/8DSv8BRf8UVP+j0v+k0v8OgP8Pgf8DR/8DQv9Nhf+dzv+fz/+Kv/+Vyv+Xy/+azf+Oxv+Qx/+SyP////8MUhLdAAAAK3RSTlMACEWQ2bd98uQECPXxqO7c+Pb49vj2+Pb49vj23Oul8fMHA+TwerXXjEIG2P+bHgAAAAFiS0dEY1y+LaoAAAB+SURBVAjXY2BgZGJmYWVgYGBgY9fW0eVg4ORi4NbTNzDk4eXjZxAwMjYxNTO3EGQQsrSytrG1sxdmEHFwdHJ2cXUTZRBz9/D08vbxFWeQ8PMPCAwKDpFkkAoNC4+IjIqWZpCRlZOPiY2LV2BQVGJQTkhMUlEFWaOmrqGpxQAAyg0S9Dq+VPYAAAAASUVORK5CYII=')",
6
6
  "background-repeat: no-repeat",
@@ -1 +1 @@
1
- export default function deg2Rad(deg: number): number;
1
+ export declare function deg2Rad(deg: number): number;
@@ -1 +1 @@
1
- export default function rad2Deg(rad: number): number;
1
+ export declare function rad2Deg(rad: number): number;
@@ -1,14 +1,14 @@
1
1
  import { Vector3 } from 'three';
2
2
  export type AnyPosition = Vector3 | number[] | {
3
- x: number;
4
- y: number;
5
- z: number;
3
+ x?: number;
4
+ y?: number;
5
+ z?: number;
6
6
  };
7
7
  export type AnyPositions = Array<AnyPosition>;
8
8
  export declare const positionToVector3: ({ x, y, z }: {
9
- x: number;
10
- y: number;
11
- z: number;
9
+ x?: number;
10
+ y?: number;
11
+ z?: number;
12
12
  }) => Vector3;
13
13
  export declare const arrayPositionToVector3: (arrayPosition: number[]) => Vector3;
14
14
  export declare const anyPositionToVector3: (position: AnyPosition) => Vector3;