@realsee/dnalogel 3.53.4 → 3.53.5-alpha.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 (474) hide show
  1. package/README.md +116 -0
  2. package/dist/Sculpt/Meshes/Circle.d.ts +3 -1
  3. package/dist/Sculpt/Meshes/Cylinder.d.ts +4 -2
  4. package/dist/Sculpt/Objects/Base/index.d.ts +1 -0
  5. package/dist/Sculpt/Objects/Box/index.d.ts +1 -0
  6. package/dist/Sculpt/Objects/Circle/index.d.ts +1 -0
  7. package/dist/Sculpt/Objects/Cylinder/index.d.ts +1 -0
  8. package/dist/Sculpt/Objects/Line/index.d.ts +1 -0
  9. package/dist/Sculpt/Objects/Point/index.d.ts +1 -0
  10. package/dist/Sculpt/Objects/Polygon/index.d.ts +1 -0
  11. package/dist/Sculpt/Objects/Polyline/index.d.ts +1 -0
  12. package/dist/Sculpt/Objects/Prism/index.d.ts +1 -0
  13. package/dist/Sculpt/Objects/Rectangle/index.d.ts +1 -0
  14. package/dist/index.cjs.js +25 -25
  15. package/dist/index.js +116 -77
  16. package/dist/index.umd.js +28 -28
  17. package/docs/.nojekyll +1 -0
  18. package/docs/assets/custom.css +0 -0
  19. package/docs/assets/highlight.css +127 -0
  20. package/docs/assets/icons.js +18 -0
  21. package/docs/assets/icons.svg +1 -0
  22. package/docs/assets/main.js +60 -0
  23. package/docs/assets/navigation.js +1 -0
  24. package/docs/assets/search.js +1 -0
  25. package/docs/assets/style.css +1493 -0
  26. package/docs/classes/AreaMakerPluginType.AreaMakerController.html +61 -0
  27. package/docs/classes/AreaMakerPluginType.AreaMakerItem.html +71 -0
  28. package/docs/classes/CSS3DRender.html +100 -0
  29. package/docs/classes/GuideLineItem.GuideLineItem.html +21 -0
  30. package/docs/classes/GuideLineModeItem.GuideLineModeItem.html +71 -0
  31. package/docs/classes/ModelMakerPluginInstance.html +57 -0
  32. package/docs/classes/ModelRoomLabelController.html +19 -0
  33. package/docs/classes/MoveController.html +47 -0
  34. package/docs/classes/Object3DHelperController.html +47 -0
  35. package/docs/classes/PaintBrush.html +15 -0
  36. package/docs/classes/PanoMeasurePluginLine.html +24 -0
  37. package/docs/classes/PanoMeasurePluginModel.html +23 -0
  38. package/docs/classes/PanoMeasurePluginPoint.html +7 -0
  39. package/docs/classes/PanoMeasurePluginPolyline.html +27 -0
  40. package/docs/classes/PanoTagPluginController.html +104 -0
  41. package/docs/classes/Sculpt.html +70 -0
  42. package/docs/classes/Util.BetterTween.html +6 -0
  43. package/docs/classes/Util.FiveDomEvents.html +12 -0
  44. package/docs/classes/Util.FivePuppet.html +20 -0
  45. package/docs/classes/Util.Interval.html +11 -0
  46. package/docs/classes/Util.LightTag.html +47 -0
  47. package/docs/classes/Util.LineSegments.html +4 -0
  48. package/docs/classes/Util.Magnifier.html +22 -0
  49. package/docs/classes/Util.Object3D.html +8 -0
  50. package/docs/classes/Util.PointHelper.html +10 -0
  51. package/docs/classes/Util.PointSelector.html +50 -0
  52. package/docs/classes/Util.PointSelectorHelper.html +14 -0
  53. package/docs/classes/Util.Rectangle.html +12 -0
  54. package/docs/classes/Util.sculpt.BaseEditor.html +16 -0
  55. package/docs/classes/Util.sculpt.BoxMesh.html +34 -0
  56. package/docs/classes/Util.sculpt.BoxMeshEditor.html +16 -0
  57. package/docs/classes/Util.sculpt.CircleMesh.html +26 -0
  58. package/docs/classes/Util.sculpt.CircleMeshEditor.html +16 -0
  59. package/docs/classes/Util.sculpt.CircleWithEdgeMesh.html +26 -0
  60. package/docs/classes/Util.sculpt.CylinderMesh.html +25 -0
  61. package/docs/classes/Util.sculpt.CylinderMeshEditor.html +16 -0
  62. package/docs/classes/Util.sculpt.LineMesh.html +29 -0
  63. package/docs/classes/Util.sculpt.PointMesh.html +20 -0
  64. package/docs/classes/Util.sculpt.PolygonMesh.html +34 -0
  65. package/docs/classes/Util.sculpt.PrismMesh.html +34 -0
  66. package/docs/classes/Util.sculpt.PrismMeshEditor.html +16 -0
  67. package/docs/classes/Util.sculpt.RectangleMesh.html +35 -0
  68. package/docs/classes/Util.sculpt.RectangleMeshEditor.html +16 -0
  69. package/docs/classes/Util.sculpt.RectangleWithEdgeMesh.html +38 -0
  70. package/docs/classes/WalkController.html +44 -0
  71. package/docs/enums/CameraMovementEffect.html +4 -0
  72. package/docs/enums/ContentType.html +34 -0
  73. package/docs/enums/DIRECTION.html +5 -0
  74. package/docs/enums/DISPLAY_STRATEGY_TYPE.html +5 -0
  75. package/docs/enums/DimensionType.html +4 -0
  76. package/docs/enums/FLOOR_PLAN_ATTACHED_TO.html +4 -0
  77. package/docs/enums/ITEM_LABEL_PLUGIN_DISPLAY_STRATEGY_TYPE.html +5 -0
  78. package/docs/enums/PaintBrushTypeEnum.html +4 -0
  79. package/docs/enums/PointType.html +4 -0
  80. package/docs/enums/Rotation.html +5 -0
  81. package/docs/functions/AreaMakerPlugin.html +1 -0
  82. package/docs/functions/CSS3DRenderPlugin.html +1 -0
  83. package/docs/functions/CameraMovementPlugin.html +2 -0
  84. package/docs/functions/CruisePlugin.html +1 -0
  85. package/docs/functions/CurrentPanoImagePlugin.html +1 -0
  86. package/docs/functions/GuideLinePlugin.html +1 -0
  87. package/docs/functions/ItemLabelPlugin.html +1 -0
  88. package/docs/functions/MapviewFloorplanPlugin.html +1 -0
  89. package/docs/functions/ModelChassisCompassPlugin.html +2 -0
  90. package/docs/functions/ModelEntryDoorGuidePlugin.html +2 -0
  91. package/docs/functions/ModelFloorplanPlugin.html +1 -0
  92. package/docs/functions/ModelItemLabelPlugin.html +1 -0
  93. package/docs/functions/ModelMakerPlugin.html +1 -0
  94. package/docs/functions/ModelRoomLabelPlugin.html +1 -0
  95. package/docs/functions/ModelTVVideoPlugin.html +1 -0
  96. package/docs/functions/ModelViewPlugin.html +2 -0
  97. package/docs/functions/MovePlugin.html +1 -0
  98. package/docs/functions/Object3DHelperPlugin.html +1 -0
  99. package/docs/functions/PanoCompassPlugin.html +1 -0
  100. package/docs/functions/PanoCursorRaycasterPlugin.html +2 -0
  101. package/docs/functions/PanoDoorLabelPlugin.html +1 -0
  102. package/docs/functions/PanoFloorplanRadarPlugin.html +1 -0
  103. package/docs/functions/PanoMeasurePlugin.html +1 -0
  104. package/docs/functions/PanoRulerPlugin.html +2 -0
  105. package/docs/functions/PanoRulerProPlugin.html +2 -0
  106. package/docs/functions/PanoSpatialTagPlugin.html +2 -0
  107. package/docs/functions/PanoTagPlugin.html +1 -0
  108. package/docs/functions/PanoVideoPlugin.html +10 -0
  109. package/docs/functions/PipelinePlugin.html +1 -0
  110. package/docs/functions/SculptPlugin.html +2 -0
  111. package/docs/functions/TopviewFloorplanPlugin.html +1 -0
  112. package/docs/functions/Util.absoluteUrl.html +2 -0
  113. package/docs/functions/Util.awaitNextFrame.html +1 -0
  114. package/docs/functions/Util.blink.html +6 -0
  115. package/docs/functions/Util.bounding.html +1 -0
  116. package/docs/functions/Util.boundingBox.html +1 -0
  117. package/docs/functions/Util.boundingSphere.html +1 -0
  118. package/docs/functions/Util.boxVertex.html +7 -0
  119. package/docs/functions/Util.boxVertexes.html +1 -0
  120. package/docs/functions/Util.checkFiveModelLoaded.html +2 -0
  121. package/docs/functions/Util.convexHull.html +2 -0
  122. package/docs/functions/Util.equal.html +5 -0
  123. package/docs/functions/Util.fiveModelIsLoaded.html +2 -0
  124. package/docs/functions/Util.getCoordsFromClient.html +1 -0
  125. package/docs/functions/Util.getCoordsFromElement.html +1 -0
  126. package/docs/functions/Util.getFrameTime.html +3 -0
  127. package/docs/functions/Util.inside.html +1 -0
  128. package/docs/functions/Util.isAbsoluteURL.html +1 -0
  129. package/docs/functions/Util.isModelLike.html +1 -0
  130. package/docs/functions/Util.isNil.html +2 -0
  131. package/docs/functions/Util.isPanoramaLike.html +1 -0
  132. package/docs/functions/Util.lookObject.html +5 -0
  133. package/docs/functions/Util.lookPoint.html +5 -0
  134. package/docs/functions/Util.nextFrame.html +1 -0
  135. package/docs/functions/Util.notNil.html +2 -0
  136. package/docs/functions/Util.reblink.html +4 -0
  137. package/docs/functions/Util.requestAnimationFrameInterval.html +5 -0
  138. package/docs/functions/Util.sculpt.createBox.html +1 -0
  139. package/docs/functions/Util.sculpt.createCircle.html +1 -0
  140. package/docs/functions/Util.sculpt.createCylinder.html +1 -0
  141. package/docs/functions/Util.sculpt.createLine.html +2 -0
  142. package/docs/functions/Util.sculpt.createPoint.html +1 -0
  143. package/docs/functions/Util.sculpt.createPolygon.html +1 -0
  144. package/docs/functions/Util.sculpt.createPrism.html +1 -0
  145. package/docs/functions/Util.sculpt.createRectangle.html +2 -0
  146. package/docs/functions/Util.tag.html +1 -0
  147. package/docs/functions/Util.tweenProgress.html +1 -0
  148. package/docs/functions/Util.uuid.html +2 -0
  149. package/docs/functions/Util.waitFiveModelLoaded.html +2 -0
  150. package/docs/functions/Util.worldBounding.html +1 -0
  151. package/docs/functions/Util.worldBoundingBox.html +1 -0
  152. package/docs/functions/Util.worldBoundingSphere.html +1 -0
  153. package/docs/functions/createPolyline.html +2 -0
  154. package/docs/functions/pluginFlag.html +1 -0
  155. package/docs/hierarchy.html +1 -0
  156. package/docs/index.html +70 -0
  157. package/docs/interfaces/AreaMakerPluginType.AnimeOptions.html +4 -0
  158. package/docs/interfaces/AreaMakerPluginType.Config.html +8 -0
  159. package/docs/interfaces/AreaMakerPluginType.EventMap.html +25 -0
  160. package/docs/interfaces/AreaMakerPluginType.Params.html +4 -0
  161. package/docs/interfaces/AreaMakerPluginType.ServerAreaMakerItem.html +20 -0
  162. package/docs/interfaces/AreaMakerPluginType.ServerAreaMakerItemV1.html +13 -0
  163. package/docs/interfaces/AreaMakerPluginType.ServerDataV1.html +9 -0
  164. package/docs/interfaces/AreaMakerPluginType.ServerDataV2.html +3 -0
  165. package/docs/interfaces/AreaMakerPluginType.ShowHideOptions.html +3 -0
  166. package/docs/interfaces/AreaMakerPluginType.State.html +8 -0
  167. package/docs/interfaces/CSS3DRenderPluginEventMap.html +9 -0
  168. package/docs/interfaces/CSS3DRenderPluginState.html +7 -0
  169. package/docs/interfaces/CameraMovementPluginExportType.html +11 -0
  170. package/docs/interfaces/ContentTypeMapInterface.html +73 -0
  171. package/docs/interfaces/CruisePluginTypes.Config.html +7 -0
  172. package/docs/interfaces/CruisePluginTypes.CruiseKeyframe.html +8 -0
  173. package/docs/interfaces/CruisePluginTypes.EventMap.html +33 -0
  174. package/docs/interfaces/CruisePluginTypes.GuildLineConfig.html +6 -0
  175. package/docs/interfaces/CruisePluginTypes.MoveAction.html +16 -0
  176. package/docs/interfaces/CruisePluginTypes.MoveWithKeyframesAction.html +19 -0
  177. package/docs/interfaces/CruisePluginTypes.MoveWithPanoIndexAction.html +20 -0
  178. package/docs/interfaces/CruisePluginTypes.PluginData.html +8 -0
  179. package/docs/interfaces/CruisePluginTypes.PluginServerData.html +2 -0
  180. package/docs/interfaces/CruisePluginTypes.PluginState.html +15 -0
  181. package/docs/interfaces/CurrentPanoImagePluginType.Config.html +13 -0
  182. package/docs/interfaces/CurrentPanoImagePluginType.EventMap.html +15 -0
  183. package/docs/interfaces/CurrentPanoImagePluginType.Params.html +4 -0
  184. package/docs/interfaces/CurrentPanoImagePluginType.ShowHideOptions.html +3 -0
  185. package/docs/interfaces/CurrentPanoImagePluginType.State.html +7 -0
  186. package/docs/interfaces/FloorplanBounding.html +9 -0
  187. package/docs/interfaces/FloorplanData.html +7 -0
  188. package/docs/interfaces/FloorplanEntrance.html +14 -0
  189. package/docs/interfaces/FloorplanExtraObject.html +9 -0
  190. package/docs/interfaces/FloorplanExtraObject3D.html +5 -0
  191. package/docs/interfaces/FloorplanFloorData.html +6 -0
  192. package/docs/interfaces/FloorplanImagePosition.html +4 -0
  193. package/docs/interfaces/FloorplanObserver.html +8 -0
  194. package/docs/interfaces/FloorplanOutlineItem.html +6 -0
  195. package/docs/interfaces/FloorplanPosition.html +4 -0
  196. package/docs/interfaces/FloorplanRoomItem.html +23 -0
  197. package/docs/interfaces/FloorplanRoomLabelItem.html +6 -0
  198. package/docs/interfaces/FloorplanServerBounding.html +9 -0
  199. package/docs/interfaces/FloorplanServerComputedData.html +6 -0
  200. package/docs/interfaces/FloorplanServerData.html +4 -0
  201. package/docs/interfaces/FloorplanServerDoorItem.html +6 -0
  202. package/docs/interfaces/FloorplanServerDoorPosition.html +4 -0
  203. package/docs/interfaces/FloorplanServerEntrance.html +14 -0
  204. package/docs/interfaces/FloorplanServerFloorData.html +6 -0
  205. package/docs/interfaces/FloorplanServerImagePosition.html +4 -0
  206. package/docs/interfaces/FloorplanServerObserver.html +8 -0
  207. package/docs/interfaces/FloorplanServerOutlineItem.html +6 -0
  208. package/docs/interfaces/FloorplanServerPosition.html +4 -0
  209. package/docs/interfaces/FloorplanServerRoomItem.html +26 -0
  210. package/docs/interfaces/FloorplanServerRoomLabelItem.html +6 -0
  211. package/docs/interfaces/GuideLineModeItem.GuideLineTagContainer.html +4 -0
  212. package/docs/interfaces/GuideLinePluginType.CatmullRomCurve3.html +9 -0
  213. package/docs/interfaces/GuideLinePluginType.EventMap.html +13 -0
  214. package/docs/interfaces/GuideLinePluginType.GuideLineGeometryStyle.html +8 -0
  215. package/docs/interfaces/GuideLinePluginType.GuideLineItemContainer.html +2 -0
  216. package/docs/interfaces/GuideLinePluginType.GuideLineMaterialStyle.html +32 -0
  217. package/docs/interfaces/GuideLinePluginType.GuideLineMeshStyle.html +4 -0
  218. package/docs/interfaces/GuideLinePluginType.LineGeometriesConfig.html +5 -0
  219. package/docs/interfaces/GuideLinePluginType.ModelGuideLineStyle.html +42 -0
  220. package/docs/interfaces/GuideLinePluginType.ModelGuideLineTagData.html +3 -0
  221. package/docs/interfaces/GuideLinePluginType.PanoramaGuideLineStyle.html +57 -0
  222. package/docs/interfaces/GuideLinePluginType.PluginDataV2.html +1 -0
  223. package/docs/interfaces/GuideLinePluginType.PluginServerData.html +2 -0
  224. package/docs/interfaces/GuideLinePluginType.PluginState.html +7 -0
  225. package/docs/interfaces/GuideLinePluginType.Route.html +6 -0
  226. package/docs/interfaces/GuideLinePluginType.RouteConfig.html +4 -0
  227. package/docs/interfaces/HelperOffset.html +4 -0
  228. package/docs/interfaces/ImagePlaneGroup.html +3 -0
  229. package/docs/interfaces/ItemLabelPluginData.html +2 -0
  230. package/docs/interfaces/ItemLabelPluginExportReturnsType.html +7 -0
  231. package/docs/interfaces/ItemLabelPluginParametersType.html +5 -0
  232. package/docs/interfaces/MinMax.html +3 -0
  233. package/docs/interfaces/ModelChassisCompassPluginData.html +3 -0
  234. package/docs/interfaces/ModelChassisCompassPluginExportType.html +4 -0
  235. package/docs/interfaces/ModelChassisCompassPluginParameterType.html +3 -0
  236. package/docs/interfaces/ModelEntryDoorGuidePluginData.html +4 -0
  237. package/docs/interfaces/ModelEntryDoorGuidePluginExportType.html +4 -0
  238. package/docs/interfaces/ModelItemLabelPluginData.html +2 -0
  239. package/docs/interfaces/ModelItemLabelPluginExportReturnsType.html +7 -0
  240. package/docs/interfaces/ModelItemLabelPluginParametersType.html +3 -0
  241. package/docs/interfaces/ModelMakerPluginType.EventMap.html +18 -0
  242. package/docs/interfaces/ModelMakerPluginType.ServerBaseItem.html +5 -0
  243. package/docs/interfaces/ModelMakerPluginType.ServerBoxItem.html +12 -0
  244. package/docs/interfaces/ModelMakerPluginType.ServerData.html +2 -0
  245. package/docs/interfaces/ModelMakerPluginType.ServerPrismItem.html +14 -0
  246. package/docs/interfaces/ModelMakerPluginType.ServerTrianglesItem.html +10 -0
  247. package/docs/interfaces/ModelMakerPluginType.State.html +8 -0
  248. package/docs/interfaces/ModelRoomLabelPluginData.html +2 -0
  249. package/docs/interfaces/ModelTVVideoPluginData.html +5 -0
  250. package/docs/interfaces/ModelTVVideoPluginExportType.html +4 -0
  251. package/docs/interfaces/ModelTVVideoPluginParameterType.html +2 -0
  252. package/docs/interfaces/ModelViewPluginExportType.html +7 -0
  253. package/docs/interfaces/Object3DHelperState.html +4 -0
  254. package/docs/interfaces/ObjectHelperControllers.html +5 -0
  255. package/docs/interfaces/PaintBrushAction.html +14 -0
  256. package/docs/interfaces/PaintBrushConfigs.html +8 -0
  257. package/docs/interfaces/PaintBrushState.html +6 -0
  258. package/docs/interfaces/PanoCursorRaycasterPluginExportType.html +16 -0
  259. package/docs/interfaces/PanoCursorRaycasterPluginParameterType.html +1 -0
  260. package/docs/interfaces/PanoMeasureParameterType.html +20 -0
  261. package/docs/interfaces/PanoMeasurePluginLineJson.html +4 -0
  262. package/docs/interfaces/PanoMeasurePluginOpenParameter.html +4 -0
  263. package/docs/interfaces/PanoMeasurePluginPointJson.html +3 -0
  264. package/docs/interfaces/PanoMeasurePluginPolylineJson.html +7 -0
  265. package/docs/interfaces/PanoRulerPluginExportType.html +6 -0
  266. package/docs/interfaces/PanoRulerPluginOptions.html +3 -0
  267. package/docs/interfaces/PanoRulerPluginParameterType.html +4 -0
  268. package/docs/interfaces/PanoRulerProPluginExportType.html +5 -0
  269. package/docs/interfaces/PanoRulerProPluginOptions.html +3 -0
  270. package/docs/interfaces/PanoRulerProPluginParameterType.html +3 -0
  271. package/docs/interfaces/PanoRulerProPluginState.html +4 -0
  272. package/docs/interfaces/PanoSpatialTagPluginContentEvent.html +1 -0
  273. package/docs/interfaces/PanoSpatialTagPluginContentReplacement.html +1 -0
  274. package/docs/interfaces/PanoSpatialTagPluginData.html +7 -0
  275. package/docs/interfaces/PanoSpatialTagPluginDataElement.html +6 -0
  276. package/docs/interfaces/PanoSpatialTagPluginExportType.html +9 -0
  277. package/docs/interfaces/PanoSpatialTagPluginOriginElement.html +6 -0
  278. package/docs/interfaces/PanoSpatialTagPluginParameterType.html +9 -0
  279. package/docs/interfaces/PanoSpatialTagPluginPointElement.html +7 -0
  280. package/docs/interfaces/PanoSpatialTagPluginTagElement.html +6 -0
  281. package/docs/interfaces/PanoVideoPluginType.LoadParams.html +3 -0
  282. package/docs/interfaces/PanoVideoPluginType.PanoVideoItem.html +8 -0
  283. package/docs/interfaces/PanoVideoPluginType.PluginData.html +2 -0
  284. package/docs/interfaces/PanoVideoPluginType.PluginEventMap.html +15 -0
  285. package/docs/interfaces/PanoVideoPluginType.PluginState.html +2 -0
  286. package/docs/interfaces/PanoVideoPluginType.VideoItem.html +14 -0
  287. package/docs/interfaces/PanoVideoPluginType.VideoMeshParams.html +13 -0
  288. package/docs/interfaces/PluginEventMap.html +15 -0
  289. package/docs/interfaces/Point.html +4 -0
  290. package/docs/interfaces/Room.html +5 -0
  291. package/docs/interfaces/RoomInfo.html +3 -0
  292. package/docs/interfaces/RoomLabel.html +16 -0
  293. package/docs/interfaces/RoomRules.html +1 -0
  294. package/docs/interfaces/Rooms.html +1 -0
  295. package/docs/interfaces/Scissor.html +13 -0
  296. package/docs/interfaces/State.html +7 -0
  297. package/docs/interfaces/TagCacheInterface.html +9 -0
  298. package/docs/interfaces/TagConfig.html +111 -0
  299. package/docs/interfaces/TagGLTFObjectGroup.html +3 -0
  300. package/docs/interfaces/TagIconUrl.html +14 -0
  301. package/docs/interfaces/TagObjectGroup.html +3 -0
  302. package/docs/interfaces/TagStyle.html +5 -0
  303. package/docs/interfaces/Tags.html +8 -0
  304. package/docs/interfaces/TemporaryState.html +2 -0
  305. package/docs/interfaces/Util.AnimeInstance.html +3 -0
  306. package/docs/interfaces/Util.BlinkAnimeOptions.html +7 -0
  307. package/docs/interfaces/Util.EventHandlerConfig.html +16 -0
  308. package/docs/interfaces/Util.FiveDomEvent.html +7 -0
  309. package/docs/interfaces/Util.FiveDomEventMap.html +20 -0
  310. package/docs/interfaces/Util.MagnifierParameter.html +11 -0
  311. package/docs/interfaces/Util.MouseGroupParameter.html +4 -0
  312. package/docs/interfaces/Util.PointIntersection.html +9 -0
  313. package/docs/interfaces/Util.PointSelectorHelperConfig.html +5 -0
  314. package/docs/interfaces/Util.ReBlinkAnimeOptions.html +8 -0
  315. package/docs/modules/AreaMakerPluginType.html +17 -0
  316. package/docs/modules/CruisePluginTypes.html +14 -0
  317. package/docs/modules/CurrentPanoImagePluginType.html +6 -0
  318. package/docs/modules/GuideLineItem.html +2 -0
  319. package/docs/modules/GuideLineModeItem.html +3 -0
  320. package/docs/modules/GuideLinePluginType.html +24 -0
  321. package/docs/modules/ModelMakerPluginType.html +11 -0
  322. package/docs/modules/PanoVideoPluginType.html +8 -0
  323. package/docs/modules/SculptData.html +9 -0
  324. package/docs/modules/Util.html +61 -0
  325. package/docs/modules/Util.sculpt.html +25 -0
  326. package/docs/modules.html +266 -0
  327. package/docs/types/AddObject3DHelperConfig.html +19 -0
  328. package/docs/types/AreaMakerPluginType.AreaMakerItemEventMap.html +7 -0
  329. package/docs/types/AreaMakerPluginType.ItemRenderer.html +1 -0
  330. package/docs/types/AreaMakerPluginType.PluginData.html +2 -0
  331. package/docs/types/AreaMakerPluginType.ServerData.html +2 -0
  332. package/docs/types/ArrayPosition.html +1 -0
  333. package/docs/types/AudioAppearance.html +1 -0
  334. package/docs/types/CSS3DRenderExportType.html +1 -0
  335. package/docs/types/CSS3DRenderPluginExportType.html +1 -0
  336. package/docs/types/CSS3DRenderPluginParameterType.html +1 -0
  337. package/docs/types/ClassFunctionParameters.html +1 -0
  338. package/docs/types/Color.html +1 -0
  339. package/docs/types/ContentTypeConfigKey.html +1 -0
  340. package/docs/types/ContentTypeConfigKeySplit.html +1 -0
  341. package/docs/types/ContentTypeMap.html +1 -0
  342. package/docs/types/Create3DDomContainerReturnType.html +1 -0
  343. package/docs/types/Create3DElementReturnType.html +1 -0
  344. package/docs/types/CruisePluginExportType.html +1 -0
  345. package/docs/types/CruisePluginTypes.CruiseData.html +5 -0
  346. package/docs/types/CruisePluginTypes.MoveEffect.html +1 -0
  347. package/docs/types/CurrentPanoImagePluginExportType.html +1 -0
  348. package/docs/types/DeprecatedMediaPlaneProperty.html +3 -0
  349. package/docs/types/DeprecatedTagProperty.html +3 -0
  350. package/docs/types/Direction-1.html +1 -0
  351. package/docs/types/Direction4.html +1 -0
  352. package/docs/types/ElementRenderer.html +2 -0
  353. package/docs/types/FloorplanRuleLabels.html +2 -0
  354. package/docs/types/FloorplanServerRuleLabels.html +1 -0
  355. package/docs/types/GuideLinePluginExportType.html +1 -0
  356. package/docs/types/GuideLinePluginType.GuideLineItem.html +10 -0
  357. package/docs/types/GuideLinePluginType.GuideLineItemEventMap.html +1 -0
  358. package/docs/types/GuideLinePluginType.GuideLineModeItemMode.html +1 -0
  359. package/docs/types/GuideLinePluginType.GuideLineStyle.html +2 -0
  360. package/docs/types/GuideLinePluginType.ModelGuideLineTag.html +2 -0
  361. package/docs/types/GuideLinePluginType.PathItem.html +2 -0
  362. package/docs/types/GuideLinePluginType.PluginData.html +2 -0
  363. package/docs/types/HelperEventMap.html +1 -0
  364. package/docs/types/InternalHelperEventMap.html +1 -0
  365. package/docs/types/MapviewFloorplanPluginParameterType.html +1 -0
  366. package/docs/types/MapviewFloorplanPluginReturnType.html +1 -0
  367. package/docs/types/MediaData.html +2 -0
  368. package/docs/types/MediaStore.html +1 -0
  369. package/docs/types/ModelEntryDoorGuidePluginParameterType.html +1 -0
  370. package/docs/types/ModelFloorplanPluginParameterType.html +1 -0
  371. package/docs/types/ModelFloorplanPluginReturnType.html +1 -0
  372. package/docs/types/ModelId.html +1 -0
  373. package/docs/types/ModelMakerPluginType.ElementRenderer.html +1 -0
  374. package/docs/types/ModelMakerPluginType.ItemType.html +1 -0
  375. package/docs/types/ModelRoomLabelPluginParameters.html +1 -0
  376. package/docs/types/ModelRoomLabelPluginReturnType.html +1 -0
  377. package/docs/types/MoveArgs.html +2 -0
  378. package/docs/types/MoveOpts.html +2 -0
  379. package/docs/types/Object3DHelperEventMap.html +1 -0
  380. package/docs/types/ObjectFit.html +1 -0
  381. package/docs/types/PaintBrushEventMap.html +1 -0
  382. package/docs/types/PanoCompassPluginData.html +1 -0
  383. package/docs/types/PanoCompassPluginExportType.html +1 -0
  384. package/docs/types/PanoCompassPluginParameterType.html +1 -0
  385. package/docs/types/PanoFloorplanRadarPluginParameterType.html +1 -0
  386. package/docs/types/PanoFloorplanRadarPluginReturnType.html +1 -0
  387. package/docs/types/PanoIndex.html +1 -0
  388. package/docs/types/PanoMeasurePluginEvent.html +1 -0
  389. package/docs/types/PanoMeasureReturnType.html +1 -0
  390. package/docs/types/PanoSpatialTagPluginId.html +1 -0
  391. package/docs/types/PanoTagPluginExportInterface.html +1 -0
  392. package/docs/types/PanoTagPluginParamsInterface.html +1 -0
  393. package/docs/types/PanoVideoPluginParameterType.html +1 -0
  394. package/docs/types/PanoVideoPluginReturnType.html +1 -0
  395. package/docs/types/PickTagContentTypeInContentTypeConfigKey.html +2 -0
  396. package/docs/types/PipelinePluginParameterType.html +1 -0
  397. package/docs/types/PipelinePluginReturnType.html +1 -0
  398. package/docs/types/PlaneTag.html +2 -0
  399. package/docs/types/Point2DTag.html +2 -0
  400. package/docs/types/Point3DTag.html +2 -0
  401. package/docs/types/PointTagInstance.html +1 -0
  402. package/docs/types/Position.html +1 -0
  403. package/docs/types/PositionFrom.html +1 -0
  404. package/docs/types/RotateArgs.html +2 -0
  405. package/docs/types/RotateOpts.html +2 -0
  406. package/docs/types/RuleLabelsKey.html +1 -0
  407. package/docs/types/RuleLabelsValue.html +1 -0
  408. package/docs/types/ScaleCallback.html +1 -0
  409. package/docs/types/ScalePosition.html +3 -0
  410. package/docs/types/SculptData.BoxData.html +1 -0
  411. package/docs/types/SculptData.CircleData.html +1 -0
  412. package/docs/types/SculptData.CylinderData.html +1 -0
  413. package/docs/types/SculptData.PointData.html +1 -0
  414. package/docs/types/SculptData.PolygonData.html +1 -0
  415. package/docs/types/SculptData.PolylineData.html +1 -0
  416. package/docs/types/SculptData.PrismData.html +1 -0
  417. package/docs/types/SculptData.RectangleData.html +1 -0
  418. package/docs/types/StickType.html +1 -0
  419. package/docs/types/Tag.html +16 -0
  420. package/docs/types/Tag2D.html +2 -0
  421. package/docs/types/Tag3D.html +2 -0
  422. package/docs/types/TagClickParams.html +1 -0
  423. package/docs/types/TagConfigByKey.html +1 -0
  424. package/docs/types/TagContentType.html +1 -0
  425. package/docs/types/TagContentTypeMapping.html +1 -0
  426. package/docs/types/TagDimensionType.html +1 -0
  427. package/docs/types/TagElement.html +2 -0
  428. package/docs/types/TagEvents.html +1 -0
  429. package/docs/types/TagGLTFObject.html +1 -0
  430. package/docs/types/TagHooks.html +1 -0
  431. package/docs/types/TagId.html +1 -0
  432. package/docs/types/TagInstance.html +1 -0
  433. package/docs/types/TagPointType.html +2 -0
  434. package/docs/types/TagRendererMap.html +1 -0
  435. package/docs/types/TopviewFloorplanPluginParameterType.html +1 -0
  436. package/docs/types/TopviewFloorplanPluginReturnType.html +1 -0
  437. package/docs/types/Util.ActionIfNoModelUnderMouse.html +1 -0
  438. package/docs/types/Util.PointSelectorConfig.html +1 -0
  439. package/docs/types/WorkCode.html +1 -0
  440. package/docs/variables/FLOOR_TYPE_MAP.html +2 -0
  441. package/docs/variables/PLUGIN.html +1 -0
  442. package/docs/variables/ROOM_FETILE_TYPE_MAP.html +2 -0
  443. package/docs/variables/ROOM_TYPE_MAP.html +2 -0
  444. package/docs/variables/Util.animeMap.html +1 -0
  445. package/docs/variables/defaultGlobalConfig.html +1 -0
  446. package/docs/variables/itemLabelPluginServerParams.html +1 -0
  447. package/docs/variables/modelItemLabelPluginServerParams.html +1 -0
  448. package/docs/variables/modelRoomLabelPluginServerParams.html +1 -0
  449. package/libs/Sculpt/Meshes/Circle.d.ts +3 -1
  450. package/libs/Sculpt/Meshes/Circle.js +23 -17
  451. package/libs/Sculpt/Meshes/Cylinder.d.ts +4 -2
  452. package/libs/Sculpt/Meshes/Cylinder.js +31 -35
  453. package/libs/Sculpt/Objects/Base/index.d.ts +1 -0
  454. package/libs/Sculpt/Objects/Box/index.d.ts +1 -0
  455. package/libs/Sculpt/Objects/Box/index.js +45 -42
  456. package/libs/Sculpt/Objects/Circle/index.d.ts +1 -0
  457. package/libs/Sculpt/Objects/Circle/index.js +50 -47
  458. package/libs/Sculpt/Objects/Cylinder/index.d.ts +1 -0
  459. package/libs/Sculpt/Objects/Cylinder/index.js +32 -29
  460. package/libs/Sculpt/Objects/Line/index.d.ts +1 -0
  461. package/libs/Sculpt/Objects/Line/index.js +11 -8
  462. package/libs/Sculpt/Objects/Point/index.d.ts +1 -0
  463. package/libs/Sculpt/Objects/Point/index.js +32 -28
  464. package/libs/Sculpt/Objects/Polygon/index.d.ts +1 -0
  465. package/libs/Sculpt/Objects/Polygon/index.js +24 -21
  466. package/libs/Sculpt/Objects/Polyline/index.d.ts +1 -0
  467. package/libs/Sculpt/Objects/Polyline/index.js +37 -34
  468. package/libs/Sculpt/Objects/Prism/index.d.ts +1 -0
  469. package/libs/Sculpt/Objects/Prism/index.js +47 -44
  470. package/libs/Sculpt/Objects/Rectangle/index.d.ts +1 -0
  471. package/libs/Sculpt/Objects/Rectangle/index.js +86 -83
  472. package/libs/base/BasePlugin.js +1 -1
  473. package/libs/shared-utils/logger.js +1 -1
  474. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -48,7 +48,7 @@ import Vp from "earcut";
