@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.
Files changed (278) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/Object3DHelperPlugin/Controller.d.ts +9 -9
  3. package/dist/Object3DHelperPlugin/FiveControllerWrapper.d.ts +4 -2
  4. package/dist/PanoMeasurePlugin/Model/area.d.ts +1 -1
  5. package/dist/PanoMeasurePlugin/Model/polygon.d.ts +1 -1
  6. package/dist/PanoMeasurePlugin/typings/data.d.ts +1 -2
  7. package/dist/Sculpt/Editors/BoxMeshEditor.d.ts +5 -0
  8. package/dist/Sculpt/Editors/CircleMeshEditor.d.ts +5 -0
  9. package/dist/Sculpt/Editors/CylinderMeshEditor.d.ts +5 -0
  10. package/dist/Sculpt/Editors/PrismMeshEditor.d.ts +5 -0
  11. package/dist/Sculpt/Editors/RectangleMeshEditor.d.ts +5 -0
  12. package/dist/Sculpt/Meshes/Box.d.ts +6 -24
  13. package/dist/Sculpt/Meshes/Circle.d.ts +0 -4
  14. package/dist/Sculpt/Meshes/Cylinder.d.ts +0 -1
  15. package/dist/Sculpt/Meshes/Line.d.ts +9 -22
  16. package/dist/Sculpt/Meshes/Polygon.d.ts +1 -5
  17. package/dist/Sculpt/Meshes/PolygonWithEdge.d.ts +1 -1
  18. package/dist/Sculpt/Meshes/Prism.d.ts +29 -10
  19. package/dist/Sculpt/Meshes/Rectangle.d.ts +1 -1
  20. package/dist/Sculpt/Objects/Base/index.d.ts +2 -1
  21. package/dist/Sculpt/Objects/Box/index.d.ts +7 -2
  22. package/dist/Sculpt/Objects/Circle/index.d.ts +3 -0
  23. package/dist/Sculpt/Objects/Cylinder/index.d.ts +3 -0
  24. package/dist/Sculpt/Objects/Line/index.d.ts +3 -0
  25. package/dist/Sculpt/Objects/Point/index.d.ts +3 -0
  26. package/dist/Sculpt/Objects/Polygon/index.d.ts +3 -0
  27. package/dist/Sculpt/Objects/Polyline/index.d.ts +3 -0
  28. package/dist/Sculpt/Objects/Prism/index.d.ts +3 -0
  29. package/dist/Sculpt/Objects/Rectangle/index.d.ts +12 -0
  30. package/dist/Sculpt/index.d.ts +11 -10
  31. package/dist/Sculpt/typings/style.d.ts +6 -0
  32. package/dist/Sculpt/utils/export.d.ts +24 -18
  33. package/dist/Sculpt/utils/sortPositionsByCameraPosition.d.ts +5 -0
  34. package/dist/Sculpt/utils/three/ColoredMesh.d.ts +4 -0
  35. package/dist/index.cjs.js +88 -3009
  36. package/dist/index.d.ts +79 -1
  37. package/dist/index.js +35153 -54255
  38. package/dist/index.umd.js +81 -3002
  39. package/dist/shared-utils/Object3DHelper/Base/BaseController.d.ts +1 -0
  40. package/dist/shared-utils/Object3DHelper/Base/BaseHelper.d.ts +7 -3
  41. package/dist/shared-utils/Object3DHelper/Controller/ScaleController.d.ts +0 -1
  42. package/dist/shared-utils/Object3DHelper/Helper/BoundingBoxHelper.d.ts +3 -1
  43. package/dist/shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.d.ts +2 -0
  44. package/dist/shared-utils/Object3DHelper/Helper/MoveHelper.d.ts +2 -1
  45. package/dist/shared-utils/Object3DHelper/Helper/RotateHelper.d.ts +2 -1
  46. package/dist/shared-utils/Object3DHelper/Helper/ScaleHelper.d.ts +4 -2
  47. package/dist/shared-utils/Object3DHelper/typings/index.d.ts +1 -1
  48. package/dist/shared-utils/Object3DHelper/utils/calculateScaleByCamera.d.ts +4 -1
  49. package/dist/shared-utils/five/FiveLine.d.ts +18 -14
  50. package/dist/shared-utils/index.d.ts +0 -1
  51. package/dist/shared-utils/math/planimetry.d.ts +1 -1
  52. package/dist/shared-utils/tag.d.ts +5 -7
  53. package/dist/shared-utils/three/boundingBox.d.ts +14 -20
  54. package/dist/shared-utils/three/core/LineGeometry.d.ts +13 -0
  55. package/dist/shared-utils/three/core/PrismGeometry.d.ts +14 -0
  56. package/dist/shared-utils/three/geometryUtil.d.ts +8 -0
  57. package/dist/shared-utils/three/getNormal.d.ts +5 -2
  58. package/libs/AreaMakerPlugin/Controller.js +47 -100
  59. package/libs/AreaMakerPlugin/index.js +12 -65
  60. package/libs/AreaMakerPlugin/utils/Item.js +102 -157
  61. package/libs/CSS3DRenderPlugin/Controller.js +45 -93
  62. package/libs/CSS3DRenderPlugin/index.js +15 -63
  63. package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +51 -106
  64. package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +79 -131
  65. package/libs/CruisePlugin/BaseController.js +90 -143
  66. package/libs/CruisePlugin/Move.js +39 -83
  67. package/libs/CruisePlugin/Work.js +52 -96
  68. package/libs/CruisePlugin/index.js +23 -67
  69. package/libs/CurrentPanoImagePlugin/Controller.js +88 -141
  70. package/libs/CurrentPanoImagePlugin/index.js +11 -64
  71. package/libs/GuideLinePlugin/Controller.js +13 -57
  72. package/libs/GuideLinePlugin/GuideLineItem.js +20 -64
  73. package/libs/GuideLinePlugin/GuideLineModeItem/index.js +3 -8
  74. package/libs/GuideLinePlugin/GuideLineModeItem.js +15 -59
  75. package/libs/GuideLinePlugin/index.js +23 -67
  76. package/libs/ModelMakerPlugin/Controller.js +125 -165
  77. package/libs/ModelMakerPlugin/index.js +23 -63
  78. package/libs/ModelMakerPlugin/item/baseItem.js +2 -3
  79. package/libs/ModelMakerPlugin/item/boxItem.js +2 -3
  80. package/libs/ModelMakerPlugin/item/polygonItem.js +6 -7
  81. package/libs/ModelMakerPlugin/item/prismItem.js +2 -3
  82. package/libs/ModelMakerPlugin/utils/getFiveDomEvent.js +2 -3
  83. package/libs/ModelTVVideoPlugin/Plugin.js +49 -97
  84. package/libs/ModelTVVideoPlugin/index.js +8 -56
  85. package/libs/Object3DHelperPlugin/Controller.d.ts +9 -9
  86. package/libs/Object3DHelperPlugin/Controller.js +105 -92
  87. package/libs/Object3DHelperPlugin/FiveControllerWrapper.d.ts +4 -2
  88. package/libs/Object3DHelperPlugin/FiveControllerWrapper.js +35 -30
  89. package/libs/Object3DHelperPlugin/index.js +15 -30
  90. package/libs/PanoCompassPlugin/Controller.js +46 -93
  91. package/libs/PanoCompassPlugin/index.js +17 -64
  92. package/libs/PanoCursorRaycasterPlugin/index.js +4 -3
  93. package/libs/PanoDoorLabelPlugin/BaseController.js +27 -80
  94. package/libs/PanoDoorLabelPlugin/Controller.js +80 -133
  95. package/libs/PanoDoorLabelPlugin/index.js +11 -64
  96. package/libs/PanoMeasurePlugin/Components/Controller0.js +79 -128
  97. package/libs/PanoMeasurePlugin/Components/Controller1.js +92 -141
  98. package/libs/PanoMeasurePlugin/Controller/BaseController.js +3 -2
  99. package/libs/PanoMeasurePlugin/Controller/EditController.js +73 -122
  100. package/libs/PanoMeasurePlugin/Controller/MixedController.js +3 -2
  101. package/libs/PanoMeasurePlugin/Controller/ViewController.js +3 -2
  102. package/libs/PanoMeasurePlugin/Controller/WatchController.js +72 -121
  103. package/libs/PanoMeasurePlugin/Controller/index.js +89 -135
  104. package/libs/PanoMeasurePlugin/Model/area.d.ts +1 -1
  105. package/libs/PanoMeasurePlugin/Model/area.js +25 -74
  106. package/libs/PanoMeasurePlugin/Model/index.js +3 -2
  107. package/libs/PanoMeasurePlugin/Model/line.js +1 -0
  108. package/libs/PanoMeasurePlugin/Model/polygon.d.ts +1 -1
  109. package/libs/PanoMeasurePlugin/Model/polygon.js +7 -7
  110. package/libs/PanoMeasurePlugin/Model/polyline.js +3 -2
  111. package/libs/PanoMeasurePlugin/Modules/Magnifier.js +1 -56
  112. package/libs/PanoMeasurePlugin/Modules/UIController/index.js +17 -66
  113. package/libs/PanoMeasurePlugin/index.js +18 -64
  114. package/libs/PanoMeasurePlugin/typings/data.d.ts +1 -2
  115. package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +5 -59
  116. package/libs/PanoMeasurePlugin/utils/line.js +3 -2
  117. package/libs/PanoRulerProPlugin/Controller.js +34 -89
  118. package/libs/PanoRulerProPlugin/RulerItems.js +92 -147
  119. package/libs/PanoRulerProPlugin/index.js +10 -65
  120. package/libs/PanoSpatialTagPlugin/Plugin.js +130 -178
  121. package/libs/PanoSpatialTagPlugin/index.js +6 -54
  122. package/libs/PanoTagPlugin/Components/Common/TagPoint.js +61 -116
  123. package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +138 -193
  124. package/libs/PanoTagPlugin/Components/Tag/index.js +140 -194
  125. package/libs/PanoTagPlugin/Components/TagContainer.js +58 -112
  126. package/libs/PanoTagPlugin/Components/TagItem.js +137 -191
  127. package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +109 -164
  128. package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +22 -76
  129. package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +33 -87
  130. package/libs/PanoTagPlugin/controller/Tag/PointTag.js +39 -94
  131. package/libs/PanoTagPlugin/controller/TagRender.js +18 -62
  132. package/libs/PanoTagPlugin/controller/TagUtil.js +80 -124
  133. package/libs/PanoTagPlugin/controller/index.js +37 -81
  134. package/libs/PanoTagPlugin/index.js +28 -72
  135. package/libs/PanoTagPlugin/utils/model/mediaPlane.js +14 -14
  136. package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +22 -77
  137. package/libs/PanoVideoPlugin/Controller.js +43 -96
  138. package/libs/PanoVideoPlugin/VideoMeshController.js +64 -119
  139. package/libs/PanoVideoPlugin/index.js +14 -67
  140. package/libs/PipelinePlugin/Controller.js +123 -176
  141. package/libs/PipelinePlugin/index.js +11 -64
  142. package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +15 -70
  143. package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +3 -58
  144. package/libs/PipelinePlugin/utils/Objects/Pipe.js +42 -97
  145. package/libs/Sculpt/Editors/BoxMeshEditor.d.ts +5 -0
  146. package/libs/Sculpt/Editors/BoxMeshEditor.js +98 -0
  147. package/libs/Sculpt/Editors/CircleMeshEditor.d.ts +5 -0
  148. package/libs/Sculpt/Editors/CircleMeshEditor.js +9 -0
  149. package/libs/Sculpt/Editors/CylinderMeshEditor.d.ts +5 -0
  150. package/libs/Sculpt/Editors/CylinderMeshEditor.js +41 -0
  151. package/libs/Sculpt/Editors/PrismMeshEditor.d.ts +5 -0
  152. package/libs/Sculpt/Editors/PrismMeshEditor.js +43 -0
  153. package/libs/Sculpt/Editors/RectangleMeshEditor.d.ts +5 -0
  154. package/libs/Sculpt/Editors/RectangleMeshEditor.js +70 -0
  155. package/libs/Sculpt/Meshes/Box.d.ts +6 -24
  156. package/libs/Sculpt/Meshes/Box.js +22 -93
  157. package/libs/Sculpt/Meshes/Circle.d.ts +0 -4
  158. package/libs/Sculpt/Meshes/Circle.js +18 -27
  159. package/libs/Sculpt/Meshes/Cylinder.d.ts +0 -1
  160. package/libs/Sculpt/Meshes/Cylinder.js +17 -24
  161. package/libs/Sculpt/Meshes/Line.d.ts +9 -22
  162. package/libs/Sculpt/Meshes/Line.js +85 -104
  163. package/libs/Sculpt/Meshes/LineWithDots.js +10 -14
  164. package/libs/Sculpt/Meshes/Point.js +29 -34
  165. package/libs/Sculpt/Meshes/Polygon.d.ts +1 -5
  166. package/libs/Sculpt/Meshes/Polygon.js +40 -53
  167. package/libs/Sculpt/Meshes/PolygonWithEdge.d.ts +1 -1
  168. package/libs/Sculpt/Meshes/Prism.d.ts +29 -10
  169. package/libs/Sculpt/Meshes/Prism.js +108 -84
  170. package/libs/Sculpt/Meshes/Rectangle.d.ts +1 -1
  171. package/libs/Sculpt/Meshes/Rectangle.js +7 -10
  172. package/libs/Sculpt/Meshes/RectangleWithEdge.js +17 -20
  173. package/libs/Sculpt/Objects/Base/index.d.ts +2 -1
  174. package/libs/Sculpt/Objects/Base/index.js +16 -17
  175. package/libs/Sculpt/Objects/Box/index.d.ts +7 -2
  176. package/libs/Sculpt/Objects/Box/index.js +72 -60
  177. package/libs/Sculpt/Objects/Circle/index.d.ts +3 -0
  178. package/libs/Sculpt/Objects/Circle/index.js +34 -30
  179. package/libs/Sculpt/Objects/Cylinder/index.d.ts +3 -0
  180. package/libs/Sculpt/Objects/Cylinder/index.js +46 -42
  181. package/libs/Sculpt/Objects/Line/Editor.js +8 -10
  182. package/libs/Sculpt/Objects/Line/index.d.ts +3 -0
  183. package/libs/Sculpt/Objects/Line/index.js +45 -41
  184. package/libs/Sculpt/Objects/Point/index.d.ts +3 -0
  185. package/libs/Sculpt/Objects/Point/index.js +33 -29
  186. package/libs/Sculpt/Objects/Polygon/index.d.ts +3 -0
  187. package/libs/Sculpt/Objects/Polygon/index.js +67 -63
  188. package/libs/Sculpt/Objects/Polyline/index.d.ts +3 -0
  189. package/libs/Sculpt/Objects/Polyline/index.js +46 -42
  190. package/libs/Sculpt/Objects/Prism/index.d.ts +3 -0
  191. package/libs/Sculpt/Objects/Prism/index.js +58 -53
  192. package/libs/Sculpt/Objects/Rectangle/index.d.ts +12 -0
  193. package/libs/Sculpt/Objects/Rectangle/index.js +142 -81
  194. package/libs/Sculpt/index.d.ts +11 -10
  195. package/libs/Sculpt/index.js +105 -107
  196. package/libs/Sculpt/typings/style.d.ts +6 -0
  197. package/libs/Sculpt/utils/export.d.ts +24 -18
  198. package/libs/Sculpt/utils/export.js +52 -19
  199. package/libs/Sculpt/utils/sortPositionsByCameraPosition.d.ts +5 -0
  200. package/libs/Sculpt/utils/sortPositionsByCameraPosition.js +9 -0
  201. package/libs/Sculpt/utils/three/ColoredMesh.d.ts +4 -0
  202. package/libs/Sculpt/utils/three/ColoredMesh.js +40 -37
  203. package/libs/base/BasePlugin.js +10 -15
  204. package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +96 -147
  205. package/libs/floorplan/MapviewFloorplanPlugin/index.js +12 -63
  206. package/libs/floorplan/ModelFloorplanPlugin/Controller.js +53 -105
  207. package/libs/floorplan/ModelFloorplanPlugin/index.js +11 -63
  208. package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +65 -118
  209. package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +11 -64
  210. package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +54 -106
  211. package/libs/floorplan/TopviewFloorplanPlugin/index.js +11 -63
  212. package/libs/floorplan/index.js +0 -5
  213. package/libs/index.d.ts +79 -1
  214. package/libs/index.js +229 -215
  215. package/libs/shared-utils/Object3DHelper/Base/BaseController.d.ts +1 -0
  216. package/libs/shared-utils/Object3DHelper/Base/BaseController.js +112 -122
  217. package/libs/shared-utils/Object3DHelper/Base/BaseHelper.d.ts +7 -3
  218. package/libs/shared-utils/Object3DHelper/Base/BaseHelper.js +60 -39
  219. package/libs/shared-utils/Object3DHelper/Controller/RotateController.js +47 -47
  220. package/libs/shared-utils/Object3DHelper/Controller/ScaleController.d.ts +0 -1
  221. package/libs/shared-utils/Object3DHelper/Controller/ScaleController.js +28 -28
  222. package/libs/shared-utils/Object3DHelper/Helper/BoundingBoxHelper.d.ts +3 -1
  223. package/libs/shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js +25 -18
  224. package/libs/shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.d.ts +2 -0
  225. package/libs/shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js +18 -14
  226. package/libs/shared-utils/Object3DHelper/Helper/MoveHelper.d.ts +2 -1
  227. package/libs/shared-utils/Object3DHelper/Helper/MoveHelper.js +1 -0
  228. package/libs/shared-utils/Object3DHelper/Helper/RotateHelper.d.ts +2 -1
  229. package/libs/shared-utils/Object3DHelper/Helper/RotateHelper.js +2 -1
  230. package/libs/shared-utils/Object3DHelper/Helper/ScaleHelper.d.ts +4 -2
  231. package/libs/shared-utils/Object3DHelper/Helper/ScaleHelper.js +40 -28
  232. package/libs/shared-utils/Object3DHelper/typings/index.d.ts +1 -1
  233. package/libs/shared-utils/Object3DHelper/utils/calculateScaleByCamera.d.ts +4 -1
  234. package/libs/shared-utils/Object3DHelper/utils/calculateScaleByCamera.js +4 -4
  235. package/libs/shared-utils/five/FiveDomEvents.js +88 -88
  236. package/libs/shared-utils/five/FiveLine.d.ts +18 -14
  237. package/libs/shared-utils/five/FiveLine.js +31 -13
  238. package/libs/shared-utils/five/index.js +2 -7
  239. package/libs/shared-utils/five/lookObject.js +27 -32
  240. package/libs/shared-utils/index.d.ts +0 -1
  241. package/libs/shared-utils/index.js +31 -33
  242. package/libs/shared-utils/logger.js +1 -1
  243. package/libs/shared-utils/math/planimetry.d.ts +1 -1
  244. package/libs/shared-utils/tag.d.ts +5 -7
  245. package/libs/shared-utils/tag.js +1 -1
  246. package/libs/shared-utils/three/boundingBox.d.ts +14 -20
  247. package/libs/shared-utils/three/core/LineGeometry.d.ts +13 -0
  248. package/libs/shared-utils/three/core/LineGeometry.js +26 -0
  249. package/libs/shared-utils/three/core/PrismGeometry.d.ts +14 -0
  250. package/libs/shared-utils/three/core/PrismGeometry.js +42 -0
  251. package/libs/shared-utils/three/earcut3D.js +5 -5
  252. package/libs/shared-utils/three/geometryUtil.d.ts +8 -0
  253. package/libs/shared-utils/three/geometryUtil.js +3 -1
  254. package/libs/shared-utils/three/getNormal.d.ts +5 -2
  255. package/libs/shared-utils/three/getNormal.js +6 -5
  256. package/libs/shared-utils/three/index.js +0 -5
  257. package/package.json +1 -1
  258. package/dist/Sculpt/Objects/Box/Editor.d.ts +0 -5
  259. package/dist/Sculpt/Objects/Circle/Editor.d.ts +0 -5
  260. package/dist/Sculpt/Objects/Cylinder/Editor.d.ts +0 -5
  261. package/dist/Sculpt/Objects/Prism/Editor.d.ts +0 -5
  262. package/dist/Sculpt/Objects/Rectangle/Editor.d.ts +0 -5
  263. package/dist/Sculpt/utils/getBetterNormal.d.ts +0 -2
  264. package/libs/Sculpt/Objects/Box/Editor.d.ts +0 -5
  265. package/libs/Sculpt/Objects/Box/Editor.js +0 -44
  266. package/libs/Sculpt/Objects/Circle/Editor.d.ts +0 -5
  267. package/libs/Sculpt/Objects/Circle/Editor.js +0 -9
  268. package/libs/Sculpt/Objects/Cylinder/Editor.d.ts +0 -5
  269. package/libs/Sculpt/Objects/Cylinder/Editor.js +0 -41
  270. package/libs/Sculpt/Objects/Prism/Editor.d.ts +0 -5
  271. package/libs/Sculpt/Objects/Prism/Editor.js +0 -44
  272. package/libs/Sculpt/Objects/Rectangle/Editor.d.ts +0 -5
  273. package/libs/Sculpt/Objects/Rectangle/Editor.js +0 -9
  274. package/libs/Sculpt/utils/getBetterNormal.d.ts +0 -2
  275. package/libs/Sculpt/utils/getBetterNormal.js +0 -8
  276. package/libs/vendor/three/build/three.module.js +0 -19336
  277. package/libs/vendor/three/examples/jsm/lines/LineGeometry.js +0 -28
  278. package/libs/vendor/three/examples/jsm/lines/LineSegmentsGeometry.js +0 -69
@@ -1,10 +1,10 @@
1
1
  import { SvelteComponent as ee, init as te, safe_not_equal as oe, append_styles as re, element as j, space as T, create_component as q, attr as w, toggle_class as D, insert as I, append as g, mount_component as O, transition_in as k, transition_out as _, check_outros as R, detach as K, destroy_component as U, onMount as ie, onDestroy as le, add_render_callback as F, create_bidirectional_transition as E, text as V, set_style as W, listen as X, set_data as Y, group_outros as B } from "../../vendor/svelte/internal/index.js";
2
2
  import ne from "./Common/Switcher1.js";
3
- import me from "./Common/CircleButton.js";
3
+ import se from "./Common/CircleButton.js";
4
4
  import H from "../Controller/EditController.js";
5
- import pe from "./Common/Exit.js";
5
+ import ae from "./Common/Exit.js";
6
6
  import { fade as S } from "../../vendor/svelte/transition/index.js";
7
- import { IconUndo as se, IconOk as ae } from "./Common/icons/index.js";
7
+ import { IconUndo as me, IconOk as pe } from "./Common/icons/index.js";
8
8
  import "../Modules/UIController/mobileHTML.js";
9
9
  import "../../vendor/svelte/easing/index.js";
10
10
  import "../Model/line.js";