48
48
  import { GLTFLoader as Rp } from "@realsee/five/gltf-loader";
49
49
  function _p() {
50
50
  console.debug(
51
- "%c %c@realsee/dnalogel %cv3.53.4",
51
+ "%c %c@realsee/dnalogel %cv3.53.5-alpha.0",
52
52
  [
53
53
  "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=')",
54
54
  "background-repeat: no-repeat",
@@ -2010,9 +2010,9 @@ function Nf(n) {
2010
2010
  }
2011
2011
  const vv = 16777215, Yc = 16777215, Av = 2, Rl = 0.6;
2012
2012
  function Ai(n) {
2013
- return !xe(n);
2013
+ return !De(n);
2014
2014
  }
2015
- function xe(n) {
2015
+ function De(n) {
2016
2016
  return n != null;
2017
2017
  }
2018
2018
  class Hf extends Op {
@@ -2042,7 +2042,7 @@ class Zc extends jp {
2042
2042
  var i, s;
2043
2043
  super(e);
2044
2044
  d(this, "_three_color");
2045
- xe(e == null ? void 0 : e.color) && (this.three_color = (i = e == null ? void 0 : e.color) != null ? i : 16777215), Object.keys(e).forEach((o) => {
2045
+ De(e == null ? void 0 : e.color) && (this.three_color = (i = e == null ? void 0 : e.color) != null ? i : 16777215), Object.keys(e).forEach((o) => {
2046
2046
  ["color", "dashed", "dashScale", "dashSize", "gapSize", "resolution"].includes(o) || o in this && (this[o] = e[o]);
2047
2047
  }), this.setDashed((s = e == null ? void 0 : e.dashed) != null ? s : !1);
2048
2048
  }
@@ -2261,7 +2261,7 @@ class Yt extends Rt {
2261
2261
  setPoints(e) {
2262
2262
  if (this.points.length === 0 && e.length === 0)
2263
2263
  return;
2264
- const i = e.map(Ne).filter(xe);
2264
+ const i = e.map(Ne).filter(De);
2265
2265
  if (this.points = i, i.length < 2) {
2266
2266
  this.line.geometry = new Uo(), this.backLine.geometry = this.line.geometry, this.updateDomItems();
2267
2267
  return;
@@ -2277,7 +2277,7 @@ class Yt extends Rt {
2277
2277
  }
2278
2278
  setStyle(e) {
2279
2279
  var o, r, a;
2280
- this.paramsStyle = x(x({}, this.paramsStyle), e), xe(e.lineColor) && (this.line.material.three_color = new b.Color(e.lineColor), this.backLine.material.three_color = new b.Color(e.lineColor)), xe(e.lineWidth) && (this.line.material.linewidth = e.lineWidth), xe(e.dashed) && this.line.material.setDashed(e.dashed), xe(e.opacity) && (this.line.material.opacity = e.opacity, this.backLine.material.opacity = this.line.material.opacity * 0.7), this.updateDomItems();
2280
+ this.paramsStyle = x(x({}, this.paramsStyle), e), De(e.lineColor) && (this.line.material.three_color = new b.Color(e.lineColor), this.backLine.material.three_color = new b.Color(e.lineColor)), De(e.lineWidth) && (this.line.material.linewidth = e.lineWidth), De(e.dashed) && this.line.material.setDashed(e.dashed), De(e.opacity) && (this.line.material.opacity = e.opacity, this.backLine.material.opacity = this.line.material.opacity * 0.7), this.updateDomItems();
2281
2281
  const i = (o = e.occlusionVisibility) != null ? o : this.paramsStyle.occlusionVisibility, s = (a = (r = e.occlusionMode) != null ? r : this.paramsStyle.occlusionMode) != null ? a : "translucence";
2282
2282
  i ? s === "depthTest" ? (this.line.material.depthTest = !1, this.backLine.visible = !1) : s === "translucence" && (this.line.material.depthTest = !0, this.backLine.visible = !0, this.line.material.opacity === 1 ? this.backLine.material.setDashed(!0) : this.backLine.material.setDashed(this.line.material.dashed)) : (this.line.material.depthTest = !0, this.backLine.visible = !1), this.needsRender = !0;
2283
2283
  }
@@ -2298,7 +2298,7 @@ class Yt extends Rt {
2298
2298
  const i = this.points.map((s, o) => {
2299
2299
  if (o !== 0)
2300
2300
  return [this.points[o - 1], s];
2301
- }).filter(xe).map((s) => Xs(this, s));
2301
+ }).filter(De).map((s) => Xs(this, s));
2302
2302
  i.forEach(([s, o], r) => {
2303
2303
  var c;
2304
2304
  const a = jt(s, o);
@@ -2309,7 +2309,7 @@ class Yt extends Rt {
2309
2309
  const l = (h) => {
2310
2310
  var u;
2311
2311
  this.doms[r].__text !== h && (this.doms[r].__text = h, h ? this.doms[r].container.innerHTML = _l(h, {
2312
- style: `color: #${xe((u = this.style) == null ? void 0 : u.lineColor) ? new b.Color(this.style.lineColor).getHexString() : "ffffff"}`
2312
+ style: `color: #${De((u = this.style) == null ? void 0 : u.lineColor) ? new b.Color(this.style.lineColor).getHexString() : "ffffff"}`
2313
2313
  }) : this.doms[r].container.innerHTML = "");
2314
2314
  };
2315
2315
  if (this.paramsStyle.tip)
@@ -3135,7 +3135,7 @@ function Yv(n, t, e) {
3135
3135
  let M = 0;
3136
3136
  const E = v(f), S = (F) => {
3137
3137
  const H = F.distanceTo(E), G = new b.Raycaster(F, E.clone().sub(F).normalize()), N = s.model.intersectRaycaster(G, void 0, !0)[0], U = N == null ? void 0 : N.distance;
3138
- xe(U) ? U > H && (M += 1) : M += 1;
3138
+ De(U) ? U > H && (M += 1) : M += 1;
3139
3139
  }, T = i.clampPoint(E, new b.Vector3());
3140
3140
  S(T);
3141
3141
  const W = new b.Vector3(r.x, E.y, r.z);
@@ -3175,7 +3175,7 @@ function $f(n, t, e) {
3175
3175
  const w = f(h);
3176
3176
  if (((C) => {
3177
3177
  const M = C.distanceTo(w), E = new b.Raycaster(C, w.clone().sub(C).normalize()), S = s.model.intersectRaycaster(E, void 0, !0)[0], T = S == null ? void 0 : S.distance;
3178
- xe(T) ? T > M && (A += 1) : A += 1;
3178
+ De(T) ? T > M && (A += 1) : A += 1;
3179
3179
  })(t), u[A] = h, A === 1)
3180
3180
  break;
3181
3181
  h += 30;
@@ -4384,14 +4384,14 @@ function L(n) {
4384
4384
  function Fe(n) {
4385
4385
  return document.createElementNS("http://www.w3.org/2000/svg", n);
4386
4386
  }
4387
- function De(n) {
4387
+ function xe(n) {
4388
4388
  return document.createTextNode(n);
4389
4389
  }
4390
4390
  function ee() {
4391
- return De(" ");
4391
+ return xe(" ");
4392
4392
  }
4393
4393
  function Ee() {
4394
- return De("");
4394
+ return xe("");
4395
4395
  }
4396
4396
  function we(n, t, e, i) {
4397
4397
  return n.addEventListener(t, e, i), () => n.removeEventListener(t, e, i);
@@ -4937,7 +4937,7 @@ function S0(n) {
4937
4937
  ), s, o, r, a, l;
4938
4938
  return {
4939
4939
  c() {
4940
- t = L("div"), e = L("span"), s = De(i), o = ee(), r = L("div"), P(e, "class", "room-label-item__text svelte-1d7uzh5"), z(e, "background-image", "url(" + x0 + ")"), te(
4940
+ t = L("div"), e = L("span"), s = xe(i), o = ee(), r = L("div"), P(e, "class", "room-label-item__text svelte-1d7uzh5"), z(e, "background-image", "url(" + x0 + ")"), te(
4941
4941
  e,
4942
4942
  "wide",
4943
4943
  /*roomLabel*/
@@ -5957,7 +5957,7 @@ function ch(n) {
5957
5957
  ), i;
5958
5958
  return {
5959
5959
  c() {
5960
- t = L("span"), i = De(e), P(t, "class", "floorplan-plugin__room-name");
5960
+ t = L("span"), i = xe(e), P(t, "class", "floorplan-plugin__room-name");
5961
5961
  },
5962
5962
  m(s, o) {
5963
5963
  V(s, t, o), j(t, i);
@@ -5976,7 +5976,7 @@ function hh(n) {
5976
5976
  let t, e;
5977
5977
  return {
5978
5978
  c() {
5979
- t = L("span"), e = De(
5979
+ t = L("span"), e = xe(
5980
5980
  /*roomAreaSize*/
5981
5981
  n[14]
5982
5982
  ), P(t, "class", "floorplan-plugin__room-area svelte-9vzn2f"), z(
@@ -6006,7 +6006,7 @@ function dh(n) {
6006
6006
  let t, e;
6007
6007
  return {
6008
6008
  c() {
6009
- t = L("span"), e = De(
6009
+ t = L("span"), e = xe(
6010
6010
  /*roomDimension*/
6011
6011
  n[13]
6012
6012
  ), P(t, "class", "floorplan-plugin__room-size"), z(
@@ -6568,7 +6568,7 @@ function Ah(n, t) {
6568
6568
  key: n,
6569
6569
  first: null,
6570
6570
  c() {
6571
- e = L("div"), i = L("div"), o = De(s), r = ee(), P(i, "class", "floorplan-plugin__rule-text svelte-1fuyezq"), te(
6571
+ e = L("div"), i = L("div"), o = xe(s), r = ee(), P(i, "class", "floorplan-plugin__rule-text svelte-1fuyezq"), te(
6572
6572
  i,
6573
6573
  "is-row",
6574
6574
  /*isRow*/
@@ -7628,7 +7628,7 @@ function kh(n) {
7628
7628
  ), i;
7629
7629
  return {
7630
7630
  c() {
7631
- t = L("span"), i = De(e), P(t, "class", "text svelte-1lm20n5"), z(
7631
+ t = L("span"), i = xe(e), P(t, "class", "text svelte-1lm20n5"), z(
7632
7632
  t,
7633
7633
  "font-size",
7634
7634
  /*missingFloorConfig*/
@@ -7827,7 +7827,7 @@ function Ab(n) {
7827
7827
  let t, e, i, s, o;
7828
7828
  return {
7829
7829
  c() {
7830
- t = L("div"), e = L("div"), i = ee(), s = L("span"), o = De(
7830
+ t = L("div"), e = L("div"), i = ee(), s = L("span"), o = xe(
7831
7831
  /*northDesc*/
7832
7832
  n[0]
7833
7833
  ), P(e, "class", "floorplan-plugin__compass-image svelte-rpkaro"), z(e, "background-image", `url(${pb})`), P(s, "class", "floorplan-plugin__compass-text svelte-rpkaro"), P(t, "class", "floorplan-plugin__compass svelte-rpkaro"), z(
@@ -9016,7 +9016,7 @@ let Hi = class {
9016
9016
  /**
9017
9017
  * @realsee/dnalogel 版本号
9018
9018
  */
9019
- d(this, "VERSION", "3.53.4");
9019
+ d(this, "VERSION", "3.53.5-alpha.0");
9020
9020
  d(this, "NAME");
9021
9021
  d(this, "five");
9022
9022
  d(this, "workUtil");
@@ -11841,7 +11841,7 @@ function T1(n) {
11841
11841
  let v = m(n), p = v(n);
11842
11842
  return {
11843
11843
  c() {
11844
- t = L("div"), p.c(), e = ee(), i = L("div"), s = L("div"), r = De(o), P(s, "class", "PanoRulerPlugin-rule-label-name svelte-1h27ktp"), et(() => (
11844
+ t = L("div"), p.c(), e = ee(), i = L("div"), s = L("div"), r = xe(o), P(s, "class", "PanoRulerPlugin-rule-label-name svelte-1h27ktp"), et(() => (
11845
11845
  /*div0_elementresize_handler*/
11846
11846
  n[4].call(s)
11847
11847
  )), P(i, "class", "PanoRulerPlugin-rule-label svelte-1h27ktp"), z(i, "left", l), P(t, "class", "PanoRulerPlugin-rule-line svelte-1h27ktp"), z(t, "width", c), z(t, "left", h), z(t, "top", u), z(t, "transform", f), z(
@@ -14567,7 +14567,7 @@ function ad(n) {
14567
14567
  }
14568
14568
  return {
14569
14569
  c() {
14570
- t = L("div"), e = L("div"), h && h.c(), i = ee(), o = De(s), r = ee(), P(e, "class", "content svelte-1v1ixi2"), P(t, "class", "button svelte-1v1ixi2"), te(
14570
+ t = L("div"), e = L("div"), h && h.c(), i = ee(), o = xe(s), r = ee(), P(e, "class", "content svelte-1v1ixi2"), P(t, "class", "button svelte-1v1ixi2"), te(
14571
14571
  t,
14572
14572
  "active",
14573
14573
  /*activeIndex*/
@@ -14805,7 +14805,7 @@ function dd(n) {
14805
14805
  ), f, m, v;
14806
14806
  return {
14807
14807
  c() {
14808
- t = L("div"), e = L("div"), i = L("div"), s = ee(), r = De(o), a = ee(), l = L("div"), c = L("div"), h = ee(), f = De(u), P(i, "class", "icon svelte-468fdd"), z(i, "background-image", `url(${Jm})`), P(e, "class", "button svelte-468fdd"), te(e, "forbid", !/*canRevoke*/
14808
+ t = L("div"), e = L("div"), i = L("div"), s = ee(), r = xe(o), a = ee(), l = L("div"), c = L("div"), h = ee(), f = xe(u), P(i, "class", "icon svelte-468fdd"), z(i, "background-image", `url(${Jm})`), P(e, "class", "button svelte-468fdd"), te(e, "forbid", !/*canRevoke*/
14809
14809
  n[3]), P(c, "class", "icon svelte-468fdd"), z(c, "background-image", `url(${qm})`), P(l, "class", "button svelte-468fdd"), P(t, "class", "buttons svelte-468fdd");
14810
14810
  },
14811
14811
  m(p, g) {
@@ -15051,7 +15051,7 @@ function md(n) {
15051
15051
  }
15052
15052
  return {
15053
15053
  c() {
15054
- t = L("div"), e = L("div"), h && h.c(), i = ee(), o = De(s), r = ee(), P(e, "class", "content svelte-1mfj5mk"), P(t, "class", "button svelte-1mfj5mk"), te(
15054
+ t = L("div"), e = L("div"), h && h.c(), i = ee(), o = xe(s), r = ee(), P(e, "class", "content svelte-1mfj5mk"), P(t, "class", "button svelte-1mfj5mk"), te(
15055
15055
  t,
15056
15056
  "active",
15057
15057
  /*activeIndex*/
@@ -15199,7 +15199,7 @@ function gd(n) {
15199
15199
  let t, e, i, s;
15200
15200
  return {
15201
15201
  c() {
15202
- t = L("div"), e = De(
15202
+ t = L("div"), e = xe(
15203
15203
  /*text*/
15204
15204
  n[0]
15205
15205
  ), P(t, "class", "text svelte-82ysdl");
@@ -15395,7 +15395,7 @@ function Ad(n) {
15395
15395
  ), o, r, a, l, c;
15396
15396
  return {
15397
15397
  c() {
15398
- t = L("div"), e = L("div"), i = ee(), o = De(s), P(e, "class", "icon svelte-ldjbp8"), z(e, "background-image", `url(${Jm})`), P(t, "class", "button svelte-ldjbp8"), te(
15398
+ t = L("div"), e = L("div"), i = ee(), o = xe(s), P(e, "class", "icon svelte-ldjbp8"), z(e, "background-image", `url(${Jm})`), P(t, "class", "button svelte-ldjbp8"), te(
15399
15399
  t,
15400
15400
  "forbid",
15401
15401
  /*buttonState*/
@@ -15441,7 +15441,7 @@ function bd(n) {
15441
15441
  ), o, r, a, l, c;
15442
15442
  return {
15443
15443
  c() {
15444
- t = L("div"), e = L("div"), i = ee(), o = De(s), P(e, "class", "icon svelte-ldjbp8"), z(e, "background-image", `url(${qm})`), P(t, "class", "button svelte-ldjbp8");
15444
+ t = L("div"), e = L("div"), i = ee(), o = xe(s), P(e, "class", "icon svelte-ldjbp8"), z(e, "background-image", `url(${qm})`), P(t, "class", "button svelte-ldjbp8");
15445
15445
  },
15446
15446
  m(h, u) {
15447
15447
  V(h, t, u), j(t, e), j(t, i), j(t, o), a = !0, l || (c = we(
@@ -15769,7 +15769,7 @@ function yd(n) {
15769
15769
  let t, e, i, s, o;
15770
15770
  return {
15771
15771
  c() {
15772
- t = L("div"), e = L("div"), i = De(
15772
+ t = L("div"), e = L("div"), i = xe(
15773
15773
  /*tip*/
15774
15774
  n[2]
15775
15775
  ), P(e, "class", "text svelte-1q8gtp4"), P(t, "class", "Measure-Tips svelte-1q8gtp4");
@@ -16905,7 +16905,7 @@ function zw(n) {
16905
16905
  ), o, r, a, l, c, h;
16906
16906
  return {
16907
16907
  c() {
16908
- t = L("div"), e = L("div"), i = L("span"), o = De(s), r = ee(), a = L("div"), P(i, "class", "item-label-item__text svelte-1wufped"), P(e, "class", "item-label-item__text-wrap svelte-1wufped"), z(e, "top", `-${/*itemLabel*/
16908
+ t = L("div"), e = L("div"), i = L("span"), o = xe(s), r = ee(), a = L("div"), P(i, "class", "item-label-item__text svelte-1wufped"), P(e, "class", "item-label-item__text-wrap svelte-1wufped"), z(e, "top", `-${/*itemLabel*/
16909
16909
  n[0].strokeLength + 26}px`), P(a, "class", "item-label-item__bar svelte-1wufped"), z(a, "height", `${/*itemLabel*/
16910
16910
  n[0].strokeLength}px`), P(t, "class", l = $e(Tt("item-label-item", { visible: (
16911
16911
  /*itemLabel*/
@@ -17473,7 +17473,7 @@ function Uw(n) {
17473
17473
  );
17474
17474
  return {
17475
17475
  c() {
17476
- h && h.c(), t = ee(), e = L("div"), i = L("span"), o = De(s), r = ee(), a = L("span"), c = De(l), P(i, "class", "item-model svelte-1jhufeh"), P(a, "class", "item-name svelte-1jhufeh"), P(e, "class", "item-label-text svelte-1jhufeh");
17476
+ h && h.c(), t = ee(), e = L("div"), i = L("span"), o = xe(s), r = ee(), a = L("span"), c = xe(l), P(i, "class", "item-model svelte-1jhufeh"), P(a, "class", "item-name svelte-1jhufeh"), P(e, "class", "item-label-text svelte-1jhufeh");
17477
17477
  },
17478
17478
  m(u, f) {
17479
17479
  h && h.m(u, f), V(u, t, f), V(u, e, f), j(e, i), j(i, o), j(e, r), j(e, a), j(a, c);
@@ -19298,7 +19298,7 @@ function aP(n) {
19298
19298
  );
19299
19299
  return {
19300
19300
  c() {
19301
- t = L("span"), i = De(e), P(t, "class", "text-char svelte-1b2n9wi");
19301
+ t = L("span"), i = xe(e), P(t, "class", "text-char svelte-1b2n9wi");
19302
19302
  },
19303
19303
  m(a, l) {
19304
19304
  V(a, t, l), j(t, i), o();
@@ -19460,7 +19460,7 @@ function dP(n, t, e) {
19460
19460
  return T;
19461
19461
  }();
19462
19462
  v = qo({
19463
- targets: E.slice(0, S).filter(xe),
19463
+ targets: E.slice(0, S).filter(De),
19464
19464
  autoplay: !1,
19465
19465
  duration: 400,
19466
19466
  scale: [0.7, 1],
@@ -20118,7 +20118,7 @@ function kP(n) {
20118
20118
  let t;
20119
20119
  return {
20120
20120
  c() {
20121
- t = De(
20121
+ t = xe(
20122
20122
  /*text*/
20123
20123
  n[2]
20124
20124
  );
@@ -20162,7 +20162,7 @@ function qd(n) {
20162
20162
  ), i;
20163
20163
  return {
20164
20164
  c() {
20165
- t = L("span"), i = De(e), P(t, "class", "placeholder svelte-1j0cz4o");
20165
+ t = L("span"), i = xe(e), P(t, "class", "placeholder svelte-1j0cz4o");
20166
20166
  },
20167
20167
  m(s, o) {
20168
20168
  V(s, t, o), j(t, i);
@@ -24855,7 +24855,7 @@ function Lu(n) {
24855
24855
  ), i;
24856
24856
  return {
24857
24857
  c() {
24858
- t = L("div"), i = De(e), P(t, "class", "tag primary-tag svelte-sezqcq"), z(t, "min-width", wc);
24858
+ t = L("div"), i = xe(e), P(t, "class", "tag primary-tag svelte-sezqcq"), z(t, "min-width", wc);
24859
24859
  },
24860
24860
  m(s, o) {
24861
24861
  V(s, t, o), j(t, i);
@@ -24877,7 +24877,7 @@ function zu(n) {
24877
24877
  ), i;
24878
24878
  return {
24879
24879
  c() {
24880
- t = L("div"), i = De(e), P(t, "class", "tag secondary-tag svelte-sezqcq"), z(t, "min-width", wc);
24880
+ t = L("div"), i = xe(e), P(t, "class", "tag secondary-tag svelte-sezqcq"), z(t, "min-width", wc);
24881
24881
  },
24882
24882
  m(s, o) {
24883
24883
  V(s, t, o), j(t, i);
@@ -24927,7 +24927,7 @@ function Ou(n) {
24927
24927
  );
24928
24928
  return {
24929
24929
  c() {
24930
- t = L("div"), e = L("span"), s = De(i), o = ee(), r && r.c(), P(e, "class", "value svelte-sezqcq"), P(t, "class", "price svelte-sezqcq");
24930
+ t = L("div"), e = L("span"), s = xe(i), o = ee(), r && r.c(), P(e, "class", "value svelte-sezqcq"), P(t, "class", "price svelte-sezqcq");
24931
24931
  },
24932
24932
  m(a, l) {
24933
24933
  V(a, t, l), j(t, e), j(e, s), j(t, o), r && r.m(t, null);
@@ -24950,7 +24950,7 @@ function Bu(n) {
24950
24950
  ), i;
24951
24951
  return {
24952
24952
  c() {
24953
- t = L("span"), i = De(e), P(t, "class", "unit svelte-sezqcq");
24953
+ t = L("span"), i = xe(e), P(t, "class", "unit svelte-sezqcq");
24954
24954
  },
24955
24955
  m(s, o) {
24956
24956
  V(s, t, o), j(t, i);
@@ -24972,7 +24972,7 @@ function Vu(n) {
24972
24972
  ), r, a, l;
24973
24973
  return {
24974
24974
  c() {
24975
- t = L("div"), e = L("div"), i = ee(), s = L("span"), r = De(o), a = ee(), l = L("div"), l.innerHTML = '<svg class="arrow svelte-sezqcq" viewBox="0 0 6 9"><g transform="translate(-3, -2)" fill-rule="nonzero" class="svelte-sezqcq"><path d="M4.43868724,2.12056563 C4.28121824,1.95989074 4.02582143,1.95979988 3.86824251,2.1203627 C3.72498894,2.26632889 3.71189225,2.49481723 3.82900374,2.65587166 L6.57092402,5.92894326 C6.72651763,6.11470411 6.72651763,6.38529589 6.57092402,6.57105674 L3.86804348,9.79798499 C3.72488984,9.94405307 3.71194952,10.1725507 3.8291712,10.3335217 L3.86824251,10.3796373 C4.01149607,10.5256035 4.23559087,10.5387981 4.39346025,10.4192733 L4.43868724,10.3794344 L8.1144599,6.5985342 C8.30312347,6.40447482 8.30312347,6.09552518 8.1144599,5.9014658 L4.43868724,2.12056563 Z" class="svelte-sezqcq"></path></g></svg>', P(e, "class", "gap svelte-sezqcq"), P(s, "class", "text svelte-sezqcq"), P(t, "class", "goto-button goto-icon svelte-sezqcq"), P(l, "class", "arrow-wrapper svelte-sezqcq");
24975
+ t = L("div"), e = L("div"), i = ee(), s = L("span"), r = xe(o), a = ee(), l = L("div"), l.innerHTML = '<svg class="arrow svelte-sezqcq" viewBox="0 0 6 9"><g transform="translate(-3, -2)" fill-rule="nonzero" class="svelte-sezqcq"><path d="M4.43868724,2.12056563 C4.28121824,1.95989074 4.02582143,1.95979988 3.86824251,2.1203627 C3.72498894,2.26632889 3.71189225,2.49481723 3.82900374,2.65587166 L6.57092402,5.92894326 C6.72651763,6.11470411 6.72651763,6.38529589 6.57092402,6.57105674 L3.86804348,9.79798499 C3.72488984,9.94405307 3.71194952,10.1725507 3.8291712,10.3335217 L3.86824251,10.3796373 C4.01149607,10.5256035 4.23559087,10.5387981 4.39346025,10.4192733 L4.43868724,10.3794344 L8.1144599,6.5985342 C8.30312347,6.40447482 8.30312347,6.09552518 8.1144599,5.9014658 L4.43868724,2.12056563 Z" class="svelte-sezqcq"></path></g></svg>', P(e, "class", "gap svelte-sezqcq"), P(s, "class", "text svelte-sezqcq"), P(t, "class", "goto-button goto-icon svelte-sezqcq"), P(l, "class", "arrow-wrapper svelte-sezqcq");
24976
24976
  },
24977
24977
  m(c, h) {
24978
24978
  V(c, t, h), j(t, e), j(t, i), j(t, s), j(s, r), V(c, a, h), V(c, l, h);
@@ -25020,7 +25020,7 @@ function wE(n) {
25020
25020
  );
25021
25021
  return {
25022
25022
  c() {
25023
- t = L("div"), oe(e.$$.fragment), i = ee(), s = L("div"), o = ee(), r = L("div"), A && A.c(), a = ee(), l = L("div"), c = L("div"), h = L("div"), f = De(u), m = ee(), w && w.c(), v = ee(), I && I.c(), P(s, "class", "line svelte-sezqcq"), z(
25023
+ t = L("div"), oe(e.$$.fragment), i = ee(), s = L("div"), o = ee(), r = L("div"), A && A.c(), a = ee(), l = L("div"), c = L("div"), h = L("div"), f = xe(u), m = ee(), w && w.c(), v = ee(), I && I.c(), P(s, "class", "line svelte-sezqcq"), z(
25024
25024
  s,
25025
25025
  "transition-delay",
25026
25026
  /*unfolded*/
@@ -25121,7 +25121,7 @@ function CE(n, t, e) {
25121
25121
  1 && e(4, i = (g = (p = u.state) == null ? void 0 : p.unfolded) != null ? g : !1), n.$$.dirty & /*unfolded*/
25122
25122
  16 && e(8, s = !i), n.$$.dirty & /*tag*/
25123
25123
  1 && e(3, o = u.data), n.$$.dirty & /*data*/
25124
- 8 && e(7, r = xe((A = o.price) == null ? void 0 : A.value) && ((w = o.price) == null ? void 0 : w.value) !== ""), n.$$.dirty & /*tag*/
25124
+ 8 && e(7, r = De((A = o.price) == null ? void 0 : A.value) && ((w = o.price) == null ? void 0 : w.value) !== ""), n.$$.dirty & /*tag*/
25125
25125
  1 && e(6, a = u.data.theme || "light"), n.$$.dirty & /*tagsOffsetHeight, maxTagsLength*/
25126
25126
  1026 && f > 40 && e(10, l = l - 1), n.$$.dirty & /*data, maxTagsLength*/
25127
25127
  1032 && e(2, c = ((I = o.brandTags) == null ? void 0 : I.slice(0, l).filter(Boolean)) || []), n.$$.dirty & /*data, maxTagsLength, primaryTags*/
@@ -25992,7 +25992,7 @@ function VE(n) {
25992
25992
  let t;
25993
25993
  return {
25994
25994
  c() {
25995
- t = De(
25995
+ t = xe(
25996
25996
  /*title*/
25997
25997
  n[5]
25998
25998
  );
@@ -26920,7 +26920,7 @@ function Zu(n) {
26920
26920
  }
26921
26921
  }), {
26922
26922
  c() {
26923
- t = L("div"), oe(e.$$.fragment), i = ee(), s = L("div"), o = De(
26923
+ t = L("div"), oe(e.$$.fragment), i = ee(), s = L("div"), o = xe(
26924
26924
  /*title*/
26925
26925
  n[1]
26926
26926
  ), P(s, "class", "text svelte-e58ijk"), P(t, "class", "text-wrapper svelte-e58ijk");
@@ -28086,7 +28086,7 @@ class Cc {
28086
28086
  if ((() => {
28087
28087
  var r;
28088
28088
  const o = i();
28089
- if (xe((r = this.fiveState) == null ? void 0 : r.panoIndex) && t.entryFromModel) {
28089
+ if (De((r = this.fiveState) == null ? void 0 : r.panoIndex) && t.entryFromModel) {
28090
28090
  if (Gt(e) && o ? this.entryFromModel = !1 : this.entryFromModel = !0, Gt(e))
28091
28091
  return !0;
28092
28092
  } else
@@ -28126,7 +28126,7 @@ class Cc {
28126
28126
  const M = this.plugin.tags.filter(si).map((S) => {
28127
28127
  var T;
28128
28128
  return (T = S.model) == null ? void 0 : T.object;
28129
- }).filter(xe), [E] = vi.intersectObjects(M, !0);
28129
+ }).filter(De), [E] = vi.intersectObjects(M, !0);
28130
28130
  return E;
28131
28131
  })(), A = s.distanceTo(f), w = (c = e.distanceAccuracy) != null ? c : 0.01;
28132
28132
  v = Math.min(v != null ? v : 1 / 0, (h = g == null ? void 0 : g.distance) != null ? h : 1 / 0), v + w >= A ? r++ : a++;
@@ -30697,7 +30697,7 @@ function rf(n) {
30697
30697
  let t, e;
30698
30698
  return {
30699
30699
  c() {
30700
- t = L("div"), e = De(
30700
+ t = L("div"), e = xe(
30701
30701
  /*text*/
30702
30702
  n[0]
30703
30703
  ), P(t, "class", "guide-line__tag-text svelte-4qjwer"), z(t, "border-image-source", `url(${/*text_background_url*/
@@ -30732,10 +30732,10 @@ function af(n) {
30732
30732
  );
30733
30733
  return {
30734
30734
  c() {
30735
- t = L("div"), p && p.c(), e = ee(), i = L("div"), s = L("span"), r = De(o), a = De(
30735
+ t = L("div"), p && p.c(), e = ee(), i = L("div"), s = L("span"), r = xe(o), a = xe(
30736
30736
  /*distance*/
30737
30737
  n[2]
30738
- ), c = De(l), h = ee(), u = L("span"), f = De(
30738
+ ), c = xe(l), h = ee(), u = L("span"), f = xe(
30739
30739
  /*text*/
30740
30740
  n[0]
30741
30741
  ), m = ee(), v = L("div"), P(s, "class", "distance svelte-4qjwer"), P(u, "class", "name svelte-4qjwer"), P(i, "class", "distance-and-name svelte-4qjwer"), P(v, "class", "border svelte-4qjwer"), P(t, "class", "text-with-distance svelte-4qjwer");
@@ -30770,7 +30770,7 @@ function lf(n) {
30770
30770
  let t, e;
30771
30771
  return {
30772
30772
  c() {
30773
- t = L("span"), e = De(
30773
+ t = L("span"), e = xe(
30774
30774
  /*name*/
30775
30775
  n[4]
30776
30776
  ), P(t, "class", "line-name svelte-4qjwer");
@@ -31174,7 +31174,7 @@ class Cl {
31174
31174
  return this.logError("setPathByPanoGroup: work is not ready");
31175
31175
  const i = P3(t);
31176
31176
  if (this._panoGroup = i, (e == null ? void 0 : e.skipPanoGroup) !== void 0) {
31177
- const o = e.skipPanoGroup ? i.map((r) => this.plugin.workUtil.getObserverStandingPosition(r)).filter(xe) : null;
31177
+ const o = e.skipPanoGroup ? i.map((r) => this.plugin.workUtil.getObserverStandingPosition(r)).filter(De) : null;
31178
31178
  this.skippedPositions = o;
31179
31179
  }
31180
31180
  const s = this.getPathFromPanoGroup(i, this.five.work, e);
@@ -31394,7 +31394,7 @@ class Cl {
31394
31394
  position: h,
31395
31395
  panoIndex: l
31396
31396
  };
31397
- }).filter(xe), r = o.map((l) => l.position.toArray()), a = o.map((l) => l.panoIndex);
31397
+ }).filter(De), r = o.map((l) => l.position.toArray()), a = o.map((l) => l.panoIndex);
31398
31398
  return [$(x({ type: "CatmullRomCurve3", points: r }, i), { panoIndexList: a, panoIndexMap: s })];
31399
31399
  }
31400
31400
  }
@@ -31812,7 +31812,7 @@ class Pc extends zg {
31812
31812
  this.five.work || (yield D3(this.five));
31813
31813
  const i = (() => {
31814
31814
  const s = e;
31815
- return typeof s == "object" && s !== null && xe(s.version) && s.data ? s.data : s;
31815
+ return typeof s == "object" && s !== null && De(s.version) && s.data ? s.data : s;
31816
31816
  })();
31817
31817
  if (i.keyframes)
31818
31818
  return {
@@ -32426,7 +32426,7 @@ class ro extends Rt {
32426
32426
  const c = new b.Quaternion().setFromUnitVectors(new b.Vector3(0, 0, 1), l.normalize());
32427
32427
  this.applyQuaternion(c);
32428
32428
  }
32429
- if ([r, a, l].filter(xe).length >= 2) {
32429
+ if ([r, a, l].filter(De).length >= 2) {
32430
32430
  r || (r = new b.Vector3().crossVectors(a, l).normalize()), a || (a = new b.Vector3().crossVectors(r, l).normalize()), l || (l = new b.Vector3().crossVectors(r, a).normalize()), r.applyQuaternion(this.quaternion), a.applyQuaternion(this.quaternion), l.applyQuaternion(this.quaternion);
32431
32431
  const c = new b.Matrix4().makeBasis(r, a, l), h = new b.Quaternion().setFromRotationMatrix(c);
32432
32432
  this.quaternion.copy(h);
@@ -33114,7 +33114,7 @@ class ao {
33114
33114
  }
33115
33115
  }
33116
33116
  hoverListener(t, e = 16777215, i = 1) {
33117
- const s = yi(t).filter(xe), o = [];
33117
+ const s = yi(t).filter(De), o = [];
33118
33118
  for (const r of s)
33119
33119
  if (r.material || r instanceof b.Group) {
33120
33120
  const a = r instanceof b.Group ? r.children.filter((f) => f instanceof b.Mesh) : [r];
@@ -34701,7 +34701,7 @@ function yk(n) {
34701
34701
  (o) => o.startLibraryID === e && o.endLibraryID === i
34702
34702
  );
34703
34703
  return s || console.warn(`Cannot find pipeline with startLibraryID ${e} and endLibraryID ${i}`), s;
34704
- }).filter(xe);
34704
+ }).filter(De);
34705
34705
  return _g(t);
34706
34706
  }
34707
34707
  function wk(n) {
@@ -34726,7 +34726,7 @@ function Ck(n, t) {
34726
34726
  return null;
34727
34727
  const f = u.data, m = t != null && t.getPipeRadius ? t.getPipeRadius(u) : 1.6 / 100, v = t != null && t.getPipeUrl ? t.getPipeUrl(l) : wk(l);
34728
34728
  return { id: u.id, radius: m, water: l, path: f, texture: v };
34729
- }).filter(xe);
34729
+ }).filter(De);
34730
34730
  return { startLibraryID: r, endLibraryID: a, pipes: c };
34731
34731
  });
34732
34732
  return { pipes: _g(e), pipelines: e };
@@ -35284,7 +35284,7 @@ let Ok = class extends wi {
35284
35284
  }
35285
35285
  /** 根据 target 查找管道模型 */
35286
35286
  findPipeObjectWithTarget(e) {
35287
- return e ? yk({ data: this.data, target: e }).map(({ id: s }) => this.findPipeObjectWithID(s)).filter(xe) : this.pipeObjects;
35287
+ return e ? yk({ data: this.data, target: e }).map(({ id: s }) => this.findPipeObjectWithID(s)).filter(De) : this.pipeObjects;
35288
35288
  }
35289
35289
  };
35290
35290
  const ZD = (n) => new Ok(n), Bk = "data:image/png;base64,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";
@@ -35295,7 +35295,7 @@ function mf(n) {
35295
35295
  let t, e, i, s, o, r;
35296
35296
  return {
35297
35297
  c() {
35298
- t = L("span"), e = De(
35298
+ t = L("span"), e = xe(
35299
35299
  /*content*/
35300
35300
  n[0]
35301
35301
  ), i = ee(), s = L("div"), P(t, "class", "room-label-item__text svelte-ntto16"), z(t, "background-image", "url(" + Bk + ")"), P(s, "class", "room-label-item__bar svelte-ntto16");
@@ -36354,7 +36354,7 @@ class ts extends Rt {
36354
36354
  return (i = (e = window.globalModules) == null ? void 0 : e.five) != null ? i : window.$five;
36355
36355
  }
36356
36356
  setStyle(e) {
36357
- xe(e.color) && (this.fontMesh.material.setValues({ color: e.color }), this.backgroundMesh.material.setValues({ color: e.color })), xe(e.size) && (this.fontMesh.material.setValues({ side: e.size }), this.backgroundMesh.material.setValues({ side: e.size })), xe(e.occlusionVisibility) && (e.occlusionVisibility ? e.occlusionMode === "depthTest" ? (this.fontMesh.material.depthTest = !1, this.backgroundMesh.visible = !1) : (this.fontMesh.material.depthTest = !0, this.backgroundMesh.visible = !0) : (this.fontMesh.material.depthTest = !0, this.backgroundMesh.visible = !1));
36357
+ De(e.color) && (this.fontMesh.material.setValues({ color: e.color }), this.backgroundMesh.material.setValues({ color: e.color })), De(e.size) && (this.fontMesh.material.setValues({ side: e.size }), this.backgroundMesh.material.setValues({ side: e.size })), De(e.occlusionVisibility) && (e.occlusionVisibility ? e.occlusionMode === "depthTest" ? (this.fontMesh.material.depthTest = !1, this.backgroundMesh.visible = !1) : (this.fontMesh.material.depthTest = !0, this.backgroundMesh.visible = !0) : (this.fontMesh.material.depthTest = !0, this.backgroundMesh.visible = !1));
36358
36358
  }
36359
36359
  highlight() {
36360
36360
  this.highlighted || (this.highlighted = !0, this.opacityBeforeHighlight = this.fontMesh.material.opacity, this.fontMesh.material.setValues({ opacity: this.opacityBeforeHighlight * Rl }));
@@ -36373,7 +36373,7 @@ class ts extends Rt {
36373
36373
  const i = (s) => {
36374
36374
  var o;
36375
36375
  this.dom && this.dom.__text !== s && (this.dom.__text = s, s ? this.dom.container.innerHTML = _l(s, {
36376
- style: `color: #${xe((o = this.style) == null ? void 0 : o.color) ? new b.Color(this.style.color).getHexString() : "ffffff"}`
36376
+ style: `color: #${De((o = this.style) == null ? void 0 : o.color) ? new b.Color(this.style.color).getHexString() : "ffffff"}`
36377
36377
  }) : this.dom.container.innerHTML = "");
36378
36378
  };
36379
36379
  e ? (i(e), this.dom.setPosition(this.position.clone())) : i(null);
@@ -36396,7 +36396,7 @@ class Ml extends Yt {
36396
36396
  });
36397
36397
  d(this, "updateEdgePointsVisibility", () => {
36398
36398
  var e;
36399
- xe((e = this._paramsStyle) == null ? void 0 : e.pointVisibility) && (this.startPoint && (this.startPoint.visible = typeof this._paramsStyle.pointVisibility == "object" ? this._paramsStyle.pointVisibility.startPoint : this._paramsStyle.pointVisibility), this.endPoint && (this.endPoint.visible = typeof this._paramsStyle.pointVisibility == "object" ? this._paramsStyle.pointVisibility.endPoint : this._paramsStyle.pointVisibility));
36399
+ De((e = this._paramsStyle) == null ? void 0 : e.pointVisibility) && (this.startPoint && (this.startPoint.visible = typeof this._paramsStyle.pointVisibility == "object" ? this._paramsStyle.pointVisibility.startPoint : this._paramsStyle.pointVisibility), this.endPoint && (this.endPoint.visible = typeof this._paramsStyle.pointVisibility == "object" ? this._paramsStyle.pointVisibility.endPoint : this._paramsStyle.pointVisibility));
36400
36400
  });
36401
36401
  this.add(this.pointGroup), e && this.setStyle(e), e != null && e.points && this.setPoints(e.points);
36402
36402
  }
@@ -36414,7 +36414,7 @@ class Ml extends Yt {
36414
36414
  }
36415
36415
  setPoints(e) {
36416
36416
  super.setPoints(e);
36417
- const i = e.map(Ne).filter(xe);
36417
+ const i = e.map(Ne).filter(De);
36418
36418
  this.pointGroup.removeChildren(), this.addIfNotExists(this.pointGroup), i.forEach((s) => {
36419
36419
  var r;
36420
36420
  const o = new ts($(x({}, this.style), { color: (r = this._paramsStyle) == null ? void 0 : r.lineColor, tip: void 0 }));
@@ -37046,7 +37046,7 @@ class Dc extends jr {
37046
37046
  return this.children;
37047
37047
  }
37048
37048
  enable() {
37049
- super.enable(), this.points.filter(xe).forEach((e) => {
37049
+ super.enable(), this.points.filter(De).forEach((e) => {
37050
37050
  const i = new ts();
37051
37051
  i.visible = !1, i.position.copy(e), i.draggable = !0, Ke.modules.fiveDomEvents.addEventListener(i, "drag", this.onDrag), Ke.modules.fiveDomEvents.addEventListener(i, "dragstart", this.onDragstart), Ke.modules.fiveDomEvents.addEventListener(i, "dragend", this.onDragend), this.add(i);
37052
37052
  });
@@ -37118,6 +37118,9 @@ class yf extends Ci {
37118
37118
  }
37119
37119
  });
37120
37120
  }
37121
+ setData(e) {
37122
+ e.points && this.polyLineMesh.setPoints(e.points), this.polyLineMesh.setStyle(e.style);
37123
+ }
37121
37124
  highlight() {
37122
37125
  var e;
37123
37126
  (e = this.polyLineMesh) == null || e.highlight();
@@ -37226,6 +37229,9 @@ class wf extends Ci {
37226
37229
  }
37227
37230
  });
37228
37231
  }
37232
+ setData(e) {
37233
+ e.point && this.pointMesh.position.copy(Ne(e.point)), this.pointMesh.setStyle(e.style);
37234
+ }
37229
37235
  highlight() {
37230
37236
  var e;
37231
37237
  (e = this.pointMesh) == null || e.highlight();
@@ -37322,7 +37328,7 @@ class Or extends Rt {
37322
37328
  return this._geometry;
37323
37329
  }
37324
37330
  setStyle(e) {
37325
- this.paramsStyle = x(x({}, this.paramsStyle), e), xe(e.color) && (this.meshFont.material.color.set(e.color), this.needsRender = !0), xe(e.opacity) && (this.meshFont.material.opacity = e.opacity, this.meshBackground.material.opacity = 0.3 / 0.5 * this.meshFont.material.opacity, this.needsRender = !0), this.setOcclusionVisibility(e);
37331
+ this.paramsStyle = x(x({}, this.paramsStyle), e), De(e.color) && (this.meshFont.material.color.set(e.color), this.needsRender = !0), De(e.opacity) && (this.meshFont.material.opacity = e.opacity, this.meshBackground.material.opacity = 0.3 / 0.5 * this.meshFont.material.opacity, this.needsRender = !0), this.setOcclusionVisibility(e);
37326
37332
  }
37327
37333
  highlight() {
37328
37334
  this.highlighted || (this.highlighted = !0, this.opacityBeforeHighlight = this.opacity, this.meshFont.material.opacity = this.opacity * Rl, this.meshBackground.material.opacity = 0.3 / 0.5 * this.meshFont.material.opacity, this.needsRender = !0);
@@ -37333,7 +37339,7 @@ class Or extends Rt {
37333
37339
  setOcclusionVisibility(e) {
37334
37340
  var o, r, a;
37335
37341
  const i = (r = (o = e.occlusionMode) != null ? o : this.paramsStyle.occlusionMode) != null ? r : "translucence", s = (a = e.occlusionVisibility) != null ? a : this.paramsStyle.occlusionVisibility;
37336
- xe(s) && (s ? i === "depthTest" ? (this.meshFont.material.depthTest = !1, this.remove(this.meshBackground)) : i === "translucence" && (this.meshFont.material.depthTest = !0, this.addIfNotExists(this.meshBackground)) : (this.meshFont.material.depthTest = !0, this.remove(this.meshBackground)));
37342
+ De(s) && (s ? i === "depthTest" ? (this.meshFont.material.depthTest = !1, this.remove(this.meshBackground)) : i === "translucence" && (this.meshFont.material.depthTest = !0, this.addIfNotExists(this.meshBackground)) : (this.meshFont.material.depthTest = !0, this.remove(this.meshBackground)));
37337
37343
  }
37338
37344
  }
37339
37345
  const Tc = new b.BufferGeometry();
@@ -37409,7 +37415,7 @@ class Lc extends Or {
37409
37415
  })(), this.areaDom.setPosition(this.center);
37410
37416
  const i = this.geometryInfo.area.toFixed(2);
37411
37417
  i === "0.00" ? this.areaDom.container.innerHTML = "" : this.areaDom.container.innerHTML = _l(i + "m²", {
37412
- style: `color: #${xe((o = this.style) == null ? void 0 : o.color) ? new b.Color(this.style.color).getHexString() : "000000"}`
37418
+ style: `color: #${De((o = this.style) == null ? void 0 : o.color) ? new b.Color(this.style.color).getHexString() : "000000"}`
37413
37419
  });
37414
37420
  }
37415
37421
  }
@@ -37493,6 +37499,9 @@ class Cf extends Ci {
37493
37499
  }
37494
37500
  });
37495
37501
  }
37502
+ setData(e) {
37503
+ e.points && this.areaMesh.setPoints(e.points), this.areaMesh.setStyle(e.style);
37504
+ }
37496
37505
  highlight() {
37497
37506
  var e;
37498
37507
  (e = this.areaMesh) == null || e.highlight();
@@ -37782,6 +37791,9 @@ class Pf extends Ci {
37782
37791
  }
37783
37792
  });
37784
37793
  }
37794
+ setData(e) {
37795
+ this.prismMesh.setPoints(e), this.prismMesh.setStyle(e.style);
37796
+ }
37785
37797
  highlight() {
37786
37798
  var e;
37787
37799
  (e = this.prismMesh) == null || e.highlight();
@@ -37909,7 +37921,7 @@ class ep extends Lc {
37909
37921
  return this.meshFont.material.color;
37910
37922
  }
37911
37923
  setPoints(e) {
37912
- const i = e.map(Ne).filter(xe);
37924
+ const i = e.map(Ne).filter(De);
37913
37925
  if (i.length < 3) {
37914
37926
  console.error("Invalid position");
37915
37927
  return;
@@ -37977,6 +37989,9 @@ class If extends Ci {
37977
37989
  }
37978
37990
  });
37979
37991
  }
37992
+ setData(e) {
37993
+ e.points && this.rectangleMesh.setPoints(e.points), this.rectangleMesh.setStyle(e.style);
37994
+ }
37980
37995
  highlight() {
37981
37996
  var e;
37982
37997
  (e = this.rectangleMesh) == null || e.highlight();
@@ -38109,6 +38124,8 @@ class sp extends Or {
38109
38124
  constructor(e) {
38110
38125
  super(e);
38111
38126
  d(this, "_normal");
38127
+ d(this, "_center");
38128
+ d(this, "_radius");
38112
38129
  e != null && e.center && (e != null && e.normal) && (e != null && e.radius) && this.setPoints(e);
38113
38130
  }
38114
38131
  get center() {
@@ -38124,8 +38141,12 @@ class sp extends Or {
38124
38141
  return this.meshFont.geometry.parameters.radius;
38125
38142
  }
38126
38143
  setPoints(e) {
38127
- const i = Ne(e.center), s = Ne(e.normal), o = e.radius, r = np(o);
38128
- this.geometry = new b.CircleGeometry(o, r), this.position.copy(i), this.lookAt(s.clone().add(i)), this.normal = s.clone().normalize(), this.needsRender = !0;
38144
+ var i, s, o;
38145
+ if (this._center = (i = Ne(e.center)) != null ? i : this._center, this._normal = (s = Ne(e.normal)) != null ? s : this._normal, this._radius = (o = e.radius) != null ? o : this._radius, this._center && this._normal && this._radius) {
38146
+ const r = np(this._radius);
38147
+ this.geometry = new b.CircleGeometry(this._radius, r), this.position.copy(this._center), this.lookAt(this._normal.clone().add(this._center)), this.normal = this._normal.clone().normalize();
38148
+ }
38149
+ this.needsRender = !0;
38129
38150
  }
38130
38151
  }
38131
38152
  class io extends sp {
@@ -38171,6 +38192,9 @@ class Ef extends Ci {
38171
38192
  }
38172
38193
  });
38173
38194
  }
38195
+ setData(e) {
38196
+ this.circleMesh.setPoints(e), this.circleMesh.setStyle(e.style);
38197
+ }
38174
38198
  highlight() {
38175
38199
  var e;
38176
38200
  (e = this.circleMesh) == null || e.highlight();
@@ -38234,6 +38258,8 @@ class Dl extends Rt {
38234
38258
  d(this, "edgeMesh");
38235
38259
  d(this, "highlighted", !1);
38236
38260
  d(this, "params");
38261
+ d(this, "_topCenter");
38262
+ d(this, "_bottomCenter");
38237
38263
  this.params = e, this.bottomCircle = new io(e), this.bottomCircle.name = "bottomCircle", this.topCircle = new io(e), this.topCircle.name = "topCircle", this.edgeMesh = new Or(e), e != null && e.bottomCenter && (e != null && e.topCenter) && (e != null && e.radius) && this.setPoints(e), this.addIfNotExists(this.bottomCircle);
38238
38264
  }
38239
38265
  get bottomCenter() {
@@ -38252,8 +38278,12 @@ class Dl extends Rt {
38252
38278
  return this.bottomCircle.color;
38253
38279
  }
38254
38280
  setPoints(e) {
38255
- const i = Ne(e.topCenter), s = Ne(e.bottomCenter), o = i.clone().sub(s).normalize();
38256
- this.bottomCircle.setPoints({ center: s, normal: o, radius: e.radius }), this.setTopCenter(i), this.needsRender = !0;
38281
+ var i, s;
38282
+ if (this._topCenter = (i = Ne(e.topCenter)) != null ? i : this.topCenter, this._bottomCenter = (s = Ne(e.bottomCenter)) != null ? s : this.bottomCenter, this._topCenter && this._bottomCenter) {
38283
+ const o = this._topCenter.clone().sub(this._bottomCenter).normalize();
38284
+ this.bottomCircle.setPoints({ center: this._bottomCenter, normal: o, radius: e.radius }), this.setTopCenter(this._topCenter);
38285
+ }
38286
+ this.needsRender = !0;
38257
38287
  }
38258
38288
  setTopCenter(e) {
38259
38289
  this.addIfNotExists(this.topCircle), this.topCircle.setPoints({ center: e, normal: this.normal, radius: this.radius }), this.setEdgeMesh();
@@ -38262,7 +38292,7 @@ class Dl extends Rt {
38262
38292
  this.addIfNotExists(this.bottomCircle), this.bottomCircle.setPoints({ center: e, normal: this.normal, radius: this.radius }), this.setEdgeMesh();
38263
38293
  }
38264
38294
  setStyle(e) {
38265
- this.params = x(x({}, this.params), e), xe(e.color) && this.bottomCircle.setStyle({ color: e.color }), xe(e.color) && this.topCircle.setStyle({ color: e.color });
38295
+ this.params = x(x({}, this.params), e), this.bottomCircle.setStyle(this.params), this.topCircle.setStyle(this.params);
38266
38296
  }
38267
38297
  highlight() {
38268
38298
  this.highlighted || (this.highlighted = !0, this.edgeMesh.highlight(), this.bottomCircle.highlight(), this.topCircle.highlight(), this.needsRender = !0);
@@ -38342,6 +38372,9 @@ class Mf extends Ci {
38342
38372
  }
38343
38373
  });
38344
38374
  }
38375
+ setData(e) {
38376
+ this.cylinderMesh.setPoints(e), this.cylinderMesh.setStyle(e.style);
38377
+ }
38345
38378
  highlight() {
38346
38379
  var e;
38347
38380
  (e = this.cylinderMesh) == null || e.highlight();
@@ -38518,6 +38551,9 @@ class kf extends Ci {
38518
38551
  }
38519
38552
  });
38520
38553
  }
38554
+ setData(e) {
38555
+ this.boxMesh.setPoints(e), this.boxMesh.setStyle(e.style);
38556
+ }
38521
38557
  highlight() {
38522
38558
  var e;
38523
38559
  (e = this.boxMesh) == null || e.highlight();
@@ -38592,6 +38628,9 @@ class xf extends Ci {
38592
38628
  }
38593
38629
  });
38594
38630
  }
38631
+ setData(e) {
38632
+ e.points && this.lineMesh.setPoints(e.points), this.lineMesh.setStyle(e.style);
38633
+ }
38595
38634
  highlight() {
38596
38635
  var e;
38597
38636
  (e = this.lineMesh) == null || e.highlight();
@@ -38706,7 +38745,7 @@ const Vn = class extends ct {
38706
38745
  } catch (i) {
38707
38746
  return console.error(i), null;
38708
38747
  }
38709
- }).filter(xe)
38748
+ }).filter(De)
38710
38749
  };
38711
38750
  }
38712
38751
  get items() {
@@ -38943,7 +38982,7 @@ function Df(n) {
38943
38982
  let t, e;
38944
38983
  return {
38945
38984
  c() {
38946
- t = L("div"), e = De(
38985
+ t = L("div"), e = xe(
38947
38986
  /*text*/
38948
38987
  n[0]
38949
38988
  ), P(t, "class", "model-maker-tag svelte-1q9fx3x");
@@ -39163,7 +39202,7 @@ class Ex extends wi {
39163
39202
  });
39164
39203
  }
39165
39204
  setState(e) {
39166
- xe(e.enabled) && this.state.enabled !== e.enabled && (this.state.enabled = e.enabled, e.enabled ? this.handleEnable() : this.handleDisable(), this.hooks.emit(e.enabled ? "enable" : "disable", { userAction: "我不知道捏" }), this.hooks.emit("stateChange", { state: this.state, userAction: "我不知道捏" })), xe(e.visible) && this.state.visible !== e.visible && (this.state.visible = e.visible, e.visible ? this.handleShow() : this.handleHide(), this.hooks.emit(e.visible ? "show" : "hide", { userAction: "我不知道捏" }), this.hooks.emit("stateChange", { state: this.state, userAction: "我不知道捏" }));
39205
+ De(e.enabled) && this.state.enabled !== e.enabled && (this.state.enabled = e.enabled, e.enabled ? this.handleEnable() : this.handleDisable(), this.hooks.emit(e.enabled ? "enable" : "disable", { userAction: "我不知道捏" }), this.hooks.emit("stateChange", { state: this.state, userAction: "我不知道捏" })), De(e.visible) && this.state.visible !== e.visible && (this.state.visible = e.visible, e.visible ? this.handleShow() : this.handleHide(), this.hooks.emit(e.visible ? "show" : "hide", { userAction: "我不知道捏" }), this.hooks.emit("stateChange", { state: this.state, userAction: "我不知道捏" }));
39167
39206
  }
39168
39207
  getItemById(e) {
39169
39208
  return this.items.find((i) => i.rawData.id === e);
@@ -39266,7 +39305,7 @@ const e5 = (...n) => new Ex(...n), Mx = /* @__PURE__ */ Object.freeze(/* @__PURE
39266
39305
  lookObject: Yv,
39267
39306
  lookPoint: $f,
39268
39307
  nextFrame: oo,
39269
- notNil: xe,
39308
+ notNil: De,
39270
39309
  pointInPolygon: Qc,
39271
39310
  reblink: Kf,
39272
39311
  requestAnimationFrameInterval: as,