@@ -12,6 +12,7 @@ import "../../shared-utils/uuid.js";
12
12
  import "../utils/line.js";
13
13
  import "../../shared-utils/five/FiveLine.js";
14
14
  import "@realsee/five/line";
15
+ import "../../shared-utils/isNil.js";
15
16
  import "../utils/constants.js";
16
17
  import "three";
17
18
  import "@realsee/five";
@@ -58,73 +59,23 @@ import "three/examples/jsm/renderers/CSS3DRenderer";
58
59
  import "../../CSS3DRenderPlugin/utils/even.js";
59
60
  import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
60
61
  import "../../shared-utils/three/getObjectVisible.js";
61
- import "../../vendor/three/examples/jsm/lines/LineGeometry.js";
62
- import "../../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
63
- import "../../vendor/three/build/three.module.js";
64
62
  import "../../shared-utils/three/core/Sphere.js";
65
63
  import "animejs";
66
- import "../../shared-utils/isNil.js";
67
64
  import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
68
- import "../../Sculpt/Meshes/Polygon.js";
69
- import "../../Sculpt/typings/style.js";
70
- import "../../Sculpt/utils/three/ColoredMesh.js";
71
- import "../../Sculpt/utils/Modules/Global.js";
72
- import "../../Sculpt/utils/Modules/Cursor.js";
73
- import "../../Object3DHelperPlugin/Controller.js";
74
- import "../../base/BasePlugin.js";
75
- import "../../shared-utils/url/absoluteUrl.js";
76
- import "../../vendor/hotkeys-js/dist/hotkeys.esm.js";
77
- import "../../Sculpt/utils/three/rayOnLine.js";
78
- import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
79
- import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
80
- import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
81
- import "../../shared-utils/three/boundingBox.js";
82
- import "../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
83
- import "../../shared-utils/Object3DHelper/utils/direction.js";
84
- import "../../shared-utils/Object3DHelper/Constants/color.js";
85
- import "../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
86
- import "../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
65
+ import "../../shared-utils/three/PointSelector/utils/html.js";
66
+ import "../../shared-utils/five/initialCSS3DRender.js";
87
67
  import "../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
88
68
  import "../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
89
69
  import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
90
- import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
91
- import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
92
- import "../../shared-utils/util.js";
93
- import "../../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
94
- import "../../shared-utils/three/PointSelector/utils/html.js";
95
- import "../../shared-utils/five/initialCSS3DRender.js";
96
70
  import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
97
71
  import "../../Sculpt/Meshes/Line.js";
72
+ import "../../Sculpt/typings/style.js";
98
73
  import "../../Sculpt/utils/removeAllTag.js";
99
74
  import "../../Sculpt/utils/Meshes/getLengthHTML.js";
100
75
  import "../../shared-utils/three/applyObjectMatrixWorld.js";
76
+ import "../../shared-utils/util.js";
77
+ import "../../shared-utils/three/core/LineGeometry.js";
101
78
  import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
102
- import "../../shared-utils/Object3DHelper/Helper/RotateHelper.js";
103
- import "../../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
104
- import "../../shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
105
- import "../../shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
106
- import "../../shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
107
- import "../../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
108
- import "../../shared-utils/Object3DHelper/Controller/MoveController.js";
109
- import "../../shared-utils/Object3DHelper/Base/BaseController.js";
110
- import "../../shared-utils/threex/domevents/index.js";
111
- import "../../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
112
- import "../../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
113
- import "../../Object3DHelperPlugin/FiveControllerWrapper.js";
114
- import "../../shared-utils/Object3DHelper/index.js";
115
- import "../../shared-utils/Object3DHelper/Controller/RotateController.js";
116
- import "../../shared-utils/math/rad2Deg.js";
117
- import "../../shared-utils/math/deg2Rad.js";
118
- import "../../shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
119
- import "../../shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
120
- import "../../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
121
- import "../../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
122
- import "../../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
123
- import "../../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
124
- import "../../shared-utils/Object3DHelper/Controller/ScaleController.js";
125
- import "../../shared-utils/five/fiveModelLoad.js";
126
- import "../../shared-utils/five/FiveDomEvents.js";
127
- import "../../shared-utils/five/calculateThreeMouse.js";
128
79
  import "../../shared-utils/isTouchDevice.js";
129
80
  import "../../shared-utils/five/getPosition.js";
130
81
  import "../../shared-utils/five/getRaycasterByNdcPosition.js";
@@ -139,7 +90,7 @@ function fe(o) {
139
90
  }
140
91
  function J(o) {
141
92
  let t, i;
142
- return t = new pe({
93
+ return t = new ae({
143
94
  props: {
144
95
  onClick: (
145
96
  /*measureController*/
@@ -150,12 +101,12 @@ function J(o) {
150
101
  c() {
151
102
  q(t.$$.fragment);
152
103
  },
153
- m(e, p) {
154
- O(t, e, p), i = !0;
104
+ m(e, a) {
105
+ O(t, e, a), i = !0;
155
106
  },
156
- p(e, p) {
107
+ p(e, a) {
157
108
  const l = {};
158
- p & /*measureController*/
109
+ a & /*measureController*/
159
110
  1 && (l.onClick = /*measureController*/
160
111
  e[0].disable), t.$set(l);
161
112
  },
@@ -171,7 +122,7 @@ function J(o) {
171
122
  };
172
123
  }
173
124
  function L(o) {
174
- let t, i, e, p;
125
+ let t, i, e, a;
175
126
  return i = new ne({
176
127
  props: {
177
128
  options: [
@@ -204,13 +155,13 @@ function L(o) {
204
155
  t = j("div"), q(i.$$.fragment), w(t, "class", "mode-switcher svelte-ldjbp8");
205
156
  },
206
157
  m(l, n) {
207
- I(l, t, n), O(i, t, null), p = !0;
158
+ I(l, t, n), O(i, t, null), a = !0;
208
159
  },
209
160
  p(l, n) {
210
161
  o = l;
211
- const s = {};
162
+ const m = {};
212
163
  n & /*i18n*/
213
- 4 && (s.options = [
164
+ 4 && (m.options = [
214
165
  {
215
166
  key: "line",
216
167
  value: (
@@ -226,18 +177,18 @@ function L(o) {
226
177
  )
227
178
  }
228
179
  ]), n & /*measureController*/
229
- 1 && (s.defaultKey = /*measureController*/
180
+ 1 && (m.defaultKey = /*measureController*/
230
181
  o[0].currentMeasureType), n & /*measureController*/
231
- 1 && (s.onChange = /*measureController*/
232
- o[0].changeMeasureType), i.$set(s);
182
+ 1 && (m.onChange = /*measureController*/
183
+ o[0].changeMeasureType), i.$set(m);
233
184
  },
234
185
  i(l) {
235
- p || (k(i.$$.fragment, l), l && F(() => {
236
- p && (e || (e = E(t, S, { duration: P }, !0)), e.run(1));
237
- }), p = !0);
186
+ a || (k(i.$$.fragment, l), l && F(() => {
187
+ a && (e || (e = E(t, S, { duration: P }, !0)), e.run(1));
188
+ }), a = !0);
238
189
  },
239
190
  o(l) {
240
- _(i.$$.fragment, l), l && (e || (e = E(t, S, { duration: P }, !1)), e.run(0)), p = !1;
191
+ _(i.$$.fragment, l), l && (e || (e = E(t, S, { duration: P }, !1)), e.run(0)), a = !1;
241
192
  },
242
193
  d(l) {
243
194
  l && K(t), U(i), l && e && e.end();
@@ -245,13 +196,13 @@ function L(o) {
245
196
  };
246
197
  }
247
198
  function N(o) {
248
- let t, i, e, p = (
199
+ let t, i, e, a = (
249
200
  /*i18n*/
250
201
  o[2]("撤销") + ""
251
- ), l, n, s, f, C;
202
+ ), l, n, m, f, C;
252
203
  return {
253
204
  c() {
254
- t = j("div"), i = j("div"), e = T(), l = V(p), w(i, "class", "icon svelte-ldjbp8"), W(i, "background-image", `url(${se})`), w(t, "class", "button svelte-ldjbp8"), D(
205
+ t = j("div"), i = j("div"), e = T(), l = V(a), w(i, "class", "icon svelte-ldjbp8"), W(i, "background-image", `url(${me})`), w(t, "class", "button svelte-ldjbp8"), D(
255
206
  t,
256
207
  "forbid",
257
208
  /*buttonState*/
@@ -259,7 +210,7 @@ function N(o) {
259
210
  );
260
211
  },
261
212
  m(r, c) {
262
- I(r, t, c), g(t, i), g(t, e), g(t, l), s = !0, f || (C = X(
213
+ I(r, t, c), g(t, i), g(t, e), g(t, l), m = !0, f || (C = X(
263
214
  t,
264
215
  "click",
265
216
  /*click_handler*/
@@ -267,9 +218,9 @@ function N(o) {
267
218
  ), f = !0);
268
219
  },
269
220
  p(r, c) {
270
- o = r, (!s || c & /*i18n*/
271
- 4) && p !== (p = /*i18n*/
272
- o[2]("撤销") + "") && Y(l, p), (!s || c & /*buttonState*/
221
+ o = r, (!m || c & /*i18n*/
222
+ 4) && a !== (a = /*i18n*/
223
+ o[2]("撤销") + "") && Y(l, a), (!m || c & /*buttonState*/
273
224
  8) && D(
274
225
  t,
275
226
  "forbid",
@@ -278,12 +229,12 @@ function N(o) {
278
229
  );
279
230
  },
280
231
  i(r) {
281
- s || (r && F(() => {
282
- s && (n || (n = E(t, S, { duration: P }, !0)), n.run(1));
283
- }), s = !0);
232
+ m || (r && F(() => {
233
+ m && (n || (n = E(t, S, { duration: P }, !0)), n.run(1));
234
+ }), m = !0);
284
235
  },
285
236
  o(r) {
286
- r && (n || (n = E(t, S, { duration: P }, !1)), n.run(0)), s = !1;
237
+ r && (n || (n = E(t, S, { duration: P }, !1)), n.run(0)), m = !1;
287
238
  },
288
239
  d(r) {
289
240
  r && K(t), r && n && n.end(), f = !1, C();
@@ -291,16 +242,16 @@ function N(o) {
291
242
  };
292
243
  }
293
244
  function Q(o) {
294
- let t, i, e, p = (
245
+ let t, i, e, a = (
295
246
  /*i18n*/
296
247
  o[2]("结束") + ""
297
- ), l, n, s, f, C;
248
+ ), l, n, m, f, C;
298
249
  return {
299
250
  c() {
300
- t = j("div"), i = j("div"), e = T(), l = V(p), w(i, "class", "icon svelte-ldjbp8"), W(i, "background-image", `url(${ae})`), w(t, "class", "button svelte-ldjbp8");
251
+ t = j("div"), i = j("div"), e = T(), l = V(a), w(i, "class", "icon svelte-ldjbp8"), W(i, "background-image", `url(${pe})`), w(t, "class", "button svelte-ldjbp8");
301
252
  },
302
253
  m(r, c) {
303
- I(r, t, c), g(t, i), g(t, e), g(t, l), s = !0, f || (C = X(
254
+ I(r, t, c), g(t, i), g(t, e), g(t, l), m = !0, f || (C = X(
304
255
  t,
305
256
  "click",
306
257
  /*complete*/
@@ -308,17 +259,17 @@ function Q(o) {
308
259
  ), f = !0);
309
260
  },
310
261
  p(r, c) {
311
- o = r, (!s || c & /*i18n*/
312
- 4) && p !== (p = /*i18n*/
313
- o[2]("结束") + "") && Y(l, p);
262
+ o = r, (!m || c & /*i18n*/
263
+ 4) && a !== (a = /*i18n*/
264
+ o[2]("结束") + "") && Y(l, a);
314
265
  },
315
266
  i(r) {
316
- s || (r && F(() => {
317
- s && (n || (n = E(t, S, { duration: P }, !0)), n.run(1));
318
- }), s = !0);
267
+ m || (r && F(() => {
268
+ m && (n || (n = E(t, S, { duration: P }, !0)), n.run(1));
269
+ }), m = !0);
319
270
  },
320
271
  o(r) {
321
- r && (n || (n = E(t, S, { duration: P }, !1)), n.run(0)), s = !1;
272
+ r && (n || (n = E(t, S, { duration: P }, !1)), n.run(0)), m = !1;
322
273
  },
323
274
  d(r) {
324
275
  r && K(t), r && n && n.end(), f = !1, C();
@@ -326,10 +277,10 @@ function Q(o) {
326
277
  };
327
278
  }
328
279
  function ue(o) {
329
- let t, i, e, p, l, n, s, f, C, r, c, z, M, b = (
280
+ let t, i, e, a, l, n, m, f, C, r, c, z, M, b = (
330
281
  /*showExit*/
331
282
  o[1] && J(o)
332
- ), a = (
283
+ ), p = (
333
284
  /*measureController*/
334
285
  o[0].allowMeasureType.length >= 2 && /*buttonState*/
335
286
  o[3] === "start" && L(o)
@@ -337,7 +288,7 @@ function ue(o) {
337
288
  /*showButton*/
338
289
  o[4] && N(o)
339
290
  );
340
- c = new me({
291
+ c = new se({
341
292
  props: {
342
293
  onClick: (
343
294
  /*func*/
@@ -365,68 +316,68 @@ function ue(o) {
365
316
  );
366
317
  return {
367
318
  c() {
368
- t = j("div"), b && b.c(), i = T(), e = j("div"), p = j("div"), l = T(), n = j("div"), a && a.c(), s = T(), f = j("div"), u && u.c(), C = T(), r = j("div"), q(c.$$.fragment), z = T(), d && d.c(), w(p, "class", "mask svelte-ldjbp8"), w(r, "class", "main-button svelte-ldjbp8"), D(r, "forbid", !/*allowAddPoint*/
319
+ t = j("div"), b && b.c(), i = T(), e = j("div"), a = j("div"), l = T(), n = j("div"), p && p.c(), m = T(), f = j("div"), u && u.c(), C = T(), r = j("div"), q(c.$$.fragment), z = T(), d && d.c(), w(a, "class", "mask svelte-ldjbp8"), w(r, "class", "main-button svelte-ldjbp8"), D(r, "forbid", !/*allowAddPoint*/
369
320
  o[5]), w(f, "class", "controller svelte-ldjbp8"), w(n, "class", "center svelte-ldjbp8"), w(e, "class", "bottom svelte-ldjbp8"), w(t, "class", "Measure-Controller svelte-ldjbp8");
370
321
  },
371
- m(m, v) {
372
- I(m, t, v), b && b.m(t, null), g(t, i), g(t, e), g(e, p), g(e, l), g(e, n), a && a.m(n, null), g(n, s), g(n, f), u && u.m(f, null), g(f, C), g(f, r), O(c, r, null), g(f, z), d && d.m(f, null), M = !0;
322
+ m(s, v) {
323
+ I(s, t, v), b && b.m(t, null), g(t, i), g(t, e), g(e, a), g(e, l), g(e, n), p && p.m(n, null), g(n, m), g(n, f), u && u.m(f, null), g(f, C), g(f, r), O(c, r, null), g(f, z), d && d.m(f, null), M = !0;
373
324
  },
374
- p(m, [v]) {
325
+ p(s, [v]) {
375
326
  /*showExit*/
376
- m[1] ? b ? (b.p(m, v), v & /*showExit*/
377
- 2 && k(b, 1)) : (b = J(m), b.c(), k(b, 1), b.m(t, i)) : b && (B(), _(b, 1, 1, () => {
327
+ s[1] ? b ? (b.p(s, v), v & /*showExit*/
328
+ 2 && k(b, 1)) : (b = J(s), b.c(), k(b, 1), b.m(t, i)) : b && (B(), _(b, 1, 1, () => {
378
329
  b = null;
379
330
  }), R()), /*measureController*/
380
- m[0].allowMeasureType.length >= 2 && /*buttonState*/
381
- m[3] === "start" ? a ? (a.p(m, v), v & /*measureController, buttonState*/
382
- 9 && k(a, 1)) : (a = L(m), a.c(), k(a, 1), a.m(n, s)) : a && (B(), _(a, 1, 1, () => {
383
- a = null;
331
+ s[0].allowMeasureType.length >= 2 && /*buttonState*/
332
+ s[3] === "start" ? p ? (p.p(s, v), v & /*measureController, buttonState*/
333
+ 9 && k(p, 1)) : (p = L(s), p.c(), k(p, 1), p.m(n, m)) : p && (B(), _(p, 1, 1, () => {
334
+ p = null;
384
335
  }), R()), /*showButton*/
385
- m[4] ? u ? (u.p(m, v), v & /*showButton*/
386
- 16 && k(u, 1)) : (u = N(m), u.c(), k(u, 1), u.m(f, C)) : u && (B(), _(u, 1, 1, () => {
336
+ s[4] ? u ? (u.p(s, v), v & /*showButton*/
337
+ 16 && k(u, 1)) : (u = N(s), u.c(), k(u, 1), u.m(f, C)) : u && (B(), _(u, 1, 1, () => {
387
338
  u = null;
388
339
  }), R());
389
340
  const y = {};
390
341
  v & /*buttonState*/
391
342
  8 && (y.onClick = /*func*/
392
- m[14]), v & /*buttonState*/
343
+ s[14]), v & /*buttonState*/
393
344
  8 && (y.text = /*buttonTextMap*/
394
- m[6][
345
+ s[6][
395
346
  /*buttonState*/
396
- m[3]
347
+ s[3]
397
348
  ]), v & /*buttonState*/
398
349
  8 && (y.color = /*buttonColorMap*/
399
- m[7][
350
+ s[7][
400
351
  /*buttonState*/
401
- m[3]
352
+ s[3]
402
353
  ]), c.$set(y), (!M || v & /*allowAddPoint*/
403
354
  32) && D(r, "forbid", !/*allowAddPoint*/
404
- m[5]), /*showButton*/
405
- m[4] ? d ? (d.p(m, v), v & /*showButton*/
406
- 16 && k(d, 1)) : (d = Q(m), d.c(), k(d, 1), d.m(f, null)) : d && (B(), _(d, 1, 1, () => {
355
+ s[5]), /*showButton*/
356
+ s[4] ? d ? (d.p(s, v), v & /*showButton*/
357
+ 16 && k(d, 1)) : (d = Q(s), d.c(), k(d, 1), d.m(f, null)) : d && (B(), _(d, 1, 1, () => {
407
358
  d = null;
408
359
  }), R());
409
360
  },
410
- i(m) {
411
- M || (k(b), k(a), k(u), k(c.$$.fragment, m), k(d), M = !0);
361
+ i(s) {
362
+ M || (k(b), k(p), k(u), k(c.$$.fragment, s), k(d), M = !0);
412
363
  },
413
- o(m) {
414
- _(b), _(a), _(u), _(c.$$.fragment, m), _(d), M = !1;
364
+ o(s) {
365
+ _(b), _(p), _(u), _(c.$$.fragment, s), _(d), M = !1;
415
366
  },
416
- d(m) {
417
- m && K(t), b && b.d(), a && a.d(), u && u.d(), U(c), d && d.d();
367
+ d(s) {
368
+ s && K(t), b && b.d(), p && p.d(), u && u.d(), U(c), d && d.d();
418
369
  }
419
370
  };
420
371
  }
421
372
  const P = 100;
422
373
  function de(o, t, i) {
423
- let { measureController: e } = t, { showExit: p = !1 } = t, { i18n: l = (h) => h } = t;
374
+ let { measureController: e } = t, { showExit: a = !1 } = t, { i18n: l = (h) => h } = t;
424
375
  const n = {
425
376
  start: l("开始"),
426
377
  add: l("添加"),
427
378
  end: l("结束"),
428
379
  complete: l("完成")
429
- }, s = {
380
+ }, m = {
430
381
  start: "white",
431
382
  add: "white",
432
383
  end: "blue",
@@ -434,52 +385,52 @@ function de(o, t, i) {
434
385
  };
435
386
  let f = !1, C = !0, r = "start", c = e.currentMeasureType;
436
387
  const z = () => {
437
- e.getCurrentMode() !== "Edit" ? e.changeMode("Edit") : (a("add"), M());
388
+ e.getCurrentMode() !== "Edit" ? e.changeMode("Edit") : (p("add"), M());
438
389
  }, M = () => {
439
390
  e.controller instanceof H && e.controller.selectPoint();
440
391
  }, b = () => {
441
392
  e.controller instanceof H && e.controller.complete();
442
- }, a = (h) => {
393
+ }, p = (h) => {
443
394
  i(3, r = h);
444
395
  }, u = () => {
445
396
  M(), A("allow");
446
397
  }, d = () => {
447
- a("complete");
448
- }, m = () => {
449
- e.currentMeasureType === "area" && r === "complete" && a("add");
398
+ p("complete");
399
+ }, s = () => {
400
+ e.currentMeasureType === "area" && r === "complete" && p("add");
450
401
  }, v = (h) => {
451
402
  h.length;
452
403
  }, y = () => {
453
- a("start"), A("allow");
404
+ p("start"), A("allow");
454
405
  }, A = (h) => {
455
406
  i(5, C = h === "allow");
456
407
  }, G = (h) => {
457
408
  i(12, c = h);
458
409
  }, Z = (h) => {
459
- h.isEmpty && a("start");
410
+ h.isEmpty && p("start");
460
411
  };
461
412
  ie(() => {
462
- e.hook.on("revoke", Z), e.hook.on("measureTypeChange", G), e.hook.on("modeChange", y), e.hook.on("pointsChange", v), e.hook.on("allowAddPointStateChange", A), e.hook.on("readyComplete", d), e.hook.on("notReadyComplete", m), e.hook.on("complete", y);
413
+ e.hook.on("revoke", Z), e.hook.on("measureTypeChange", G), e.hook.on("modeChange", y), e.hook.on("pointsChange", v), e.hook.on("allowAddPointStateChange", A), e.hook.on("readyComplete", d), e.hook.on("notReadyComplete", s), e.hook.on("complete", y);
463
414
  }), le(() => {
464
- e.hook.off("measureTypeChange", G), e.hook.off("modeChange", y), e.hook.off("allowAddPointStateChange", A), e.hook.off("readyComplete", d), e.hook.off("pointsChange", v), e.hook.off("notReadyComplete", m), e.hook.off("complete", y);
415
+ e.hook.off("measureTypeChange", G), e.hook.off("modeChange", y), e.hook.off("allowAddPointStateChange", A), e.hook.off("readyComplete", d), e.hook.off("pointsChange", v), e.hook.off("notReadyComplete", s), e.hook.off("complete", y);
465
416
  });
466
417
  const $ = () => e.revoke(), x = () => {
467
418
  r === "start" ? z() : r === "add" ? M() : (r === "end" || r === "complete") && u();
468
419
  };
469
420
  return o.$$set = (h) => {
470
- "measureController" in h && i(0, e = h.measureController), "showExit" in h && i(1, p = h.showExit), "i18n" in h && i(2, l = h.i18n);
421
+ "measureController" in h && i(0, e = h.measureController), "showExit" in h && i(1, a = h.showExit), "i18n" in h && i(2, l = h.i18n);
471
422
  }, o.$$.update = () => {
472
423
  o.$$.dirty & /*currentMeasureType, buttonState*/
473
424
  4104 && i(4, f = c === "area" && r !== "start");
474
425
  }, [
475
426
  e,
476
- p,
427
+ a,
477
428
  l,
478
429
  r,
479
430
  f,
480
431
  C,
481
432
  n,
482
- s,
433
+ m,
483
434
  z,
484
435
  M,
485
436
  b,
@@ -489,7 +440,7 @@ function de(o, t, i) {
489
440
  x
490
441
  ];
491
442
  }
492
- class Jo extends ee {
443
+ class Vt extends ee {
493
444
  constructor(t) {
494
445
  super(), te(
495
446
  this,
@@ -507,5 +458,5 @@ class Jo extends ee {
507
458
  }
508
459
  }
509
460
  export {
510
- Jo as default
461
+ Vt as default
511
462
  };
@@ -19,13 +19,14 @@ import "../../shared-utils/uuid.js";
19
19
  import "../utils/line.js";
20
20
  import "../../shared-utils/five/FiveLine.js";
21
21
  import "@realsee/five/line";
22
+ import "../../shared-utils/isNil.js";
22
23
  import "../utils/constants.js";
23
24
  import "@realsee/five";
24
25
  import "../utils/dom/distanceItem.js";
25
26
  import "../utils/dom/base.js";
26
27
  import "../utils/isNDCPointInScreen.js";
27
28
  import "../../shared-utils/three/centerPoint.js";
28
- class V {
29
+ class B {
29
30
  constructor(e) {
30
31
  i(this, "model");
31
32
  i(this, "five");
@@ -87,5 +88,5 @@ class V {
87
88
  }
88
89
  }
89
90
  export {
90
- V as default
91
+ B as default
91
92
  };