@realsee/dnalogel 0.1.7 → 2.0.0-alpha.3

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 (480) hide show
  1. package/README.md +6 -89
  2. package/dist/dnalogel.cjs.js +2 -0
  3. package/dist/dnalogel.es.js +37288 -0
  4. package/dist/dnalogel.umd.js +2 -0
  5. package/dist/style.css +1 -0
  6. package/{plugins → libs}/CSS3DRenderPlugin/index.d.ts +1 -1
  7. package/libs/CSS3DRenderPlugin/index.js +181 -0
  8. package/libs/CSS3DRenderPlugin/utils/createResizeObserver.d.ts +7 -0
  9. package/libs/CSS3DRenderPlugin/utils/createResizeObserver.js +18 -0
  10. package/{plugins → libs}/CameraMovementPlugin/index.d.ts +0 -0
  11. package/libs/CameraMovementPlugin/index.js +159 -0
  12. package/{plugins → libs}/CameraMovementPlugin/typing.d.ts +0 -0
  13. package/libs/CameraMovementPlugin/typing.js +17 -0
  14. package/{plugins → libs}/ModelChassisCompassPlugin/index.d.ts +1 -1
  15. package/libs/ModelChassisCompassPlugin/index.js +75 -0
  16. package/{plugins → libs}/ModelEntryDoorGuidePlugin/index.d.ts +6 -2
  17. package/libs/ModelEntryDoorGuidePlugin/index.js +136 -0
  18. package/libs/ModelRoomLabelPlugin/Assets/roomLabelBg.d.ts +1 -0
  19. package/libs/ModelRoomLabelPlugin/Assets/roomLabelBg.js +1 -0
  20. package/{plugins → libs}/ModelRoomLabelPlugin/Controller.d.ts +3 -2
  21. package/libs/ModelRoomLabelPlugin/Controller.js +100 -0
  22. package/libs/ModelRoomLabelPlugin/RoomLabelItem.svelte +63 -0
  23. package/libs/ModelRoomLabelPlugin/RoomLabelItem.svelte.map +1 -0
  24. package/libs/ModelRoomLabelPlugin/RoomLabelItems.svelte +80 -0
  25. package/libs/ModelRoomLabelPlugin/RoomLabelItems.svelte.map +1 -0
  26. package/libs/ModelRoomLabelPlugin/index.d.ts +12 -0
  27. package/libs/ModelRoomLabelPlugin/index.js +9 -0
  28. package/{plugins → libs}/ModelRoomLabelPlugin/typings.d.ts +2 -2
  29. package/libs/ModelRoomLabelPlugin/typings.js +1 -0
  30. package/{plugins → libs}/ModelRoomLabelPlugin/utils/parseData.d.ts +0 -0
  31. package/libs/ModelRoomLabelPlugin/utils/parseData.js +14 -0
  32. package/{plugins → libs}/ModelViewPlugin/index.d.ts +0 -0
  33. package/libs/ModelViewPlugin/index.js +160 -0
  34. package/libs/PanoCompassPlugin/index.d.ts +25 -0
  35. package/libs/PanoCompassPlugin/index.js +89 -0
  36. package/{plugins → libs}/PanoCursorRaycasterPlugin/index.d.ts +2 -3
  37. package/libs/PanoCursorRaycasterPlugin/index.js +74 -0
  38. package/libs/floorplan/Assets/camera.d.ts +1 -0
  39. package/libs/floorplan/Assets/camera.js +1 -0
  40. package/libs/floorplan/Assets/floorplanExtraObject.d.ts +1 -0
  41. package/libs/floorplan/Assets/floorplanExtraObject.js +1 -0
  42. package/libs/floorplan/Components/BaseImage.svelte +25 -0
  43. package/libs/floorplan/Components/BaseImage.svelte.map +1 -0
  44. package/libs/floorplan/Components/Normalmage.svelte +11 -0
  45. package/libs/floorplan/Components/Normalmage.svelte.map +1 -0
  46. package/libs/floorplan/Components/RoomHighlight/Room.svelte +21 -0
  47. package/libs/floorplan/Components/RoomHighlight/Room.svelte.map +1 -0
  48. package/libs/floorplan/Components/RoomHighlight/RoomHighlight.svelte +60 -0
  49. package/libs/floorplan/Components/RoomHighlight/RoomHighlight.svelte.map +1 -0
  50. package/libs/floorplan/Components/RoomMaterials/RoomMaterial.svelte +35 -0
  51. package/libs/floorplan/Components/RoomMaterials/RoomMaterial.svelte.map +1 -0
  52. package/libs/floorplan/Components/RoomMaterials/RoomMaterial_0.svelte +7 -0
  53. package/libs/floorplan/Components/RoomMaterials/RoomMaterial_0.svelte.map +1 -0
  54. package/libs/floorplan/Components/RoomMaterials/RoomMaterial_1.svelte +16 -0
  55. package/libs/floorplan/Components/RoomMaterials/RoomMaterial_1.svelte.map +1 -0
  56. package/libs/floorplan/Components/RoomMaterials/RoomMaterial_2.svelte +17 -0
  57. package/libs/floorplan/Components/RoomMaterials/RoomMaterial_2.svelte.map +1 -0
  58. package/libs/floorplan/Components/SvgImage.svelte +25 -0
  59. package/libs/floorplan/Components/SvgImage.svelte.map +1 -0
  60. package/libs/floorplan/ModelFloorplanPlugin/Assets/compass.d.ts +1 -0
  61. package/libs/floorplan/ModelFloorplanPlugin/Assets/compass.js +1 -0
  62. package/libs/floorplan/ModelFloorplanPlugin/Components/Camera.svelte +46 -0
  63. package/libs/floorplan/ModelFloorplanPlugin/Components/Camera.svelte.map +1 -0
  64. package/libs/floorplan/ModelFloorplanPlugin/Components/Compass.svelte +48 -0
  65. package/libs/floorplan/ModelFloorplanPlugin/Components/Compass.svelte.map +1 -0
  66. package/libs/floorplan/ModelFloorplanPlugin/Components/CurrentFloor/CurrentFloor.svelte +37 -0
  67. package/libs/floorplan/ModelFloorplanPlugin/Components/CurrentFloor/CurrentFloor.svelte.map +1 -0
  68. package/libs/floorplan/ModelFloorplanPlugin/Components/Main.svelte +50 -0
  69. package/libs/floorplan/ModelFloorplanPlugin/Components/Main.svelte.map +1 -0
  70. package/libs/floorplan/ModelFloorplanPlugin/Components/RoomLabels/RoomLabel.svelte +41 -0
  71. package/libs/floorplan/ModelFloorplanPlugin/Components/RoomLabels/RoomLabel.svelte.map +1 -0
  72. package/libs/floorplan/ModelFloorplanPlugin/Components/RoomLabels/RoomLabels.svelte +25 -0
  73. package/libs/floorplan/ModelFloorplanPlugin/Components/RoomLabels/RoomLabels.svelte.map +1 -0
  74. package/libs/floorplan/ModelFloorplanPlugin/Components/RuleLabels/RuleItem.svelte +148 -0
  75. package/libs/floorplan/ModelFloorplanPlugin/Components/RuleLabels/RuleItem.svelte.map +1 -0
  76. package/libs/floorplan/ModelFloorplanPlugin/Components/RuleLabels/RuleLabels.svelte +15 -0
  77. package/libs/floorplan/ModelFloorplanPlugin/Components/RuleLabels/RuleLabels.svelte.map +1 -0
  78. package/{plugins → libs}/floorplan/ModelFloorplanPlugin/Controller.d.ts +16 -14
  79. package/libs/floorplan/ModelFloorplanPlugin/Controller.js +357 -0
  80. package/{plugins → libs}/floorplan/ModelFloorplanPlugin/index.d.ts +1 -1
  81. package/libs/floorplan/ModelFloorplanPlugin/index.js +5 -0
  82. package/{plugins → libs}/floorplan/ModelFloorplanPlugin/typings/events.type.d.ts +0 -0
  83. package/libs/floorplan/ModelFloorplanPlugin/typings/events.type.js +1 -0
  84. package/{plugins → libs}/floorplan/ModelFloorplanPlugin/utils/constant.d.ts +1 -1
  85. package/libs/floorplan/ModelFloorplanPlugin/utils/constant.js +16 -0
  86. package/{plugins → libs}/floorplan/ModelFloorplanPlugin/utils/correctFiveState.d.ts +0 -0
  87. package/libs/floorplan/ModelFloorplanPlugin/utils/correctFiveState.js +46 -0
  88. package/libs/floorplan/PanoFloorplanRadarPlugin/Components/Camera.svelte +84 -0
  89. package/libs/floorplan/PanoFloorplanRadarPlugin/Components/Camera.svelte.map +1 -0
  90. package/libs/floorplan/PanoFloorplanRadarPlugin/Components/CurrentFloor/CurrentFloor.svelte +18 -0
  91. package/libs/floorplan/PanoFloorplanRadarPlugin/Components/CurrentFloor/CurrentFloor.svelte.map +1 -0
  92. package/libs/floorplan/PanoFloorplanRadarPlugin/Components/CurrentFloor/ExtraObjects.svelte +40 -0
  93. package/libs/floorplan/PanoFloorplanRadarPlugin/Components/CurrentFloor/ExtraObjects.svelte.map +1 -0
  94. package/libs/floorplan/PanoFloorplanRadarPlugin/Components/Main.svelte +61 -0
  95. package/libs/floorplan/PanoFloorplanRadarPlugin/Components/Main.svelte.map +1 -0
  96. package/{plugins → libs}/floorplan/PanoFloorplanRadarPlugin/Controller.d.ts +6 -11
  97. package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +88 -0
  98. package/{plugins → libs}/floorplan/PanoFloorplanRadarPlugin/index.d.ts +0 -0
  99. package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +5 -0
  100. package/{plugins → libs}/floorplan/TopviewFloorplanPlugin/Controller.d.ts +15 -11
  101. package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +189 -0
  102. package/{plugins → libs}/floorplan/TopviewFloorplanPlugin/index.d.ts +0 -0
  103. package/libs/floorplan/TopviewFloorplanPlugin/index.js +5 -0
  104. package/{plugins → libs}/floorplan/TopviewFloorplanPlugin/style.d.ts +0 -0
  105. package/libs/floorplan/TopviewFloorplanPlugin/style.js +8 -0
  106. package/{plugins → libs}/floorplan/typings/floorplanData.d.ts +6 -0
  107. package/libs/floorplan/typings/floorplanData.js +6 -0
  108. package/{plugins → libs}/floorplan/typings/floorplanServerData.d.ts +4 -2
  109. package/libs/floorplan/typings/floorplanServerData.js +101 -0
  110. package/libs/floorplan/typings/utility.d.ts +2 -0
  111. package/libs/floorplan/typings/utility.js +1 -0
  112. package/{plugins → libs}/floorplan/utils/formatData.d.ts +3 -3
  113. package/libs/floorplan/utils/formatData.js +94 -0
  114. package/{plugins → libs}/floorplan/utils/formatPosition.d.ts +3 -4
  115. package/libs/floorplan/utils/formatPosition.js +50 -0
  116. package/libs/index.d.ts +19 -0
  117. package/libs/index.js +11 -0
  118. package/{shared-utils → libs/shared-utils}/Preloader.d.ts +0 -0
  119. package/libs/shared-utils/Preloader.js +38 -0
  120. package/{shared-utils → libs/shared-utils}/Subscribe.d.ts +3 -3
  121. package/libs/shared-utils/Subscribe.js +101 -0
  122. package/{shared-utils → libs/shared-utils}/animationFrame/BetterTween.d.ts +0 -0
  123. package/libs/shared-utils/animationFrame/BetterTween.js +30 -0
  124. package/{shared-utils → libs/shared-utils}/animationFrame/calculateProgress.d.ts +0 -0
  125. package/libs/shared-utils/animationFrame/calculateProgress.js +23 -0
  126. package/{shared-utils → libs/shared-utils}/animationFrame/formatRad.d.ts +0 -0
  127. package/libs/shared-utils/animationFrame/formatRad.js +20 -0
  128. package/{shared-utils → libs/shared-utils}/animationFrame/index.d.ts +0 -0
  129. package/libs/shared-utils/animationFrame/index.js +48 -0
  130. package/{shared-utils → libs/shared-utils}/animationFrame/tween.d.ts +0 -0
  131. package/libs/shared-utils/animationFrame/tween.js +44 -0
  132. package/libs/shared-utils/changeModelCanvasOpacity.d.ts +2 -0
  133. package/libs/shared-utils/changeModelCanvasOpacity.js +15 -0
  134. package/{shared-utils → libs/shared-utils}/createCanvasTextTexture.d.ts +0 -0
  135. package/libs/shared-utils/createCanvasTextTexture.js +19 -0
  136. package/{shared-utils → libs/shared-utils}/createLine/index.d.ts +1 -1
  137. package/libs/shared-utils/createLine/index.js +8 -0
  138. package/{shared-utils → libs/shared-utils}/debounce.d.ts +1 -1
  139. package/libs/shared-utils/debounce.js +14 -0
  140. package/{shared-utils → libs/shared-utils}/equal.d.ts +0 -0
  141. package/libs/shared-utils/equal.js +84 -0
  142. package/{shared-utils → libs/shared-utils}/filter.d.ts +0 -0
  143. package/libs/shared-utils/filter.js +53 -0
  144. package/{shared-utils → libs/shared-utils}/five/changeMode.d.ts +0 -0
  145. package/libs/shared-utils/five/changeMode.js +15 -0
  146. package/{shared-utils → libs/shared-utils}/five/useFivePlugin.d.ts +0 -0
  147. package/libs/shared-utils/five/useFivePlugin.js +8 -0
  148. package/{shared-utils → libs/shared-utils}/formatRad.d.ts +0 -0
  149. package/libs/shared-utils/formatRad.js +10 -0
  150. package/{shared-utils → libs/shared-utils}/getPxmm.d.ts +0 -0
  151. package/libs/shared-utils/getPxmm.js +20 -0
  152. package/{shared-utils → libs/shared-utils}/getRandomColor.d.ts +0 -0
  153. package/libs/shared-utils/getRandomColor.js +10 -0
  154. package/{shared-utils → libs/shared-utils}/isNil.d.ts +0 -0
  155. package/libs/shared-utils/isNil.js +14 -0
  156. package/{shared-utils → libs/shared-utils}/isTruelyObject.d.ts +0 -0
  157. package/libs/shared-utils/isTruelyObject.js +20 -0
  158. package/libs/shared-utils/math/evenNumber.d.ts +3 -0
  159. package/libs/shared-utils/math/evenNumber.js +4 -0
  160. package/{shared-utils → libs/shared-utils}/math/planimetry.d.ts +4 -4
  161. package/libs/shared-utils/math/planimetry.js +288 -0
  162. package/{shared-utils → libs/shared-utils}/math/rad2Deg.d.ts +0 -0
  163. package/libs/shared-utils/math/rad2Deg.js +3 -0
  164. package/{shared-utils → libs/shared-utils}/nearlyEqual.d.ts +0 -0
  165. package/libs/shared-utils/nearlyEqual.js +9 -0
  166. package/{shared-utils → libs/shared-utils}/nextFrame.d.ts +0 -0
  167. package/libs/shared-utils/nextFrame.js +6 -0
  168. package/{shared-utils → libs/shared-utils}/noop.d.ts +0 -0
  169. package/libs/shared-utils/noop.js +7 -0
  170. package/{shared-utils → libs/shared-utils}/object3d2LocalMatrix.d.ts +0 -0
  171. package/libs/shared-utils/object3d2LocalMatrix.js +29 -0
  172. package/{shared-utils → libs/shared-utils}/px2rem.d.ts +0 -0
  173. package/libs/shared-utils/px2rem.js +4 -0
  174. package/libs/shared-utils/removeArrayItem.d.ts +7 -0
  175. package/libs/shared-utils/removeArrayItem.js +12 -0
  176. package/{shared-utils → libs/shared-utils}/tap.d.ts +0 -0
  177. package/{shared-utils → libs/shared-utils}/tap.js +4 -13
  178. package/{shared-utils → libs/shared-utils}/three/centerPoint.d.ts +0 -0
  179. package/libs/shared-utils/three/centerPoint.js +4 -0
  180. package/{shared-utils → libs/shared-utils}/three/getExtraModelLoader.d.ts +0 -0
  181. package/libs/shared-utils/three/getExtraModelLoader.js +18 -0
  182. package/{shared-utils → libs/shared-utils}/three/getNormal.d.ts +0 -0
  183. package/libs/shared-utils/three/getNormal.js +6 -0
  184. package/{shared-utils → libs/shared-utils}/three/getTextureLoader.d.ts +0 -0
  185. package/libs/shared-utils/three/getTextureLoader.js +17 -0
  186. package/{shared-utils → libs/shared-utils}/three/loadFbxObj.d.ts +0 -0
  187. package/libs/shared-utils/three/loadFbxObj.js +13 -0
  188. package/libs/shared-utils/three/loadTexture.d.ts +2 -0
  189. package/libs/shared-utils/three/loadTexture.js +10 -0
  190. package/{shared-utils → libs/shared-utils}/three/transformPositionToVector3.d.ts +0 -0
  191. package/libs/shared-utils/three/transformPositionToVector3.js +3 -0
  192. package/{shared-utils → libs/shared-utils}/three/transfromToMeshBasicMaterial.d.ts +0 -0
  193. package/libs/shared-utils/three/transfromToMeshBasicMaterial.js +14 -0
  194. package/{shared-utils → libs/shared-utils}/throttle.d.ts +1 -1
  195. package/libs/shared-utils/throttle.js +18 -0
  196. package/{shared-utils → libs/shared-utils}/to.d.ts +0 -0
  197. package/libs/shared-utils/to.js +18 -0
  198. package/{shared-utils → libs/shared-utils}/useDebounce.d.ts +0 -0
  199. package/libs/shared-utils/useDebounce.js +22 -0
  200. package/{shared-utils → libs/shared-utils}/useThrottle.d.ts +0 -0
  201. package/libs/shared-utils/useThrottle.js +25 -0
  202. package/libs/{gltf-viewer → shared-utils}/uuid.d.ts +0 -0
  203. package/libs/shared-utils/uuid.js +11 -0
  204. package/{shared-utils → libs/shared-utils}/vectorTocoordinates.d.ts +0 -0
  205. package/libs/shared-utils/vectorTocoordinates.js +9 -0
  206. package/{typings → libs/typings}/math.type.d.ts +0 -0
  207. package/libs/typings/math.type.js +1 -0
  208. package/{typings → libs/typings}/utils.type.d.ts +0 -0
  209. package/libs/typings/utils.type.js +1 -0
  210. package/package.json +45 -17
  211. package/TERMS.txt +0 -56
  212. package/components/ARVideoFigure/ARVideoFigureMesh.d.ts +0 -44
  213. package/components/ARVideoFigure/ARVideoFigureMesh.js +0 -371
  214. package/components/ARVideoFigure/ARVideoFigureScene.d.ts +0 -11
  215. package/components/ARVideoFigure/ARVideoFigureScene.js +0 -85
  216. package/components/ARVideoFigure/ImgBgTransparent.d.ts +0 -16
  217. package/components/ARVideoFigure/ImgBgTransparent.js +0 -65
  218. package/components/ARVideoFigure/ImgBgTransparentMesh.d.ts +0 -30
  219. package/components/ARVideoFigure/ImgBgTransparentMesh.js +0 -183
  220. package/components/ARVideoFigure/fragmentShader.d.ts +0 -5
  221. package/components/ARVideoFigure/fragmentShader.js +0 -18
  222. package/components/ARVideoFigure/index.d.ts +0 -15
  223. package/components/ARVideoFigure/index.js +0 -80
  224. package/components/ARVideoFigure/vertexShader.d.ts +0 -1
  225. package/components/ARVideoFigure/vertexShader.js +0 -10
  226. package/components/GLTFView/index.d.ts +0 -72
  227. package/components/GLTFView/index.js +0 -149
  228. package/components/GlassFilters/index.d.ts +0 -32
  229. package/components/GlassFilters/index.js +0 -78
  230. package/components/ModelView/ModelViewController.d.ts +0 -18
  231. package/components/ModelView/ModelViewController.js +0 -157
  232. package/components/ModelView/index.d.ts +0 -10
  233. package/components/ModelView/index.js +0 -24
  234. package/components/PaintBrush/index.d.ts +0 -16
  235. package/components/PaintBrush/index.js +0 -47
  236. package/components/PanoTag/index.d.ts +0 -4
  237. package/components/PanoTag/index.js +0 -13
  238. package/custom.d.js +0 -3
  239. package/data/1aGKl9JmrlXMXx8d.d.ts +0 -104
  240. package/data/1aGKl9JmrlXMXx8d.js +0 -537
  241. package/data/54djM0oR6ky3Ey8e.d.ts +0 -55
  242. package/data/54djM0oR6ky3Ey8e.js +0 -350
  243. package/data/6gyq3v1verxD7JO1.d.ts +0 -104
  244. package/data/6gyq3v1verxD7JO1.js +0 -462
  245. package/data/8054djM0oR6ky3Ey8e.d.ts +0 -55
  246. package/data/8054djM0oR6ky3Ey8e.js +0 -350
  247. package/data/KpokNd82rwjhackhQTBEoYKHg8zGbPXe.d.ts +0 -84
  248. package/data/KpokNd82rwjhackhQTBEoYKHg8zGbPXe.js +0 -600
  249. package/data/PrXel3aqGbp34JQn.d.ts +0 -389
  250. package/data/PrXel3aqGbp34JQn.js +0 -4649
  251. package/data/XJ6NMLWnkAY3Rdx8.d.ts +0 -843
  252. package/data/XJ6NMLWnkAY3Rdx8.js +0 -7989
  253. package/data/YdoNP9K4rwQDwjJr.d.ts +0 -83
  254. package/data/YdoNP9K4rwQDwjJr.js +0 -1453
  255. package/data/ZLvK29zj4L29Jowd.d.ts +0 -55
  256. package/data/ZLvK29zj4L29Jowd.js +0 -372
  257. package/data/auto3d-njL5J99VwCmnjtQElOmXQr.d.ts +0 -86
  258. package/data/auto3d-njL5J99VwCmnjtQElOmXQr.js +0 -711
  259. package/data/extrude-walls/ZLvK29zj4L29Jowd.d.ts +0 -5
  260. package/data/extrude-walls/ZLvK29zj4L29Jowd.js +0 -14
  261. package/data/extrude-walls/lo024DEgzanMj5BE.d.ts +0 -5
  262. package/data/extrude-walls/lo024DEgzanMj5BE.js +0 -14
  263. package/data/jd6oMOzPxnQ3BvxY_B7yw51J9rXlhYhjhGTOgRVqu6WeEqjNX.d.ts +0 -85
  264. package/data/jd6oMOzPxnQ3BvxY_B7yw51J9rXlhYhjhGTOgRVqu6WeEqjNX.js +0 -511
  265. package/data/lo024DEgzanMj5BE.d.ts +0 -55
  266. package/data/lo024DEgzanMj5BE.js +0 -966
  267. package/data/oPzy3ApbjjpD8YdR.d.ts +0 -83
  268. package/data/oPzy3ApbjjpD8YdR.js +0 -283
  269. package/data/qjAxMG4XbPn96wKG.d.ts +0 -104
  270. package/data/qjAxMG4XbPn96wKG.js +0 -637
  271. package/data/rXel3aPQRRBD4JQn.d.ts +0 -86
  272. package/data/rXel3aPQRRBD4JQn.js +0 -622
  273. package/data/vLykj3NWrllMrG06.d.ts +0 -91
  274. package/data/vLykj3NWrllMrG06.js +0 -2729
  275. package/data/wz0QV9KA4ugyo9ME.d.ts +0 -39
  276. package/data/wz0QV9KA4ugyo9ME.js +0 -136
  277. package/data/zxMawr9raSg8LYjG.d.ts +0 -53
  278. package/data/zxMawr9raSg8LYjG.js +0 -590
  279. package/examples/FiveStateController/index.js +0 -134
  280. package/examples/VRHouse/Mobile.js +0 -36
  281. package/examples/VRHouse/PC.js +0 -36
  282. package/examples/VRHouse/index.js +0 -36
  283. package/index.d.ts +0 -15
  284. package/index.js +0 -45
  285. package/libs/gltf-viewer/Subscribe.d.ts +0 -76
  286. package/libs/gltf-viewer/Subscribe.js +0 -231
  287. package/libs/gltf-viewer/coordsMoveByOffset.d.ts +0 -13
  288. package/libs/gltf-viewer/coordsMoveByOffset.js +0 -22
  289. package/libs/gltf-viewer/coordsToDirection.d.ts +0 -5
  290. package/libs/gltf-viewer/coordsToDirection.js +0 -41
  291. package/libs/gltf-viewer/formatRad.d.ts +0 -1
  292. package/libs/gltf-viewer/formatRad.js +0 -13
  293. package/libs/gltf-viewer/getFrameTime.d.ts +0 -1
  294. package/libs/gltf-viewer/getFrameTime.js +0 -28
  295. package/libs/gltf-viewer/index.d.ts +0 -55
  296. package/libs/gltf-viewer/index.js +0 -650
  297. package/libs/gltf-viewer/mouseWheel.d.ts +0 -2
  298. package/libs/gltf-viewer/mouseWheel.js +0 -59
  299. package/libs/gltf-viewer/requestAnimationFrame.d.ts +0 -1
  300. package/libs/gltf-viewer/requestAnimationFrame.js +0 -18
  301. package/libs/gltf-viewer/requestAnimationFrameInterval.d.ts +0 -1
  302. package/libs/gltf-viewer/requestAnimationFrameInterval.js +0 -31
  303. package/libs/gltf-viewer/uuid.js +0 -28
  304. package/plugins/AutoPreloadPlugin/index.d.ts +0 -23
  305. package/plugins/AutoPreloadPlugin/index.js +0 -111
  306. package/plugins/CSS3DRenderPlugin/components/Marker/index.d.ts +0 -12
  307. package/plugins/CSS3DRenderPlugin/components/Marker/index.js +0 -121
  308. package/plugins/CSS3DRenderPlugin/index.js +0 -298
  309. package/plugins/CameraMovementPlugin/index.js +0 -362
  310. package/plugins/CameraMovementPlugin/typing.js +0 -37
  311. package/plugins/ModelChassisCompassPlugin/index.js +0 -157
  312. package/plugins/ModelEntryDoorGuidePlugin/index.js +0 -247
  313. package/plugins/ModelExtrudeWallsPlugin/index.d.ts +0 -16
  314. package/plugins/ModelExtrudeWallsPlugin/index.js +0 -252
  315. package/plugins/ModelRoomLabelPlugin/Controller.js +0 -153
  316. package/plugins/ModelRoomLabelPlugin/RoomLabelItem.d.ts +0 -8
  317. package/plugins/ModelRoomLabelPlugin/RoomLabelItem.js +0 -66
  318. package/plugins/ModelRoomLabelPlugin/RoomLabelItems.d.ts +0 -7
  319. package/plugins/ModelRoomLabelPlugin/RoomLabelItems.js +0 -159
  320. package/plugins/ModelRoomLabelPlugin/index.d.ts +0 -8
  321. package/plugins/ModelRoomLabelPlugin/index.js +0 -18
  322. package/plugins/ModelRoomLabelPlugin/typings.js +0 -7
  323. package/plugins/ModelRoomLabelPlugin/utils/parseData.js +0 -35
  324. package/plugins/ModelTVVideoPlugin/index.d.ts +0 -21
  325. package/plugins/ModelTVVideoPlugin/index.js +0 -397
  326. package/plugins/ModelViewPlugin/index.js +0 -223
  327. package/plugins/PanoCursorRaycasterPlugin/PanoCursorRaycasterPluginUsage.d.ts +0 -48
  328. package/plugins/PanoCursorRaycasterPlugin/components/MovePointTowardsCamera.d.ts +0 -9
  329. package/plugins/PanoCursorRaycasterPlugin/components/MovePointTowardsCamera.js +0 -117
  330. package/plugins/PanoCursorRaycasterPlugin/components/PointAxesHelper.d.ts +0 -11
  331. package/plugins/PanoCursorRaycasterPlugin/components/PointAxesHelper.js +0 -39
  332. package/plugins/PanoCursorRaycasterPlugin/index.js +0 -126
  333. package/plugins/PanoCursorRaycasterPlugin/utils/addLineToFive.d.ts +0 -5
  334. package/plugins/PanoCursorRaycasterPlugin/utils/addLineToFive.js +0 -27
  335. package/plugins/PanoCursorRaycasterPlugin/utils/createLine.d.ts +0 -3
  336. package/plugins/PanoCursorRaycasterPlugin/utils/createLine.js +0 -48
  337. package/plugins/PanoDoorLabelPlugin/index.d.ts +0 -4
  338. package/plugins/PanoDoorLabelPlugin/index.js +0 -14
  339. package/plugins/PanoIRobotPlugin/index.d.ts +0 -10
  340. package/plugins/PanoIRobotPlugin/index.js +0 -18
  341. package/plugins/PanoMaskSelectorPlugin/compare.d.ts +0 -1
  342. package/plugins/PanoMaskSelectorPlugin/compare.js +0 -17
  343. package/plugins/PanoMaskSelectorPlugin/createBox.d.ts +0 -7
  344. package/plugins/PanoMaskSelectorPlugin/createBox.js +0 -79
  345. package/plugins/PanoMaskSelectorPlugin/createTextures.d.ts +0 -3
  346. package/plugins/PanoMaskSelectorPlugin/createTextures.js +0 -45
  347. package/plugins/PanoMaskSelectorPlugin/fragmentShader.d.ts +0 -1
  348. package/plugins/PanoMaskSelectorPlugin/fragmentShader.js +0 -10
  349. package/plugins/PanoMaskSelectorPlugin/index.d.ts +0 -49
  350. package/plugins/PanoMaskSelectorPlugin/index.js +0 -348
  351. package/plugins/PanoMaskSelectorPlugin/vertexShader.d.ts +0 -1
  352. package/plugins/PanoMaskSelectorPlugin/vertexShader.js +0 -10
  353. package/plugins/PanoRulerPlugin/data/roomInfo.d.ts +0 -3
  354. package/plugins/PanoRulerPlugin/data/roomInfo.js +0 -51
  355. package/plugins/PanoRulerPlugin/data/roomRules.d.ts +0 -3
  356. package/plugins/PanoRulerPlugin/data/roomRules.js +0 -235
  357. package/plugins/PanoRulerPlugin/index.d.ts +0 -27
  358. package/plugins/PanoRulerPlugin/index.js +0 -637
  359. package/plugins/PanoRulerPlugin/typings.d.ts +0 -21
  360. package/plugins/PanoRulerPlugin/typings.js +0 -7
  361. package/plugins/PanoTVVideoPlugin/index.d.ts +0 -26
  362. package/plugins/PanoTVVideoPlugin/index.js +0 -433
  363. package/plugins/TreasurePlugin/Controller.d.ts +0 -73
  364. package/plugins/TreasurePlugin/Controller.js +0 -250
  365. package/plugins/TreasurePlugin/TreasureFaceAnime.d.ts +0 -25
  366. package/plugins/TreasurePlugin/TreasureFaceAnime.js +0 -143
  367. package/plugins/TreasurePlugin/TreasureObject.d.ts +0 -53
  368. package/plugins/TreasurePlugin/TreasureObject.js +0 -406
  369. package/plugins/TreasurePlugin/TreasureOpenAnime.d.ts +0 -25
  370. package/plugins/TreasurePlugin/TreasureOpenAnime.js +0 -127
  371. package/plugins/TreasurePlugin/constants.d.ts +0 -33
  372. package/plugins/TreasurePlugin/constants.js +0 -67
  373. package/plugins/TreasurePlugin/index.d.ts +0 -11
  374. package/plugins/TreasurePlugin/index.js +0 -26
  375. package/plugins/TreasurePlugin/typings.d.ts +0 -2
  376. package/plugins/TreasurePlugin/typings.js +0 -7
  377. package/plugins/floorplan/Assets/floorplanExtraObject.d.ts +0 -1
  378. package/plugins/floorplan/Assets/floorplanExtraObject.js +0 -10
  379. package/plugins/floorplan/ModelFloorplanPlugin/Controller.js +0 -626
  380. package/plugins/floorplan/ModelFloorplanPlugin/components/Camera.d.ts +0 -13
  381. package/plugins/floorplan/ModelFloorplanPlugin/components/Camera.js +0 -78
  382. package/plugins/floorplan/ModelFloorplanPlugin/components/Compass.d.ts +0 -5
  383. package/plugins/floorplan/ModelFloorplanPlugin/components/Compass.js +0 -84
  384. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomHighlight.d.ts +0 -10
  385. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomHighlight.js +0 -129
  386. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomLabels.d.ts +0 -13
  387. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomLabels.js +0 -118
  388. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/index.d.ts +0 -13
  389. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/index.js +0 -62
  390. package/plugins/floorplan/ModelFloorplanPlugin/components/index.d.ts +0 -20
  391. package/plugins/floorplan/ModelFloorplanPlugin/components/index.js +0 -88
  392. package/plugins/floorplan/ModelFloorplanPlugin/controller.style.d.ts +0 -1
  393. package/plugins/floorplan/ModelFloorplanPlugin/controller.style.js +0 -16
  394. package/plugins/floorplan/ModelFloorplanPlugin/index.js +0 -20
  395. package/plugins/floorplan/ModelFloorplanPlugin/typings/events.type.js +0 -7
  396. package/plugins/floorplan/ModelFloorplanPlugin/utils/constant.js +0 -33
  397. package/plugins/floorplan/ModelFloorplanPlugin/utils/correctFiveState.js +0 -154
  398. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.d.ts +0 -13
  399. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.js +0 -113
  400. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.style.d.ts +0 -3
  401. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.style.js +0 -39
  402. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/ExtraObjects.d.ts +0 -5
  403. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/ExtraObjects.js +0 -66
  404. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/RoomHighlight.d.ts +0 -9
  405. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/RoomHighlight.js +0 -126
  406. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/index.d.ts +0 -11
  407. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/index.js +0 -58
  408. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/index.d.ts +0 -17
  409. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/index.js +0 -85
  410. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/index.style.d.ts +0 -2
  411. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/index.style.js +0 -15
  412. package/plugins/floorplan/PanoFloorplanRadarPlugin/Controller.js +0 -211
  413. package/plugins/floorplan/PanoFloorplanRadarPlugin/index.js +0 -20
  414. package/plugins/floorplan/TopviewFloorplanPlugin/Controller.js +0 -262
  415. package/plugins/floorplan/TopviewFloorplanPlugin/index.js +0 -18
  416. package/plugins/floorplan/TopviewFloorplanPlugin/style.js +0 -16
  417. package/plugins/floorplan/components/FloorplanImage.d.ts +0 -7
  418. package/plugins/floorplan/components/FloorplanImage.js +0 -90
  419. package/plugins/floorplan/typings/floorplanData.js +0 -7
  420. package/plugins/floorplan/typings/floorplanServerData.js +0 -382
  421. package/plugins/floorplan/utils/formatData.js +0 -217
  422. package/plugins/floorplan/utils/formatPosition.js +0 -89
  423. package/shared-utils/Preloader.js +0 -57
  424. package/shared-utils/Subscribe.js +0 -230
  425. package/shared-utils/animationFrame/BetterTween.js +0 -103
  426. package/shared-utils/animationFrame/calculateProgress.js +0 -40
  427. package/shared-utils/animationFrame/formatRad.js +0 -36
  428. package/shared-utils/animationFrame/index.js +0 -81
  429. package/shared-utils/animationFrame/tween.js +0 -92
  430. package/shared-utils/changeModelCanvansOpacity.d.ts +0 -2
  431. package/shared-utils/changeModelCanvansOpacity.js +0 -38
  432. package/shared-utils/createCanvasTextTexture.js +0 -31
  433. package/shared-utils/createFiveContainer.d.ts +0 -10
  434. package/shared-utils/createFiveContainer.js +0 -171
  435. package/shared-utils/createLine/index.js +0 -43
  436. package/shared-utils/debounce.js +0 -30
  437. package/shared-utils/equal.js +0 -107
  438. package/shared-utils/filter.js +0 -127
  439. package/shared-utils/five/changeMode.js +0 -82
  440. package/shared-utils/five/useFivePlugin.js +0 -17
  441. package/shared-utils/formatRad.js +0 -18
  442. package/shared-utils/getPxmm.js +0 -51
  443. package/shared-utils/getRandomColor.js +0 -23
  444. package/shared-utils/isNil.js +0 -26
  445. package/shared-utils/isTruelyObject.js +0 -31
  446. package/shared-utils/math/evenNumber.d.ts +0 -1
  447. package/shared-utils/math/evenNumber.js +0 -13
  448. package/shared-utils/math/planimetry.js +0 -352
  449. package/shared-utils/math/rad2Deg.js +0 -12
  450. package/shared-utils/nearlyEqual.js +0 -19
  451. package/shared-utils/nextFrame.js +0 -15
  452. package/shared-utils/noop.js +0 -19
  453. package/shared-utils/object3d2LocalMatrix.js +0 -79
  454. package/shared-utils/px2rem.js +0 -22
  455. package/shared-utils/three/centerPoint.js +0 -14
  456. package/shared-utils/three/getExtraModelLoader.js +0 -45
  457. package/shared-utils/three/getNormal.js +0 -17
  458. package/shared-utils/three/getTextureLoader.js +0 -50
  459. package/shared-utils/three/loadFbxObj.js +0 -54
  460. package/shared-utils/three/loadTexture.d.ts +0 -2
  461. package/shared-utils/three/loadTexture.js +0 -46
  462. package/shared-utils/three/transformPositionToVector3.js +0 -20
  463. package/shared-utils/three/transfromToMeshBasicMaterial.js +0 -33
  464. package/shared-utils/throttle.js +0 -29
  465. package/shared-utils/to.js +0 -67
  466. package/shared-utils/useDebounce.js +0 -49
  467. package/shared-utils/useThrottle.js +0 -47
  468. package/shared-utils/uuid.d.ts +0 -4
  469. package/shared-utils/uuid.js +0 -28
  470. package/shared-utils/vectorTocoordinates.js +0 -18
  471. package/typedoc/components.d.ts +0 -6
  472. package/typedoc/components.js +0 -7
  473. package/typedoc/plugins.d.ts +0 -19
  474. package/typedoc/plugins.js +0 -165
  475. package/typedoc/shared-utils.d.ts +0 -3
  476. package/typedoc/shared-utils.js +0 -7
  477. package/typedoc/typings.d.ts +0 -3
  478. package/typedoc/typings.js +0 -7
  479. package/typings/math.type.js +0 -7
  480. package/typings/utils.type.js +0 -7
@@ -1,4649 +0,0 @@
1
- "use strict";
2
-
3
- require("core-js/modules/es.object.define-property.js");
4
-
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.treasurePluginData = exports.floorplanServerData = exports["default"] = void 0;
9
- var _default = {
10
- id: 566944,
11
- user_id: 1000000026028615,
12
- project_id: 'auto3d-4xxm0WvaNAXLfDTI456Kb1',
13
- name: '禹州大学城19-605-254',
14
- is_active: true,
15
- title: '003e404094e7271c3202d2c134fb87f0',
16
- description: '',
17
- picture_url: 'http://vrlab-public.ljcdn.com/release/auto3dhd/003e404094e7271c3202d2c134fb87f0/screenshot/1545380014_10/pc0_accCHm7iP.jpg',
18
- picture_checksum: '',
19
- initial: {
20
- pano: 10,
21
- heading: -0.55747524450644,
22
- longitude: 3.5027202653992,
23
- latitude: 0,
24
- pano_index: 10
25
- },
26
- machine_id: 'RA01147',
27
- machine_version: '3',
28
- bind_code: '',
29
- is_bound: true,
30
- title_picture_url: 'http://vrlab-public.ljcdn.com/release/auto3dhd/003e404094e7271c3202d2c134fb87f0/screenshot/1545380014_10/pc1_K9gtFksRv.jpg',
31
- title_picture_checksum: '',
32
- upload_title_picture_url: '',
33
- upload_title_picture_checksum: '',
34
- house_layout: {
35
- bedroom_amount: 3,
36
- parlor_amount: 1,
37
- cookroom_amount: 1,
38
- toilet_amount: 2
39
- },
40
- standard_floor_plan_url: 'http://vrlab-public.ljcdn.com/release/vrcustomer/566944/floorplan/standard_4bd4463c-3e2f-4420-be5f-9331e14a415a.png',
41
- standard_floor_plan_checksum: '',
42
- storage_standard_floor_plan_url: 'http://image.ljcdn.com/hdic-frame/prod-a096d7b4-2f95-47bf-bcf7-30bf971e5447.png',
43
- hierarchy_floor_plan: [{
44
- url: 'http://vrlab-public.ljcdn.com/release/vrcustomer/566944/floorplan/hierarchy_0_4bd4463c-3e2f-4420-be5f-9331e14a415a.png',
45
- index: 0
46
- }],
47
- outline_floor_plan: [{
48
- url: 'http://vrlab-public.ljcdn.com/release/vrcustomer/566944/floorplan/outline_0_4bd4463c-3e2f-4420-be5f-9331e14a415a.png',
49
- index: 0
50
- }],
51
- auto_floor_plan_url: '',
52
- auto_floor_plan_checksum: '',
53
- status: 1,
54
- create_time: '2018-12-21 19:06:20',
55
- modify_time: '2019-04-18 15:27:24',
56
- work_code: 'PrXel3aqGbp34JQn',
57
- floor_plan_data: {
58
- version: '0.0.3',
59
- structure: '101200000001',
60
- floorplans: [{
61
- points: [{
62
- x: 43100,
63
- y: 48570,
64
- lines: ['u-43341bed-9fc7-4ea9-2075-08506fe2944f', 'u-1258468f-2c3f-4bb8-77a2-d5bde4df1ad2'],
65
- locked: false,
66
- rules: '1111',
67
- displayName: 'Point',
68
- id: 'u-85fd7d3b-b5f2-4948-45c1-23251ae3c0cb'
69
- }, {
70
- x: 46825,
71
- y: 48570,
72
- lines: ['u-eeb81074-2300-4bc5-e957-e63e0c5d6228', 'u-1258468f-2c3f-4bb8-77a2-d5bde4df1ad2'],
73
- locked: false,
74
- rules: '1111',
75
- displayName: 'Point',
76
- id: 'u-6eda8ea6-5230-49ae-137b-c9cc420819f4'
77
- }, {
78
- x: 46825,
79
- y: 47025,
80
- lines: ['u-eeb81074-2300-4bc5-e957-e63e0c5d6228', 'u-ad1780e1-cacb-47af-d192-edfbe8144f00'],
81
- locked: false,
82
- rules: '1111',
83
- displayName: 'Point',
84
- id: 'u-2e22a269-e41f-4501-1024-f113ffc91275'
85
- }, {
86
- x: 43100,
87
- y: 47025,
88
- lines: ['u-03ea941f-927e-4cfb-dcfa-911d7a964e2d', 'u-cdfea8a5-5e7f-4cce-000a-3647fa933b05', 'u-43341bed-9fc7-4ea9-2075-08506fe2944f'],
89
- locked: false,
90
- rules: '1111',
91
- displayName: 'Point',
92
- id: 'u-adf48dff-5c85-477a-1bb8-56150b9df0dd'
93
- }, {
94
- x: 43100,
95
- y: 41235,
96
- lines: ['u-e11f7645-7184-457a-cbe9-83da2ce573c6', 'u-0f2cc5b3-b43c-42fc-ba15-174da1501b3a'],
97
- locked: false,
98
- rules: '1111',
99
- displayName: 'Point',
100
- id: 'u-2c0bc1fe-2e42-49bc-1e16-c6d0e3a08fac'
101
- }, {
102
- x: 35260,
103
- y: 41235,
104
- lines: ['u-da4b5e6f-c698-4e97-d0d4-fd634def6db3', 'u-d36afae6-28c9-4d97-8eb9-6a3416fda5b5'],
105
- locked: false,
106
- rules: '1111',
107
- displayName: 'Point',
108
- id: 'u-3b4d2586-b988-4d3f-053a-cff2b871d236'
109
- }, {
110
- x: 35260,
111
- y: 32320,
112
- lines: ['u-0afcf94f-5e8e-445c-ee78-809387b11062', 'u-b4cabd9f-b2f1-400f-6bb5-067d72438f04'],
113
- locked: false,
114
- rules: '1111',
115
- displayName: 'Point',
116
- id: 'u-8edb0481-6ec7-4a3e-5ff9-37ead589df9e'
117
- }, {
118
- x: 38390,
119
- y: 32320,
120
- lines: ['u-48f0759a-5f1e-449a-cb9c-699e56c55bc8', 'u-0afcf94f-5e8e-445c-ee78-809387b11062'],
121
- locked: false,
122
- rules: '1111',
123
- displayName: 'Point',
124
- id: 'u-e8cad07d-a033-4309-f1c7-a8fe59c9c613'
125
- }, {
126
- x: 38390,
127
- y: 41235,
128
- lines: ['u-5fae6608-241b-4281-1efb-d9196a1e18c1', 'u-0f2cc5b3-b43c-42fc-ba15-174da1501b3a', 'u-d36afae6-28c9-4d97-8eb9-6a3416fda5b5'],
129
- locked: false,
130
- rules: '1111',
131
- displayName: 'Point',
132
- id: 'u-999f8fea-cafe-4e8d-f23c-a9470f4b0ba1'
133
- }, {
134
- x: 38390,
135
- y: 34775,
136
- lines: ['u-48f0759a-5f1e-449a-cb9c-699e56c55bc8', 'u-501fdfb4-d9cb-429b-8772-84d2e70a5338', 'u-50d8667e-8fa1-450e-aabb-7d0c0295e204', 'u-f2816ef1-e4c4-47d0-7347-b3dd2dd0e80c'],
137
- locked: false,
138
- rules: '1111',
139
- displayName: 'Point',
140
- id: 'u-ecf61347-cc6d-4598-a385-a4d6b08289a1'
141
- }, {
142
- x: 39875,
143
- y: 34775,
144
- lines: ['u-c0cfdff6-3b34-4943-4b21-2ce9e2b81c6e', 'u-501fdfb4-d9cb-429b-8772-84d2e70a5338'],
145
- locked: false,
146
- rules: '1111',
147
- displayName: 'Point',
148
- id: 'u-18417f28-0400-47ce-6a53-4248176d8c55'
149
- }, {
150
- x: 39875,
151
- y: 34035,
152
- lines: ['u-122cea09-fad2-429f-8a4e-052589604016', 'u-c0cfdff6-3b34-4943-4b21-2ce9e2b81c6e'],
153
- locked: false,
154
- rules: '1111',
155
- displayName: 'Point',
156
- id: 'u-f42217e1-b3db-4460-ed69-b2c56b5951d4'
157
- }, {
158
- x: 45115,
159
- y: 34035,
160
- lines: ['u-2a3aff08-984b-4a60-c4df-8be257f6cfdd', 'u-c391aefd-5820-4a72-e36a-ec25774f3bd0'],
161
- locked: false,
162
- rules: '1111',
163
- displayName: 'Point',
164
- id: 'u-86bad96d-0577-4bdc-e1fe-d20534bb845f'
165
- }, {
166
- x: 45115,
167
- y: 34795,
168
- lines: ['u-2a3aff08-984b-4a60-c4df-8be257f6cfdd', 'u-205f5af4-0295-4d12-e439-89ce77a6bb17'],
169
- locked: false,
170
- rules: '1111',
171
- displayName: 'Point',
172
- id: 'u-34d9cc35-35e2-4434-4143-9cb0993e0b09'
173
- }, {
174
- x: 46545,
175
- y: 34795,
176
- lines: ['u-aa04a0d9-6391-4a5c-aaec-561c07de98bf', 'u-205f5af4-0295-4d12-e439-89ce77a6bb17'],
177
- locked: false,
178
- rules: '1111',
179
- displayName: 'Point',
180
- id: 'u-f23c372f-fd40-489e-03f2-1b2c01660c0e'
181
- }, {
182
- x: 46545,
183
- y: 38775,
184
- lines: ['u-aa04a0d9-6391-4a5c-aaec-561c07de98bf', 'u-15e3dff1-589d-4547-e7d6-101a87c328f5', 'u-df4b173a-dee4-4d95-414b-5e213f8e7891'],
185
- locked: false,
186
- rules: '1111',
187
- displayName: 'Point',
188
- id: 'u-174b724c-606a-4b29-3a46-49b653c62a1a'
189
- }, {
190
- x: 43040,
191
- y: 38775,
192
- lines: ['u-481d3c9b-acd9-4edc-4fd6-95191f940658', 'u-6b19946a-fdb5-4124-c217-4eaa66ecb149'],
193
- locked: false,
194
- rules: '1111',
195
- displayName: 'Point',
196
- id: 'u-5a635221-68fa-42e9-0f54-1fc9f53fa359'
197
- }, {
198
- x: 43040,
199
- y: 34035,
200
- lines: ['u-c391aefd-5820-4a72-e36a-ec25774f3bd0', 'u-481d3c9b-acd9-4edc-4fd6-95191f940658', 'u-122cea09-fad2-429f-8a4e-052589604016'],
201
- locked: false,
202
- rules: '1111',
203
- displayName: 'Point',
204
- id: 'u-8f1e6f6e-8969-4481-aceb-6b0f15ec44d2'
205
- }, {
206
- x: 46685,
207
- y: 47025,
208
- lines: ['u-81c7557b-f33b-4772-356c-bf0c8d57e40f', 'u-ad1780e1-cacb-47af-d192-edfbe8144f00', 'u-cdfea8a5-5e7f-4cce-000a-3647fa933b05'],
209
- locked: false,
210
- rules: '1111',
211
- displayName: 'Point',
212
- id: 'u-4af59e7d-2f2d-426c-fa1f-9fca268bc420'
213
- }, {
214
- x: 46725,
215
- y: 38775,
216
- lines: ['u-be265f0f-86a8-4fbc-46e5-63ad29d84c3f', 'u-15e3dff1-589d-4547-e7d6-101a87c328f5'],
217
- locked: false,
218
- rules: '1111',
219
- displayName: 'Point',
220
- id: 'u-7da5715e-ad12-42db-05c8-85db74516908'
221
- }, {
222
- x: 43100,
223
- y: 43375,
224
- lines: ['u-e11f7645-7184-457a-cbe9-83da2ce573c6', 'u-873ca2ce-fb8e-4713-51c3-3c88f55deb53', 'u-03ea941f-927e-4cfb-dcfa-911d7a964e2d'],
225
- locked: false,
226
- rules: '1111',
227
- displayName: 'Point',
228
- id: 'u-e3ed49e2-7044-469c-49da-f1280870e167'
229
- }, {
230
- x: 46725,
231
- y: 43375,
232
- lines: ['u-0dcd58fb-b501-432c-d72f-b0db17c8ca13', 'u-14b704eb-cf3a-4996-20b8-705e7a88c66c'],
233
- locked: false,
234
- rules: '1111',
235
- displayName: 'Point',
236
- id: 'u-9eb6f993-5ed6-4ea0-8b59-ff79822d9bd0'
237
- }, {
238
- x: 44275,
239
- y: 38775,
240
- lines: ['u-df4b173a-dee4-4d95-414b-5e213f8e7891', 'u-16c03957-76cc-4135-af9f-bb59f6a94ebf', 'u-6b19946a-fdb5-4124-c217-4eaa66ecb149'],
241
- locked: false,
242
- rules: '1111',
243
- displayName: 'Point',
244
- id: 'u-e6907862-df23-44e5-c7e2-23debaace62b'
245
- }, {
246
- x: 44275,
247
- y: 43375,
248
- lines: ['u-0b7858f7-cfc1-4cae-36e0-1256fa3ecf07', 'u-5dc7b0da-87dd-481d-90de-bb9c202a069a', 'u-873ca2ce-fb8e-4713-51c3-3c88f55deb53'],
249
- locked: false,
250
- rules: '1111',
251
- displayName: 'Point',
252
- id: 'u-9b683835-2452-4a3c-c660-a6c011cff2cb'
253
- }, {
254
- x: 46725,
255
- y: 40725,
256
- lines: ['u-be265f0f-86a8-4fbc-46e5-63ad29d84c3f', 'u-0dcd58fb-b501-432c-d72f-b0db17c8ca13', 'u-111f1bbf-235e-4149-9799-5ed805dc4cb4'],
257
- locked: false,
258
- rules: '1111',
259
- displayName: 'Point',
260
- id: 'u-b7afc768-a962-4deb-1651-78db519a322e'
261
- }, {
262
- x: 44275,
263
- y: 40725,
264
- lines: ['u-16c03957-76cc-4135-af9f-bb59f6a94ebf', 'u-111f1bbf-235e-4149-9799-5ed805dc4cb4', 'u-0b7858f7-cfc1-4cae-36e0-1256fa3ecf07'],
265
- locked: false,
266
- rules: '1111',
267
- displayName: 'Point',
268
- id: 'u-838d6a84-b09c-4e94-3458-859a61b80856'
269
- }, {
270
- x: 35260,
271
- y: 37105,
272
- lines: ['u-b4cabd9f-b2f1-400f-6bb5-067d72438f04', 'u-882aebc4-989b-441d-dd1e-c5217272ed09', 'u-5ea155b2-eba3-4b0d-73f3-bfd2c25074bf'],
273
- locked: false,
274
- rules: '1111',
275
- displayName: 'Point',
276
- id: 'u-04c33ade-fec5-4669-7489-6534c74b1b31'
277
- }, {
278
- x: 38390,
279
- y: 37105,
280
- lines: ['u-50d8667e-8fa1-450e-aabb-7d0c0295e204', 'u-5fae6608-241b-4281-1efb-d9196a1e18c1', 'u-f9b6bb21-df01-4066-2c53-9f349cc8f834'],
281
- locked: false,
282
- rules: '1111',
283
- displayName: 'Point',
284
- id: 'u-3654a574-fd29-4b29-12fa-e93ca6c41e35'
285
- }, {
286
- x: 37025,
287
- y: 37105,
288
- lines: ['u-f9b6bb21-df01-4066-2c53-9f349cc8f834', 'u-89187094-471f-4a05-b5dc-3b158183a76d', 'u-882aebc4-989b-441d-dd1e-c5217272ed09'],
289
- locked: false,
290
- rules: '1111',
291
- displayName: 'Point',
292
- id: 'u-e7e5dd42-662f-4dd9-f94b-01545416b351'
293
- }, {
294
- x: 37025,
295
- y: 37975,
296
- lines: ['u-89187094-471f-4a05-b5dc-3b158183a76d', 'u-31f7bb39-f834-4c3f-62c5-8a8ae01d1d41'],
297
- locked: false,
298
- rules: '1111',
299
- displayName: 'Point',
300
- id: 'u-ac922061-3d9d-4f8f-2f9b-d54ad5ae85ff'
301
- }, {
302
- x: 35858.139534883725,
303
- y: 39090,
304
- lines: ['u-31f7bb39-f834-4c3f-62c5-8a8ae01d1d41', 'u-e18a43e2-f8e5-40d8-edb7-1d5e256b09a4'],
305
- locked: false,
306
- rules: '1111',
307
- displayName: 'Point',
308
- id: 'u-e391e629-08ad-482d-d07e-745f875cb306'
309
- }, {
310
- x: 35260,
311
- y: 39090,
312
- lines: ['u-5ea155b2-eba3-4b0d-73f3-bfd2c25074bf', 'u-e18a43e2-f8e5-40d8-edb7-1d5e256b09a4', 'u-da4b5e6f-c698-4e97-d0d4-fd634def6db3'],
313
- locked: false,
314
- rules: '1111',
315
- displayName: 'Point',
316
- id: 'u-abba0acf-4f63-44b4-8820-7b220367e013'
317
- }, {
318
- x: 46685,
319
- y: 43375,
320
- lines: ['u-14b704eb-cf3a-4996-20b8-705e7a88c66c', 'u-81c7557b-f33b-4772-356c-bf0c8d57e40f', 'u-5dc7b0da-87dd-481d-90de-bb9c202a069a'],
321
- locked: false,
322
- rules: '1111',
323
- displayName: 'Point',
324
- id: 'u-c0f41c18-3980-46e6-e04a-3b4238129c91'
325
- }, {
326
- x: 38075,
327
- y: 34775,
328
- lines: ['u-f2816ef1-e4c4-47d0-7347-b3dd2dd0e80c'],
329
- locked: false,
330
- rules: '1111',
331
- displayName: 'Point',
332
- id: 'u-1b059759-4d5b-4a54-fc59-c04c31e1af51'
333
- }],
334
- lines: [{
335
- thickness: null,
336
- points: ['u-85fd7d3b-b5f2-4948-45c1-23251ae3c0cb', 'u-6eda8ea6-5230-49ae-137b-c9cc420819f4'],
337
- items: ['u-13c61c5c-25ad-46f1-d45d-f64edf7c2d6c', 'u-3558fa14-d60e-48c7-1550-30729b2afc3c'],
338
- curve: 0,
339
- type: 0,
340
- align: 0,
341
- edgeComputed: true,
342
- offsetComputed: 60,
343
- thicknessComputed: 240,
344
- isLoadBearing: false,
345
- displayName: 'Line',
346
- id: 'u-1258468f-2c3f-4bb8-77a2-d5bde4df1ad2'
347
- }, {
348
- thickness: null,
349
- points: ['u-6eda8ea6-5230-49ae-137b-c9cc420819f4', 'u-2e22a269-e41f-4501-1024-f113ffc91275'],
350
- items: ['u-5061dbdc-4717-4231-f4f3-08f2b9b5c44b'],
351
- curve: 0,
352
- type: 0,
353
- align: 0,
354
- edgeComputed: true,
355
- offsetComputed: 60,
356
- thicknessComputed: 240,
357
- isLoadBearing: false,
358
- displayName: 'Line',
359
- id: 'u-eeb81074-2300-4bc5-e957-e63e0c5d6228'
360
- }, {
361
- thickness: null,
362
- points: ['u-85fd7d3b-b5f2-4948-45c1-23251ae3c0cb', 'u-adf48dff-5c85-477a-1bb8-56150b9df0dd'],
363
- items: ['u-f26e5782-fd22-46d5-b509-f8f4264b10bb'],
364
- curve: 0,
365
- type: 0,
366
- align: 0,
367
- edgeComputed: true,
368
- offsetComputed: -60,
369
- thicknessComputed: 240,
370
- isLoadBearing: false,
371
- displayName: 'Line',
372
- id: 'u-43341bed-9fc7-4ea9-2075-08506fe2944f'
373
- }, {
374
- thickness: null,
375
- points: ['u-8edb0481-6ec7-4a3e-5ff9-37ead589df9e', 'u-e8cad07d-a033-4309-f1c7-a8fe59c9c613'],
376
- items: [],
377
- curve: 0,
378
- type: 0,
379
- align: 0,
380
- edgeComputed: true,
381
- offsetComputed: -60,
382
- thicknessComputed: 240,
383
- isLoadBearing: false,
384
- displayName: 'Line',
385
- id: 'u-0afcf94f-5e8e-445c-ee78-809387b11062'
386
- }, {
387
- thickness: null,
388
- points: ['u-3b4d2586-b988-4d3f-053a-cff2b871d236', 'u-999f8fea-cafe-4e8d-f23c-a9470f4b0ba1'],
389
- items: [],
390
- curve: 0,
391
- type: 0,
392
- align: 0,
393
- edgeComputed: true,
394
- offsetComputed: 60,
395
- thicknessComputed: 240,
396
- isLoadBearing: false,
397
- displayName: 'Line',
398
- id: 'u-d36afae6-28c9-4d97-8eb9-6a3416fda5b5'
399
- }, {
400
- thickness: null,
401
- points: ['u-999f8fea-cafe-4e8d-f23c-a9470f4b0ba1', 'u-2c0bc1fe-2e42-49bc-1e16-c6d0e3a08fac'],
402
- items: [],
403
- curve: 0,
404
- type: 0,
405
- align: 0,
406
- edgeComputed: true,
407
- offsetComputed: 60,
408
- thicknessComputed: 240,
409
- isLoadBearing: false,
410
- displayName: 'Line',
411
- id: 'u-0f2cc5b3-b43c-42fc-ba15-174da1501b3a'
412
- }, {
413
- thickness: null,
414
- points: ['u-18417f28-0400-47ce-6a53-4248176d8c55', 'u-f42217e1-b3db-4460-ed69-b2c56b5951d4'],
415
- items: [],
416
- curve: 0,
417
- type: 0,
418
- align: 0,
419
- edgeComputed: true,
420
- offsetComputed: -60,
421
- thicknessComputed: 240,
422
- isLoadBearing: false,
423
- displayName: 'Line',
424
- id: 'u-c0cfdff6-3b34-4943-4b21-2ce9e2b81c6e'
425
- }, {
426
- thickness: null,
427
- points: ['u-34d9cc35-35e2-4434-4143-9cb0993e0b09', 'u-86bad96d-0577-4bdc-e1fe-d20534bb845f'],
428
- items: [],
429
- curve: 0,
430
- type: 0,
431
- align: 0,
432
- edgeComputed: true,
433
- offsetComputed: 60,
434
- thicknessComputed: 240,
435
- isLoadBearing: false,
436
- displayName: 'Line',
437
- id: 'u-2a3aff08-984b-4a60-c4df-8be257f6cfdd'
438
- }, {
439
- thickness: null,
440
- points: ['u-34d9cc35-35e2-4434-4143-9cb0993e0b09', 'u-f23c372f-fd40-489e-03f2-1b2c01660c0e'],
441
- items: [],
442
- curve: 0,
443
- type: 0,
444
- align: 0,
445
- edgeComputed: true,
446
- offsetComputed: -60,
447
- thicknessComputed: 240,
448
- isLoadBearing: false,
449
- displayName: 'Line',
450
- id: 'u-205f5af4-0295-4d12-e439-89ce77a6bb17'
451
- }, {
452
- thickness: null,
453
- points: ['u-174b724c-606a-4b29-3a46-49b653c62a1a', 'u-f23c372f-fd40-489e-03f2-1b2c01660c0e'],
454
- items: ['u-2df7d4fd-4b8f-4964-3ff7-4103418cde90'],
455
- curve: 0,
456
- type: 0,
457
- align: 0,
458
- edgeComputed: true,
459
- offsetComputed: 60,
460
- thicknessComputed: 240,
461
- isLoadBearing: false,
462
- displayName: 'Line',
463
- id: 'u-aa04a0d9-6391-4a5c-aaec-561c07de98bf'
464
- }, {
465
- thickness: null,
466
- points: ['u-f42217e1-b3db-4460-ed69-b2c56b5951d4', 'u-8f1e6f6e-8969-4481-aceb-6b0f15ec44d2'],
467
- items: ['u-de9c5cef-a237-4110-7ae4-ac88c71d8e13'],
468
- curve: 0,
469
- type: 0,
470
- align: 0,
471
- edgeComputed: true,
472
- offsetComputed: -60,
473
- thicknessComputed: 240,
474
- isLoadBearing: false,
475
- displayName: 'Line',
476
- id: 'u-122cea09-fad2-429f-8a4e-052589604016'
477
- }, {
478
- thickness: null,
479
- points: ['u-adf48dff-5c85-477a-1bb8-56150b9df0dd', 'u-4af59e7d-2f2d-426c-fa1f-9fca268bc420'],
480
- items: ['u-3a8985ae-cda6-4c3a-9d98-934f92f9ecac'],
481
- curve: 0,
482
- type: 0,
483
- align: 0,
484
- edgeComputed: false,
485
- offsetComputed: 0,
486
- thicknessComputed: 120,
487
- isLoadBearing: false,
488
- displayName: 'Line',
489
- id: 'u-cdfea8a5-5e7f-4cce-000a-3647fa933b05'
490
- }, {
491
- thickness: null,
492
- points: ['u-4af59e7d-2f2d-426c-fa1f-9fca268bc420', 'u-2e22a269-e41f-4501-1024-f113ffc91275'],
493
- items: [],
494
- curve: 0,
495
- type: 0,
496
- align: 0,
497
- edgeComputed: true,
498
- offsetComputed: -60,
499
- thicknessComputed: 240,
500
- isLoadBearing: false,
501
- displayName: 'Line',
502
- id: 'u-ad1780e1-cacb-47af-d192-edfbe8144f00'
503
- }, {
504
- thickness: null,
505
- points: ['u-174b724c-606a-4b29-3a46-49b653c62a1a', 'u-7da5715e-ad12-42db-05c8-85db74516908'],
506
- items: [],
507
- curve: 0,
508
- type: 0,
509
- align: 0,
510
- edgeComputed: true,
511
- offsetComputed: -60,
512
- thicknessComputed: 240,
513
- isLoadBearing: false,
514
- displayName: 'Line',
515
- id: 'u-15e3dff1-589d-4547-e7d6-101a87c328f5'
516
- }, {
517
- thickness: null,
518
- points: ['u-8f1e6f6e-8969-4481-aceb-6b0f15ec44d2', 'u-86bad96d-0577-4bdc-e1fe-d20534bb845f'],
519
- items: ['u-68c8afdb-be1e-4b4e-c010-47779fa82d62'],
520
- curve: 0,
521
- type: 0,
522
- align: 0,
523
- edgeComputed: true,
524
- offsetComputed: -60,
525
- thicknessComputed: 240,
526
- isLoadBearing: false,
527
- displayName: 'Line',
528
- id: 'u-c391aefd-5820-4a72-e36a-ec25774f3bd0'
529
- }, {
530
- thickness: null,
531
- points: ['u-5a635221-68fa-42e9-0f54-1fc9f53fa359', 'u-8f1e6f6e-8969-4481-aceb-6b0f15ec44d2'],
532
- items: [],
533
- curve: 0,
534
- type: 0,
535
- align: 0,
536
- edgeComputed: false,
537
- offsetComputed: 0,
538
- thicknessComputed: 120,
539
- isLoadBearing: false,
540
- displayName: 'Line',
541
- id: 'u-481d3c9b-acd9-4edc-4fd6-95191f940658'
542
- }, {
543
- thickness: null,
544
- points: ['u-ecf61347-cc6d-4598-a385-a4d6b08289a1', 'u-e8cad07d-a033-4309-f1c7-a8fe59c9c613'],
545
- items: ['u-c09c784c-9eaf-4c3b-eacf-be71af362c71'],
546
- curve: 0,
547
- type: 0,
548
- align: 0,
549
- edgeComputed: true,
550
- offsetComputed: 60,
551
- thicknessComputed: 240,
552
- isLoadBearing: false,
553
- displayName: 'Line',
554
- id: 'u-48f0759a-5f1e-449a-cb9c-699e56c55bc8'
555
- }, {
556
- thickness: null,
557
- points: ['u-ecf61347-cc6d-4598-a385-a4d6b08289a1', 'u-18417f28-0400-47ce-6a53-4248176d8c55'],
558
- items: [],
559
- curve: 0,
560
- type: 0,
561
- align: 0,
562
- edgeComputed: true,
563
- offsetComputed: -60,
564
- thicknessComputed: 240,
565
- isLoadBearing: false,
566
- displayName: 'Line',
567
- id: 'u-501fdfb4-d9cb-429b-8772-84d2e70a5338'
568
- }, {
569
- thickness: null,
570
- points: ['u-adf48dff-5c85-477a-1bb8-56150b9df0dd', 'u-e3ed49e2-7044-469c-49da-f1280870e167'],
571
- items: [],
572
- curve: 0,
573
- type: 0,
574
- align: 0,
575
- edgeComputed: true,
576
- offsetComputed: -60,
577
- thicknessComputed: 240,
578
- isLoadBearing: false,
579
- displayName: 'Line',
580
- id: 'u-03ea941f-927e-4cfb-dcfa-911d7a964e2d'
581
- }, {
582
- thickness: null,
583
- points: ['u-e3ed49e2-7044-469c-49da-f1280870e167', 'u-2c0bc1fe-2e42-49bc-1e16-c6d0e3a08fac'],
584
- items: [],
585
- curve: 0,
586
- type: 0,
587
- align: 0,
588
- edgeComputed: true,
589
- offsetComputed: -60,
590
- thicknessComputed: 240,
591
- isLoadBearing: false,
592
- displayName: 'Line',
593
- id: 'u-e11f7645-7184-457a-cbe9-83da2ce573c6'
594
- }, {
595
- thickness: null,
596
- points: ['u-5a635221-68fa-42e9-0f54-1fc9f53fa359', 'u-e6907862-df23-44e5-c7e2-23debaace62b'],
597
- items: ['u-07a7a31d-7270-4e5c-5299-255a37cdb25f'],
598
- curve: 0,
599
- type: 0,
600
- align: 0,
601
- edgeComputed: false,
602
- offsetComputed: 0,
603
- thicknessComputed: 120,
604
- isLoadBearing: false,
605
- displayName: 'Line',
606
- id: 'u-6b19946a-fdb5-4124-c217-4eaa66ecb149'
607
- }, {
608
- thickness: null,
609
- points: ['u-e6907862-df23-44e5-c7e2-23debaace62b', 'u-174b724c-606a-4b29-3a46-49b653c62a1a'],
610
- items: [],
611
- curve: 0,
612
- type: 0,
613
- align: 0,
614
- edgeComputed: false,
615
- offsetComputed: 0,
616
- thicknessComputed: 120,
617
- isLoadBearing: false,
618
- displayName: 'Line',
619
- id: 'u-df4b173a-dee4-4d95-414b-5e213f8e7891'
620
- }, {
621
- thickness: null,
622
- points: ['u-e3ed49e2-7044-469c-49da-f1280870e167', 'u-9b683835-2452-4a3c-c660-a6c011cff2cb'],
623
- items: ['u-4d37a97b-29d5-4037-ca0d-43f5f963f09b'],
624
- curve: 0,
625
- type: 0,
626
- align: 0,
627
- edgeComputed: false,
628
- offsetComputed: 0,
629
- thicknessComputed: 120,
630
- isLoadBearing: false,
631
- displayName: 'Line',
632
- id: 'u-873ca2ce-fb8e-4713-51c3-3c88f55deb53'
633
- }, {
634
- thickness: null,
635
- points: ['u-9eb6f993-5ed6-4ea0-8b59-ff79822d9bd0', 'u-b7afc768-a962-4deb-1651-78db519a322e'],
636
- items: ['u-6cb3d9bd-e500-4561-358b-3c859ec85905'],
637
- curve: 0,
638
- type: 0,
639
- align: 0,
640
- edgeComputed: true,
641
- offsetComputed: 60,
642
- thicknessComputed: 240,
643
- isLoadBearing: false,
644
- displayName: 'Line',
645
- id: 'u-0dcd58fb-b501-432c-d72f-b0db17c8ca13'
646
- }, {
647
- thickness: null,
648
- points: ['u-b7afc768-a962-4deb-1651-78db519a322e', 'u-7da5715e-ad12-42db-05c8-85db74516908'],
649
- items: ['u-3324e83f-b379-4079-7800-9999fb232f1c'],
650
- curve: 0,
651
- type: 0,
652
- align: 0,
653
- edgeComputed: true,
654
- offsetComputed: 60,
655
- thicknessComputed: 240,
656
- isLoadBearing: false,
657
- displayName: 'Line',
658
- id: 'u-be265f0f-86a8-4fbc-46e5-63ad29d84c3f'
659
- }, {
660
- thickness: null,
661
- points: ['u-9b683835-2452-4a3c-c660-a6c011cff2cb', 'u-838d6a84-b09c-4e94-3458-859a61b80856'],
662
- items: ['u-d647b3e3-c3cb-4792-9e0a-bb48582566ed'],
663
- curve: 0,
664
- type: 0,
665
- align: 0,
666
- edgeComputed: false,
667
- offsetComputed: 0,
668
- thicknessComputed: 120,
669
- isLoadBearing: false,
670
- displayName: 'Line',
671
- id: 'u-0b7858f7-cfc1-4cae-36e0-1256fa3ecf07'
672
- }, {
673
- thickness: null,
674
- points: ['u-838d6a84-b09c-4e94-3458-859a61b80856', 'u-e6907862-df23-44e5-c7e2-23debaace62b'],
675
- items: ['u-ede13611-600a-402d-4a9b-b21730796f8b'],
676
- curve: 0,
677
- type: 0,
678
- align: 0,
679
- edgeComputed: false,
680
- offsetComputed: 0,
681
- thicknessComputed: 120,
682
- isLoadBearing: false,
683
- displayName: 'Line',
684
- id: 'u-16c03957-76cc-4135-af9f-bb59f6a94ebf'
685
- }, {
686
- thickness: null,
687
- points: ['u-838d6a84-b09c-4e94-3458-859a61b80856', 'u-b7afc768-a962-4deb-1651-78db519a322e'],
688
- items: [],
689
- curve: 0,
690
- type: 0,
691
- align: 0,
692
- edgeComputed: false,
693
- offsetComputed: 0,
694
- thicknessComputed: 120,
695
- isLoadBearing: false,
696
- displayName: 'Line',
697
- id: 'u-111f1bbf-235e-4149-9799-5ed805dc4cb4'
698
- }, {
699
- thickness: null,
700
- points: ['u-04c33ade-fec5-4669-7489-6534c74b1b31', 'u-8edb0481-6ec7-4a3e-5ff9-37ead589df9e'],
701
- items: [],
702
- curve: 0,
703
- type: 0,
704
- align: 0,
705
- edgeComputed: true,
706
- offsetComputed: -60,
707
- thicknessComputed: 240,
708
- isLoadBearing: false,
709
- displayName: 'Line',
710
- id: 'u-b4cabd9f-b2f1-400f-6bb5-067d72438f04'
711
- }, {
712
- thickness: null,
713
- points: ['u-3654a574-fd29-4b29-12fa-e93ca6c41e35', 'u-ecf61347-cc6d-4598-a385-a4d6b08289a1'],
714
- items: [],
715
- curve: 0,
716
- type: 0,
717
- align: 0,
718
- edgeComputed: false,
719
- offsetComputed: 0,
720
- thicknessComputed: 120,
721
- isLoadBearing: false,
722
- displayName: 'Line',
723
- id: 'u-50d8667e-8fa1-450e-aabb-7d0c0295e204'
724
- }, {
725
- thickness: null,
726
- points: ['u-04c33ade-fec5-4669-7489-6534c74b1b31', 'u-e7e5dd42-662f-4dd9-f94b-01545416b351'],
727
- items: [],
728
- curve: 0,
729
- type: 0,
730
- align: 0,
731
- edgeComputed: false,
732
- offsetComputed: 0,
733
- thicknessComputed: 120,
734
- isLoadBearing: false,
735
- displayName: 'Line',
736
- id: 'u-882aebc4-989b-441d-dd1e-c5217272ed09'
737
- }, {
738
- thickness: null,
739
- points: ['u-ac922061-3d9d-4f8f-2f9b-d54ad5ae85ff', 'u-e7e5dd42-662f-4dd9-f94b-01545416b351'],
740
- items: ['u-e09563b4-f49a-40ad-a991-ddeb742705b7'],
741
- curve: 0,
742
- type: 0,
743
- align: 0,
744
- edgeComputed: false,
745
- offsetComputed: 0,
746
- thicknessComputed: 120,
747
- isLoadBearing: false,
748
- displayName: 'Line',
749
- id: 'u-89187094-471f-4a05-b5dc-3b158183a76d'
750
- }, {
751
- thickness: null,
752
- points: ['u-e391e629-08ad-482d-d07e-745f875cb306', 'u-ac922061-3d9d-4f8f-2f9b-d54ad5ae85ff'],
753
- items: [],
754
- curve: 550,
755
- type: 0,
756
- align: 0,
757
- edgeComputed: false,
758
- offsetComputed: 0,
759
- thicknessComputed: 120,
760
- isLoadBearing: false,
761
- displayName: 'Line',
762
- id: 'u-31f7bb39-f834-4c3f-62c5-8a8ae01d1d41'
763
- }, {
764
- thickness: null,
765
- points: ['u-3b4d2586-b988-4d3f-053a-cff2b871d236', 'u-abba0acf-4f63-44b4-8820-7b220367e013'],
766
- items: ['u-67c412c8-1d86-424e-4924-590ff1145bce'],
767
- curve: 0,
768
- type: 0,
769
- align: 0,
770
- edgeComputed: true,
771
- offsetComputed: -60,
772
- thicknessComputed: 240,
773
- isLoadBearing: false,
774
- displayName: 'Line',
775
- id: 'u-da4b5e6f-c698-4e97-d0d4-fd634def6db3'
776
- }, {
777
- thickness: null,
778
- points: ['u-abba0acf-4f63-44b4-8820-7b220367e013', 'u-04c33ade-fec5-4669-7489-6534c74b1b31'],
779
- items: [],
780
- curve: 0,
781
- type: 0,
782
- align: 0,
783
- edgeComputed: true,
784
- offsetComputed: -60,
785
- thicknessComputed: 240,
786
- isLoadBearing: false,
787
- displayName: 'Line',
788
- id: 'u-5ea155b2-eba3-4b0d-73f3-bfd2c25074bf'
789
- }, {
790
- thickness: null,
791
- points: ['u-abba0acf-4f63-44b4-8820-7b220367e013', 'u-e391e629-08ad-482d-d07e-745f875cb306'],
792
- items: [],
793
- curve: 0,
794
- type: 0,
795
- align: 0,
796
- edgeComputed: false,
797
- offsetComputed: 0,
798
- thicknessComputed: 120,
799
- isLoadBearing: false,
800
- displayName: 'Line',
801
- id: 'u-e18a43e2-f8e5-40d8-edb7-1d5e256b09a4'
802
- }, {
803
- thickness: null,
804
- points: ['u-c0f41c18-3980-46e6-e04a-3b4238129c91', 'u-9eb6f993-5ed6-4ea0-8b59-ff79822d9bd0'],
805
- items: [],
806
- curve: 0,
807
- type: 0,
808
- align: 0,
809
- edgeComputed: true,
810
- offsetComputed: 60,
811
- thicknessComputed: 240,
812
- isLoadBearing: false,
813
- displayName: 'Line',
814
- id: 'u-14b704eb-cf3a-4996-20b8-705e7a88c66c'
815
- }, {
816
- thickness: null,
817
- points: ['u-4af59e7d-2f2d-426c-fa1f-9fca268bc420', 'u-c0f41c18-3980-46e6-e04a-3b4238129c91'],
818
- items: [],
819
- curve: 0,
820
- type: 0,
821
- align: 0,
822
- edgeComputed: true,
823
- offsetComputed: 60,
824
- thicknessComputed: 240,
825
- isLoadBearing: false,
826
- displayName: 'Line',
827
- id: 'u-81c7557b-f33b-4772-356c-bf0c8d57e40f'
828
- }, {
829
- thickness: null,
830
- points: ['u-9b683835-2452-4a3c-c660-a6c011cff2cb', 'u-c0f41c18-3980-46e6-e04a-3b4238129c91'],
831
- items: [],
832
- curve: 0,
833
- type: 0,
834
- align: 0,
835
- edgeComputed: false,
836
- offsetComputed: 0,
837
- thicknessComputed: 120,
838
- isLoadBearing: false,
839
- displayName: 'Line',
840
- id: 'u-5dc7b0da-87dd-481d-90de-bb9c202a069a'
841
- }, {
842
- thickness: null,
843
- points: ['u-999f8fea-cafe-4e8d-f23c-a9470f4b0ba1', 'u-3654a574-fd29-4b29-12fa-e93ca6c41e35'],
844
- items: ['u-71bb97e3-8b4a-4999-cf52-82d080df83aa'],
845
- curve: 0,
846
- type: 0,
847
- align: 0,
848
- edgeComputed: false,
849
- offsetComputed: 0,
850
- thicknessComputed: 120,
851
- isLoadBearing: false,
852
- displayName: 'Line',
853
- id: 'u-5fae6608-241b-4281-1efb-d9196a1e18c1'
854
- }, {
855
- thickness: null,
856
- points: ['u-e7e5dd42-662f-4dd9-f94b-01545416b351', 'u-3654a574-fd29-4b29-12fa-e93ca6c41e35'],
857
- items: ['u-6f27b676-56ad-40cb-0b20-cf4ee271e115'],
858
- curve: 0,
859
- type: 0,
860
- align: 0,
861
- edgeComputed: false,
862
- offsetComputed: 0,
863
- thicknessComputed: 120,
864
- isLoadBearing: false,
865
- displayName: 'Line',
866
- id: 'u-f9b6bb21-df01-4066-2c53-9f349cc8f834'
867
- }, {
868
- thickness: null,
869
- points: ['u-1b059759-4d5b-4a54-fc59-c04c31e1af51', 'u-ecf61347-cc6d-4598-a385-a4d6b08289a1'],
870
- items: [],
871
- curve: 0,
872
- type: 0,
873
- align: 0,
874
- edgeComputed: false,
875
- offsetComputed: 0,
876
- thicknessComputed: 120,
877
- isLoadBearing: false,
878
- displayName: 'Line',
879
- id: 'u-f2816ef1-e4c4-47d0-7347-b3dd2dd0e80c'
880
- }],
881
- areas: [{
882
- points: ['u-85fd7d3b-b5f2-4948-45c1-23251ae3c0cb', 'u-6eda8ea6-5230-49ae-137b-c9cc420819f4', 'u-2e22a269-e41f-4501-1024-f113ffc91275', 'u-4af59e7d-2f2d-426c-fa1f-9fca268bc420', 'u-adf48dff-5c85-477a-1bb8-56150b9df0dd'],
883
- type: 12,
884
- nameIndex: '',
885
- labelX: 0,
886
- labelY: 0,
887
- simpleLabelMod: false,
888
- roomTypeLabelMod: false,
889
- hideName: false,
890
- hideSize: false,
891
- subType: 0,
892
- subLabelX: 0,
893
- subLabelY: 0,
894
- customizedName: '',
895
- empty: false,
896
- roomType: '100900000005',
897
- size: 5755125,
898
- sizeWithoutLine: 5137125,
899
- roomName: '阳台',
900
- attachments: {
901
- lines: [{
902
- id: 'u-1258468f-2c3f-4bb8-77a2-d5bde4df1ad2',
903
- towardsRad: 1.5707963267948966,
904
- direction: 'north',
905
- directionCode: '100500000007',
906
- edge: true,
907
- length: 3725
908
- }, {
909
- id: 'u-eeb81074-2300-4bc5-e957-e63e0c5d6228',
910
- towardsRad: 0,
911
- direction: 'east',
912
- directionCode: '100500000001',
913
- edge: true,
914
- length: 1545
915
- }, {
916
- id: 'u-ad1780e1-cacb-47af-d192-edfbe8144f00',
917
- towardsRad: -1.5707963267948966,
918
- direction: 'south',
919
- directionCode: '100500000003',
920
- edge: true,
921
- length: 140
922
- }, {
923
- id: 'u-cdfea8a5-5e7f-4cce-000a-3647fa933b05',
924
- towardsRad: -1.5707963267948966,
925
- direction: 'south',
926
- directionCode: '100500000003',
927
- edge: false,
928
- length: 3585
929
- }, {
930
- id: 'u-43341bed-9fc7-4ea9-2075-08506fe2944f',
931
- towardsRad: 3.141592653589793,
932
- direction: 'west',
933
- directionCode: '100500000005',
934
- edge: true,
935
- length: 1545
936
- }],
937
- lineItems: [{
938
- id: 'u-13c61c5c-25ad-46f1-d45d-f64edf7c2d6c',
939
- towardsRad: 1.5707963267948966,
940
- direction: 'north',
941
- directionCode: '100500000007',
942
- edge: true,
943
- length: 2755.653280077158,
944
- is: 'window'
945
- }, {
946
- id: 'u-3558fa14-d60e-48c7-1550-30729b2afc3c',
947
- towardsRad: 1.5707963267948966,
948
- direction: 'north',
949
- directionCode: '100500000007',
950
- edge: true,
951
- length: 795.9194918973881,
952
- is: 'window'
953
- }, {
954
- id: 'u-5061dbdc-4717-4231-f4f3-08f2b9b5c44b',
955
- towardsRad: 0,
956
- direction: 'east',
957
- directionCode: '100500000001',
958
- edge: true,
959
- length: 1425,
960
- is: 'window'
961
- }, {
962
- id: 'u-3a8985ae-cda6-4c3a-9d98-934f92f9ecac',
963
- towardsRad: -1.5707963267948966,
964
- direction: 'south',
965
- directionCode: '100500000003',
966
- edge: false,
967
- length: 2125,
968
- is: 'door'
969
- }, {
970
- id: 'u-f26e5782-fd22-46d5-b509-f8f4264b10bb',
971
- towardsRad: 3.141592653589793,
972
- direction: 'west',
973
- directionCode: '100500000005',
974
- edge: true,
975
- length: 1425,
976
- is: 'window'
977
- }],
978
- areas: [{
979
- id: 'u-8e420bd8-4848-4790-acc5-b7cbb567ba27',
980
- towardsRad: -1.5707963267948966,
981
- direction: 'south',
982
- directionCode: '100500000003',
983
- roomType: '100900000001',
984
- type: 3,
985
- sharedLines: ['u-cdfea8a5-5e7f-4cce-000a-3647fa933b05'],
986
- sharedLineItems: ['u-3a8985ae-cda6-4c3a-9d98-934f92f9ecac']
987
- }]
988
- },
989
- displayName: 'Area',
990
- id: 'u-bbc9e687-41a2-4cd3-a053-2c6428ee2fb5'
991
- }, {
992
- points: ['u-8edb0481-6ec7-4a3e-5ff9-37ead589df9e', 'u-04c33ade-fec5-4669-7489-6534c74b1b31', 'u-e7e5dd42-662f-4dd9-f94b-01545416b351', 'u-3654a574-fd29-4b29-12fa-e93ca6c41e35', 'u-ecf61347-cc6d-4598-a385-a4d6b08289a1', 'u-e8cad07d-a033-4309-f1c7-a8fe59c9c613'],
993
- type: 3,
994
- nameIndex: 'A',
995
- labelX: -200,
996
- labelY: 1390,
997
- simpleLabelMod: false,
998
- roomTypeLabelMod: false,
999
- hideName: false,
1000
- hideSize: false,
1001
- subType: 0,
1002
- subLabelX: 0,
1003
- subLabelY: 0,
1004
- customizedName: '',
1005
- empty: false,
1006
- roomType: '100900000001',
1007
- size: 14977050,
1008
- sizeWithoutLine: 14011050,
1009
- roomName: '卧室A',
1010
- attachments: {
1011
- lines: [{
1012
- id: 'u-b4cabd9f-b2f1-400f-6bb5-067d72438f04',
1013
- towardsRad: 3.141592653589793,
1014
- direction: 'west',
1015
- directionCode: '100500000005',
1016
- edge: true,
1017
- length: 4785
1018
- }, {
1019
- id: 'u-882aebc4-989b-441d-dd1e-c5217272ed09',
1020
- towardsRad: 1.5707963267948966,
1021
- direction: 'north',
1022
- directionCode: '100500000007',
1023
- edge: false,
1024
- length: 1765
1025
- }, {
1026
- id: 'u-f9b6bb21-df01-4066-2c53-9f349cc8f834',
1027
- towardsRad: 1.5707963267948966,
1028
- direction: 'north',
1029
- directionCode: '100500000007',
1030
- edge: false,
1031
- length: 1365
1032
- }, {
1033
- id: 'u-50d8667e-8fa1-450e-aabb-7d0c0295e204',
1034
- towardsRad: 0,
1035
- direction: 'east',
1036
- directionCode: '100500000001',
1037
- edge: false,
1038
- length: 2330
1039
- }, {
1040
- id: 'u-48f0759a-5f1e-449a-cb9c-699e56c55bc8',
1041
- towardsRad: 0,
1042
- direction: 'east',
1043
- directionCode: '100500000001',
1044
- edge: true,
1045
- length: 2455
1046
- }, {
1047
- id: 'u-0afcf94f-5e8e-445c-ee78-809387b11062',
1048
- towardsRad: -1.5707963267948966,
1049
- direction: 'south',
1050
- directionCode: '100500000003',
1051
- edge: true,
1052
- length: 3130
1053
- }],
1054
- lineItems: [{
1055
- id: 'u-6f27b676-56ad-40cb-0b20-cf4ee271e115',
1056
- towardsRad: 1.5707963267948966,
1057
- direction: 'north',
1058
- directionCode: '100500000007',
1059
- edge: false,
1060
- length: 800,
1061
- is: 'door'
1062
- }, {
1063
- id: 'u-c09c784c-9eaf-4c3b-eacf-be71af362c71',
1064
- towardsRad: 0,
1065
- direction: 'east',
1066
- directionCode: '100500000001',
1067
- edge: true,
1068
- length: 1472.5588661028203,
1069
- is: 'window'
1070
- }],
1071
- areas: [{
1072
- id: 'u-43728cf0-28bd-43d8-4cc2-f81b7de9f99f',
1073
- towardsRad: 1.5707963267948966,
1074
- direction: 'north',
1075
- directionCode: '100500000007',
1076
- roomType: '100900000004',
1077
- type: 5,
1078
- sharedLines: ['u-882aebc4-989b-441d-dd1e-c5217272ed09'],
1079
- sharedLineItems: []
1080
- }, {
1081
- id: 'u-314bc053-b47e-415d-9a99-bede9d43e701',
1082
- towardsRad: 1.5707963267948966,
1083
- direction: 'north',
1084
- directionCode: '100500000007',
1085
- roomType: '100900000012',
1086
- type: 26,
1087
- sharedLines: ['u-f9b6bb21-df01-4066-2c53-9f349cc8f834'],
1088
- sharedLineItems: ['u-6f27b676-56ad-40cb-0b20-cf4ee271e115']
1089
- }, {
1090
- id: 'u-f01f73ef-9f5a-4f5a-f80e-fe7b232ad0cd',
1091
- towardsRad: 0,
1092
- direction: 'east',
1093
- directionCode: '100500000001',
1094
- roomType: '100900000002',
1095
- type: 1,
1096
- sharedLines: ['u-50d8667e-8fa1-450e-aabb-7d0c0295e204'],
1097
- sharedLineItems: []
1098
- }]
1099
- },
1100
- displayName: 'Area',
1101
- id: 'u-15a3e579-8e5f-4fc0-1fdf-54bb3cf876f0'
1102
- }, {
1103
- points: ['u-86bad96d-0577-4bdc-e1fe-d20534bb845f', 'u-8f1e6f6e-8969-4481-aceb-6b0f15ec44d2', 'u-5a635221-68fa-42e9-0f54-1fc9f53fa359', 'u-e6907862-df23-44e5-c7e2-23debaace62b', 'u-174b724c-606a-4b29-3a46-49b653c62a1a', 'u-f23c372f-fd40-489e-03f2-1b2c01660c0e', 'u-34d9cc35-35e2-4434-4143-9cb0993e0b09'],
1104
- type: 3,
1105
- nameIndex: 'B',
1106
- labelX: 0,
1107
- labelY: 1540,
1108
- simpleLabelMod: false,
1109
- roomTypeLabelMod: false,
1110
- hideName: false,
1111
- hideSize: false,
1112
- subType: 0,
1113
- subLabelX: 0,
1114
- subLabelY: 0,
1115
- customizedName: '',
1116
- empty: false,
1117
- roomType: '100900000001',
1118
- size: 15526900,
1119
- sizeWithoutLine: 14551900,
1120
- roomName: '卧室B',
1121
- attachments: {
1122
- lines: [{
1123
- id: 'u-c391aefd-5820-4a72-e36a-ec25774f3bd0',
1124
- towardsRad: -1.5707963267948966,
1125
- direction: 'south',
1126
- directionCode: '100500000003',
1127
- edge: true,
1128
- length: 2075
1129
- }, {
1130
- id: 'u-481d3c9b-acd9-4edc-4fd6-95191f940658',
1131
- towardsRad: 3.141592653589793,
1132
- direction: 'west',
1133
- directionCode: '100500000005',
1134
- edge: false,
1135
- length: 4740
1136
- }, {
1137
- id: 'u-6b19946a-fdb5-4124-c217-4eaa66ecb149',
1138
- towardsRad: 1.5707963267948966,
1139
- direction: 'north',
1140
- directionCode: '100500000007',
1141
- edge: false,
1142
- length: 1235
1143
- }, {
1144
- id: 'u-df4b173a-dee4-4d95-414b-5e213f8e7891',
1145
- towardsRad: 1.5707963267948966,
1146
- direction: 'north',
1147
- directionCode: '100500000007',
1148
- edge: false,
1149
- length: 2270
1150
- }, {
1151
- id: 'u-aa04a0d9-6391-4a5c-aaec-561c07de98bf',
1152
- towardsRad: 0,
1153
- direction: 'east',
1154
- directionCode: '100500000001',
1155
- edge: true,
1156
- length: 3980
1157
- }, {
1158
- id: 'u-205f5af4-0295-4d12-e439-89ce77a6bb17',
1159
- towardsRad: -1.5707963267948966,
1160
- direction: 'south',
1161
- directionCode: '100500000003',
1162
- edge: true,
1163
- length: 1430
1164
- }, {
1165
- id: 'u-2a3aff08-984b-4a60-c4df-8be257f6cfdd',
1166
- towardsRad: 0,
1167
- direction: 'east',
1168
- directionCode: '100500000001',
1169
- edge: true,
1170
- length: 760
1171
- }],
1172
- lineItems: [{
1173
- id: 'u-68c8afdb-be1e-4b4e-c010-47779fa82d62',
1174
- towardsRad: -1.5707963267948966,
1175
- direction: 'south',
1176
- directionCode: '100500000003',
1177
- edge: true,
1178
- length: 1955,
1179
- is: 'window'
1180
- }, {
1181
- id: 'u-07a7a31d-7270-4e5c-5299-255a37cdb25f',
1182
- towardsRad: 1.5707963267948966,
1183
- direction: 'north',
1184
- directionCode: '100500000007',
1185
- edge: false,
1186
- length: 800,
1187
- is: 'door'
1188
- }, {
1189
- id: 'u-2df7d4fd-4b8f-4964-3ff7-4103418cde90',
1190
- towardsRad: 0,
1191
- direction: 'east',
1192
- directionCode: '100500000001',
1193
- edge: true,
1194
- length: 800,
1195
- is: 'door'
1196
- }],
1197
- areas: [{
1198
- id: 'u-f01f73ef-9f5a-4f5a-f80e-fe7b232ad0cd',
1199
- towardsRad: 3.141592653589793,
1200
- direction: 'west',
1201
- directionCode: '100500000005',
1202
- roomType: '100900000002',
1203
- type: 1,
1204
- sharedLines: ['u-481d3c9b-acd9-4edc-4fd6-95191f940658', 'u-6b19946a-fdb5-4124-c217-4eaa66ecb149'],
1205
- sharedLineItems: ['u-07a7a31d-7270-4e5c-5299-255a37cdb25f']
1206
- }, {
1207
- id: 'u-36a4d793-15b2-40ef-7bd5-dd0d355daaf9',
1208
- towardsRad: 1.5707963267948966,
1209
- direction: 'north',
1210
- directionCode: '100500000007',
1211
- roomType: '100900000004',
1212
- type: 5,
1213
- sharedLines: ['u-df4b173a-dee4-4d95-414b-5e213f8e7891'],
1214
- sharedLineItems: []
1215
- }]
1216
- },
1217
- displayName: 'Area',
1218
- id: 'u-4c0d1e30-15db-46ff-c17d-be896fd5f4d2'
1219
- }, {
1220
- points: ['u-2c0bc1fe-2e42-49bc-1e16-c6d0e3a08fac', 'u-e3ed49e2-7044-469c-49da-f1280870e167', 'u-9b683835-2452-4a3c-c660-a6c011cff2cb', 'u-838d6a84-b09c-4e94-3458-859a61b80856', 'u-e6907862-df23-44e5-c7e2-23debaace62b', 'u-5a635221-68fa-42e9-0f54-1fc9f53fa359', 'u-8f1e6f6e-8969-4481-aceb-6b0f15ec44d2', 'u-f42217e1-b3db-4460-ed69-b2c56b5951d4', 'u-18417f28-0400-47ce-6a53-4248176d8c55', 'u-ecf61347-cc6d-4598-a385-a4d6b08289a1', 'u-3654a574-fd29-4b29-12fa-e93ca6c41e35', 'u-999f8fea-cafe-4e8d-f23c-a9470f4b0ba1'],
1221
- type: 1,
1222
- nameIndex: '',
1223
- labelX: -1775,
1224
- labelY: -2025,
1225
- simpleLabelMod: false,
1226
- roomTypeLabelMod: false,
1227
- hideName: false,
1228
- hideSize: false,
1229
- subType: 2,
1230
- subLabelX: -1900,
1231
- subLabelY: 1175,
1232
- customizedName: '',
1233
- empty: false,
1234
- roomType: '100900000002',
1235
- size: 37933700,
1236
- sizeWithoutLine: 36121100,
1237
- roomName: '客厅',
1238
- attachments: {
1239
- lines: [{
1240
- id: 'u-e11f7645-7184-457a-cbe9-83da2ce573c6',
1241
- towardsRad: 3.141592653589793,
1242
- direction: 'west',
1243
- directionCode: '100500000005',
1244
- edge: true,
1245
- length: 2140
1246
- }, {
1247
- id: 'u-873ca2ce-fb8e-4713-51c3-3c88f55deb53',
1248
- towardsRad: 1.5707963267948966,
1249
- direction: 'north',
1250
- directionCode: '100500000007',
1251
- edge: false,
1252
- length: 1175
1253
- }, {
1254
- id: 'u-0b7858f7-cfc1-4cae-36e0-1256fa3ecf07',
1255
- towardsRad: 0,
1256
- direction: 'east',
1257
- directionCode: '100500000001',
1258
- edge: false,
1259
- length: 2650
1260
- }, {
1261
- id: 'u-16c03957-76cc-4135-af9f-bb59f6a94ebf',
1262
- towardsRad: 0,
1263
- direction: 'east',
1264
- directionCode: '100500000001',
1265
- edge: false,
1266
- length: 1950
1267
- }, {
1268
- id: 'u-6b19946a-fdb5-4124-c217-4eaa66ecb149',
1269
- towardsRad: -1.5707963267948966,
1270
- direction: 'south',
1271
- directionCode: '100500000003',
1272
- edge: false,
1273
- length: 1235
1274
- }, {
1275
- id: 'u-481d3c9b-acd9-4edc-4fd6-95191f940658',
1276
- towardsRad: 0,
1277
- direction: 'east',
1278
- directionCode: '100500000001',
1279
- edge: false,
1280
- length: 4740
1281
- }, {
1282
- id: 'u-122cea09-fad2-429f-8a4e-052589604016',
1283
- towardsRad: -1.5707963267948966,
1284
- direction: 'south',
1285
- directionCode: '100500000003',
1286
- edge: true,
1287
- length: 3165
1288
- }, {
1289
- id: 'u-c0cfdff6-3b34-4943-4b21-2ce9e2b81c6e',
1290
- towardsRad: 3.141592653589793,
1291
- direction: 'west',
1292
- directionCode: '100500000005',
1293
- edge: true,
1294
- length: 740
1295
- }, {
1296
- id: 'u-501fdfb4-d9cb-429b-8772-84d2e70a5338',
1297
- towardsRad: -1.5707963267948966,
1298
- direction: 'south',
1299
- directionCode: '100500000003',
1300
- edge: true,
1301
- length: 1485
1302
- }, {
1303
- id: 'u-50d8667e-8fa1-450e-aabb-7d0c0295e204',
1304
- towardsRad: 3.141592653589793,
1305
- direction: 'west',
1306
- directionCode: '100500000005',
1307
- edge: false,
1308
- length: 2330
1309
- }, {
1310
- id: 'u-5fae6608-241b-4281-1efb-d9196a1e18c1',
1311
- towardsRad: 3.141592653589793,
1312
- direction: 'west',
1313
- directionCode: '100500000005',
1314
- edge: false,
1315
- length: 4130
1316
- }, {
1317
- id: 'u-0f2cc5b3-b43c-42fc-ba15-174da1501b3a',
1318
- towardsRad: 1.5707963267948966,
1319
- direction: 'north',
1320
- directionCode: '100500000007',
1321
- edge: true,
1322
- length: 4710
1323
- }],
1324
- lineItems: [{
1325
- id: 'u-4d37a97b-29d5-4037-ca0d-43f5f963f09b',
1326
- towardsRad: 1.5707963267948966,
1327
- direction: 'north',
1328
- directionCode: '100500000007',
1329
- edge: false,
1330
- length: 800,
1331
- is: 'door'
1332
- }, {
1333
- id: 'u-d647b3e3-c3cb-4792-9e0a-bb48582566ed',
1334
- towardsRad: 0,
1335
- direction: 'east',
1336
- directionCode: '100500000001',
1337
- edge: false,
1338
- length: 1725,
1339
- is: 'door'
1340
- }, {
1341
- id: 'u-ede13611-600a-402d-4a9b-b21730796f8b',
1342
- towardsRad: 0,
1343
- direction: 'east',
1344
- directionCode: '100500000001',
1345
- edge: false,
1346
- length: 800,
1347
- is: 'door'
1348
- }, {
1349
- id: 'u-07a7a31d-7270-4e5c-5299-255a37cdb25f',
1350
- towardsRad: -1.5707963267948966,
1351
- direction: 'south',
1352
- directionCode: '100500000003',
1353
- edge: false,
1354
- length: 800,
1355
- is: 'door'
1356
- }, {
1357
- id: 'u-de9c5cef-a237-4110-7ae4-ac88c71d8e13',
1358
- towardsRad: -1.5707963267948966,
1359
- direction: 'south',
1360
- directionCode: '100500000003',
1361
- edge: true,
1362
- length: 3045,
1363
- is: 'window'
1364
- }, {
1365
- id: 'u-71bb97e3-8b4a-4999-cf52-82d080df83aa',
1366
- towardsRad: 3.141592653589793,
1367
- direction: 'west',
1368
- directionCode: '100500000005',
1369
- edge: false,
1370
- length: 2200,
1371
- is: 'other'
1372
- }],
1373
- areas: [{
1374
- id: 'u-8e420bd8-4848-4790-acc5-b7cbb567ba27',
1375
- towardsRad: 1.5707963267948966,
1376
- direction: 'north',
1377
- directionCode: '100500000007',
1378
- roomType: '100900000001',
1379
- type: 3,
1380
- sharedLines: ['u-873ca2ce-fb8e-4713-51c3-3c88f55deb53'],
1381
- sharedLineItems: ['u-4d37a97b-29d5-4037-ca0d-43f5f963f09b']
1382
- }, {
1383
- id: 'u-1c7277ec-c593-4a54-b012-9478528acaa4',
1384
- towardsRad: 0,
1385
- direction: 'east',
1386
- directionCode: '100500000001',
1387
- roomType: '100900000003',
1388
- type: 8,
1389
- sharedLines: ['u-0b7858f7-cfc1-4cae-36e0-1256fa3ecf07'],
1390
- sharedLineItems: ['u-d647b3e3-c3cb-4792-9e0a-bb48582566ed']
1391
- }, {
1392
- id: 'u-36a4d793-15b2-40ef-7bd5-dd0d355daaf9',
1393
- towardsRad: 0,
1394
- direction: 'east',
1395
- directionCode: '100500000001',
1396
- roomType: '100900000004',
1397
- type: 5,
1398
- sharedLines: ['u-16c03957-76cc-4135-af9f-bb59f6a94ebf'],
1399
- sharedLineItems: ['u-ede13611-600a-402d-4a9b-b21730796f8b']
1400
- }, {
1401
- id: 'u-4c0d1e30-15db-46ff-c17d-be896fd5f4d2',
1402
- towardsRad: -1.5707963267948966,
1403
- direction: 'south',
1404
- directionCode: '100500000003',
1405
- roomType: '100900000001',
1406
- type: 3,
1407
- sharedLines: ['u-6b19946a-fdb5-4124-c217-4eaa66ecb149', 'u-481d3c9b-acd9-4edc-4fd6-95191f940658'],
1408
- sharedLineItems: ['u-07a7a31d-7270-4e5c-5299-255a37cdb25f']
1409
- }, {
1410
- id: 'u-15a3e579-8e5f-4fc0-1fdf-54bb3cf876f0',
1411
- towardsRad: 3.141592653589793,
1412
- direction: 'west',
1413
- directionCode: '100500000005',
1414
- roomType: '100900000001',
1415
- type: 3,
1416
- sharedLines: ['u-50d8667e-8fa1-450e-aabb-7d0c0295e204'],
1417
- sharedLineItems: []
1418
- }, {
1419
- id: 'u-314bc053-b47e-415d-9a99-bede9d43e701',
1420
- towardsRad: 3.141592653589793,
1421
- direction: 'west',
1422
- directionCode: '100500000005',
1423
- roomType: '100900000012',
1424
- type: 26,
1425
- sharedLines: ['u-5fae6608-241b-4281-1efb-d9196a1e18c1'],
1426
- sharedLineItems: ['u-71bb97e3-8b4a-4999-cf52-82d080df83aa']
1427
- }]
1428
- },
1429
- displayName: 'Area',
1430
- id: 'u-f01f73ef-9f5a-4f5a-f80e-fe7b232ad0cd'
1431
- }, {
1432
- points: ['u-adf48dff-5c85-477a-1bb8-56150b9df0dd', 'u-4af59e7d-2f2d-426c-fa1f-9fca268bc420', 'u-c0f41c18-3980-46e6-e04a-3b4238129c91', 'u-9b683835-2452-4a3c-c660-a6c011cff2cb', 'u-e3ed49e2-7044-469c-49da-f1280870e167'],
1433
- type: 3,
1434
- nameIndex: 'C',
1435
- labelX: 980,
1436
- labelY: 0,
1437
- simpleLabelMod: false,
1438
- roomTypeLabelMod: false,
1439
- hideName: false,
1440
- hideSize: false,
1441
- subType: 0,
1442
- subLabelX: 0,
1443
- subLabelY: 0,
1444
- customizedName: '',
1445
- empty: false,
1446
- roomType: '100900000001',
1447
- size: 13085250,
1448
- sizeWithoutLine: 12231450,
1449
- roomName: '卧室C',
1450
- attachments: {
1451
- lines: [{
1452
- id: 'u-cdfea8a5-5e7f-4cce-000a-3647fa933b05',
1453
- towardsRad: 1.5707963267948966,
1454
- direction: 'north',
1455
- directionCode: '100500000007',
1456
- edge: false,
1457
- length: 3585
1458
- }, {
1459
- id: 'u-81c7557b-f33b-4772-356c-bf0c8d57e40f',
1460
- towardsRad: 0,
1461
- direction: 'east',
1462
- directionCode: '100500000001',
1463
- edge: true,
1464
- length: 3650
1465
- }, {
1466
- id: 'u-5dc7b0da-87dd-481d-90de-bb9c202a069a',
1467
- towardsRad: -1.5707963267948966,
1468
- direction: 'south',
1469
- directionCode: '100500000003',
1470
- edge: false,
1471
- length: 2410
1472
- }, {
1473
- id: 'u-873ca2ce-fb8e-4713-51c3-3c88f55deb53',
1474
- towardsRad: -1.5707963267948966,
1475
- direction: 'south',
1476
- directionCode: '100500000003',
1477
- edge: false,
1478
- length: 1175
1479
- }, {
1480
- id: 'u-03ea941f-927e-4cfb-dcfa-911d7a964e2d',
1481
- towardsRad: 3.141592653589793,
1482
- direction: 'west',
1483
- directionCode: '100500000005',
1484
- edge: true,
1485
- length: 3650
1486
- }],
1487
- lineItems: [{
1488
- id: 'u-3a8985ae-cda6-4c3a-9d98-934f92f9ecac',
1489
- towardsRad: 1.5707963267948966,
1490
- direction: 'north',
1491
- directionCode: '100500000007',
1492
- edge: false,
1493
- length: 2125,
1494
- is: 'door'
1495
- }, {
1496
- id: 'u-4d37a97b-29d5-4037-ca0d-43f5f963f09b',
1497
- towardsRad: -1.5707963267948966,
1498
- direction: 'south',
1499
- directionCode: '100500000003',
1500
- edge: false,
1501
- length: 800,
1502
- is: 'door'
1503
- }],
1504
- areas: [{
1505
- id: 'u-bbc9e687-41a2-4cd3-a053-2c6428ee2fb5',
1506
- towardsRad: 1.5707963267948966,
1507
- direction: 'north',
1508
- directionCode: '100500000007',
1509
- roomType: '100900000005',
1510
- type: 12,
1511
- sharedLines: ['u-cdfea8a5-5e7f-4cce-000a-3647fa933b05'],
1512
- sharedLineItems: ['u-3a8985ae-cda6-4c3a-9d98-934f92f9ecac']
1513
- }, {
1514
- id: 'u-1c7277ec-c593-4a54-b012-9478528acaa4',
1515
- towardsRad: -1.5707963267948966,
1516
- direction: 'south',
1517
- directionCode: '100500000003',
1518
- roomType: '100900000003',
1519
- type: 8,
1520
- sharedLines: ['u-5dc7b0da-87dd-481d-90de-bb9c202a069a'],
1521
- sharedLineItems: []
1522
- }, {
1523
- id: 'u-f01f73ef-9f5a-4f5a-f80e-fe7b232ad0cd',
1524
- towardsRad: -1.5707963267948966,
1525
- direction: 'south',
1526
- directionCode: '100500000003',
1527
- roomType: '100900000002',
1528
- type: 1,
1529
- sharedLines: ['u-873ca2ce-fb8e-4713-51c3-3c88f55deb53'],
1530
- sharedLineItems: ['u-4d37a97b-29d5-4037-ca0d-43f5f963f09b']
1531
- }]
1532
- },
1533
- displayName: 'Area',
1534
- id: 'u-8e420bd8-4848-4790-acc5-b7cbb567ba27'
1535
- }, {
1536
- points: ['u-174b724c-606a-4b29-3a46-49b653c62a1a', 'u-e6907862-df23-44e5-c7e2-23debaace62b', 'u-838d6a84-b09c-4e94-3458-859a61b80856', 'u-b7afc768-a962-4deb-1651-78db519a322e', 'u-7da5715e-ad12-42db-05c8-85db74516908'],
1537
- type: 5,
1538
- nameIndex: 'B',
1539
- labelX: 275,
1540
- labelY: -425,
1541
- simpleLabelMod: false,
1542
- roomTypeLabelMod: false,
1543
- hideName: false,
1544
- hideSize: false,
1545
- subType: 0,
1546
- subLabelX: 0,
1547
- subLabelY: 0,
1548
- customizedName: '',
1549
- empty: false,
1550
- roomType: '100900000004',
1551
- size: 4777500,
1552
- sizeWithoutLine: 4263900,
1553
- roomName: '卫生间B',
1554
- attachments: {
1555
- lines: [{
1556
- id: 'u-df4b173a-dee4-4d95-414b-5e213f8e7891',
1557
- towardsRad: -1.5707963267948966,
1558
- direction: 'south',
1559
- directionCode: '100500000003',
1560
- edge: false,
1561
- length: 2270
1562
- }, {
1563
- id: 'u-16c03957-76cc-4135-af9f-bb59f6a94ebf',
1564
- towardsRad: 3.141592653589793,
1565
- direction: 'west',
1566
- directionCode: '100500000005',
1567
- edge: false,
1568
- length: 1950
1569
- }, {
1570
- id: 'u-111f1bbf-235e-4149-9799-5ed805dc4cb4',
1571
- towardsRad: 1.5707963267948966,
1572
- direction: 'north',
1573
- directionCode: '100500000007',
1574
- edge: false,
1575
- length: 2450
1576
- }, {
1577
- id: 'u-be265f0f-86a8-4fbc-46e5-63ad29d84c3f',
1578
- towardsRad: 0,
1579
- direction: 'east',
1580
- directionCode: '100500000001',
1581
- edge: true,
1582
- length: 1950
1583
- }, {
1584
- id: 'u-15e3dff1-589d-4547-e7d6-101a87c328f5',
1585
- towardsRad: -1.5707963267948966,
1586
- direction: 'south',
1587
- directionCode: '100500000003',
1588
- edge: true,
1589
- length: 180
1590
- }],
1591
- lineItems: [{
1592
- id: 'u-ede13611-600a-402d-4a9b-b21730796f8b',
1593
- towardsRad: 3.141592653589793,
1594
- direction: 'west',
1595
- directionCode: '100500000005',
1596
- edge: false,
1597
- length: 800,
1598
- is: 'door'
1599
- }, {
1600
- id: 'u-3324e83f-b379-4079-7800-9999fb232f1c',
1601
- towardsRad: 0,
1602
- direction: 'east',
1603
- directionCode: '100500000001',
1604
- edge: true,
1605
- length: 1081.6653826391969,
1606
- is: 'window'
1607
- }],
1608
- areas: [{
1609
- id: 'u-4c0d1e30-15db-46ff-c17d-be896fd5f4d2',
1610
- towardsRad: -1.5707963267948966,
1611
- direction: 'south',
1612
- directionCode: '100500000003',
1613
- roomType: '100900000001',
1614
- type: 3,
1615
- sharedLines: ['u-df4b173a-dee4-4d95-414b-5e213f8e7891'],
1616
- sharedLineItems: []
1617
- }, {
1618
- id: 'u-f01f73ef-9f5a-4f5a-f80e-fe7b232ad0cd',
1619
- towardsRad: 3.141592653589793,
1620
- direction: 'west',
1621
- directionCode: '100500000005',
1622
- roomType: '100900000002',
1623
- type: 1,
1624
- sharedLines: ['u-16c03957-76cc-4135-af9f-bb59f6a94ebf'],
1625
- sharedLineItems: ['u-ede13611-600a-402d-4a9b-b21730796f8b']
1626
- }, {
1627
- id: 'u-1c7277ec-c593-4a54-b012-9478528acaa4',
1628
- towardsRad: 1.5707963267948966,
1629
- direction: 'north',
1630
- directionCode: '100500000007',
1631
- roomType: '100900000003',
1632
- type: 8,
1633
- sharedLines: ['u-111f1bbf-235e-4149-9799-5ed805dc4cb4'],
1634
- sharedLineItems: []
1635
- }]
1636
- },
1637
- displayName: 'Area',
1638
- id: 'u-36a4d793-15b2-40ef-7bd5-dd0d355daaf9'
1639
- }, {
1640
- points: ['u-9eb6f993-5ed6-4ea0-8b59-ff79822d9bd0', 'u-b7afc768-a962-4deb-1651-78db519a322e', 'u-838d6a84-b09c-4e94-3458-859a61b80856', 'u-9b683835-2452-4a3c-c660-a6c011cff2cb', 'u-c0f41c18-3980-46e6-e04a-3b4238129c91'],
1641
- type: 8,
1642
- nameIndex: '',
1643
- labelX: 0,
1644
- labelY: 0,
1645
- simpleLabelMod: false,
1646
- roomTypeLabelMod: false,
1647
- hideName: false,
1648
- hideSize: false,
1649
- subType: 0,
1650
- subLabelX: 0,
1651
- subLabelY: 0,
1652
- customizedName: '',
1653
- empty: false,
1654
- roomType: '100900000003',
1655
- size: 6492500,
1656
- sizeWithoutLine: 5894900,
1657
- roomName: '厨房',
1658
- attachments: {
1659
- lines: [{
1660
- id: 'u-0dcd58fb-b501-432c-d72f-b0db17c8ca13',
1661
- towardsRad: 0,
1662
- direction: 'east',
1663
- directionCode: '100500000001',
1664
- edge: true,
1665
- length: 2650
1666
- }, {
1667
- id: 'u-111f1bbf-235e-4149-9799-5ed805dc4cb4',
1668
- towardsRad: -1.5707963267948966,
1669
- direction: 'south',
1670
- directionCode: '100500000003',
1671
- edge: false,
1672
- length: 2450
1673
- }, {
1674
- id: 'u-0b7858f7-cfc1-4cae-36e0-1256fa3ecf07',
1675
- towardsRad: 3.141592653589793,
1676
- direction: 'west',
1677
- directionCode: '100500000005',
1678
- edge: false,
1679
- length: 2650
1680
- }, {
1681
- id: 'u-5dc7b0da-87dd-481d-90de-bb9c202a069a',
1682
- towardsRad: 1.5707963267948966,
1683
- direction: 'north',
1684
- directionCode: '100500000007',
1685
- edge: false,
1686
- length: 2410
1687
- }, {
1688
- id: 'u-14b704eb-cf3a-4996-20b8-705e7a88c66c',
1689
- towardsRad: 1.5707963267948966,
1690
- direction: 'north',
1691
- directionCode: '100500000007',
1692
- edge: true,
1693
- length: 40
1694
- }],
1695
- lineItems: [{
1696
- id: 'u-6cb3d9bd-e500-4561-358b-3c859ec85905',
1697
- towardsRad: 0,
1698
- direction: 'east',
1699
- directionCode: '100500000001',
1700
- edge: true,
1701
- length: 800,
1702
- is: 'window'
1703
- }, {
1704
- id: 'u-d647b3e3-c3cb-4792-9e0a-bb48582566ed',
1705
- towardsRad: 3.141592653589793,
1706
- direction: 'west',
1707
- directionCode: '100500000005',
1708
- edge: false,
1709
- length: 1725,
1710
- is: 'door'
1711
- }],
1712
- areas: [{
1713
- id: 'u-36a4d793-15b2-40ef-7bd5-dd0d355daaf9',
1714
- towardsRad: -1.5707963267948966,
1715
- direction: 'south',
1716
- directionCode: '100500000003',
1717
- roomType: '100900000004',
1718
- type: 5,
1719
- sharedLines: ['u-111f1bbf-235e-4149-9799-5ed805dc4cb4'],
1720
- sharedLineItems: []
1721
- }, {
1722
- id: 'u-f01f73ef-9f5a-4f5a-f80e-fe7b232ad0cd',
1723
- towardsRad: 3.141592653589793,
1724
- direction: 'west',
1725
- directionCode: '100500000005',
1726
- roomType: '100900000002',
1727
- type: 1,
1728
- sharedLines: ['u-0b7858f7-cfc1-4cae-36e0-1256fa3ecf07'],
1729
- sharedLineItems: ['u-d647b3e3-c3cb-4792-9e0a-bb48582566ed']
1730
- }, {
1731
- id: 'u-8e420bd8-4848-4790-acc5-b7cbb567ba27',
1732
- towardsRad: 1.5707963267948966,
1733
- direction: 'north',
1734
- directionCode: '100500000007',
1735
- roomType: '100900000001',
1736
- type: 3,
1737
- sharedLines: ['u-5dc7b0da-87dd-481d-90de-bb9c202a069a'],
1738
- sharedLineItems: []
1739
- }]
1740
- },
1741
- displayName: 'Area',
1742
- id: 'u-1c7277ec-c593-4a54-b012-9478528acaa4'
1743
- }, {
1744
- points: ['u-3b4d2586-b988-4d3f-053a-cff2b871d236', 'u-999f8fea-cafe-4e8d-f23c-a9470f4b0ba1', 'u-3654a574-fd29-4b29-12fa-e93ca6c41e35', 'u-e7e5dd42-662f-4dd9-f94b-01545416b351', 'u-ac922061-3d9d-4f8f-2f9b-d54ad5ae85ff', 'u-e391e629-08ad-482d-d07e-745f875cb306', 'u-abba0acf-4f63-44b4-8820-7b220367e013'],
1745
- type: 26,
1746
- nameIndex: '',
1747
- labelX: 400,
1748
- labelY: 750,
1749
- simpleLabelMod: false,
1750
- roomTypeLabelMod: false,
1751
- hideName: false,
1752
- hideSize: false,
1753
- subType: 0,
1754
- subLabelX: 0,
1755
- subLabelY: 0,
1756
- customizedName: '',
1757
- empty: false,
1758
- roomType: '100900000012',
1759
- size: 9408151.245663337,
1760
- sizeWithoutLine: 8735080.045359664,
1761
- roomName: '入户花园',
1762
- attachments: {
1763
- lines: [{
1764
- id: 'u-d36afae6-28c9-4d97-8eb9-6a3416fda5b5',
1765
- towardsRad: 1.5707963267948966,
1766
- direction: 'north',
1767
- directionCode: '100500000007',
1768
- edge: true,
1769
- length: 3130
1770
- }, {
1771
- id: 'u-5fae6608-241b-4281-1efb-d9196a1e18c1',
1772
- towardsRad: 0,
1773
- direction: 'east',
1774
- directionCode: '100500000001',
1775
- edge: false,
1776
- length: 4130
1777
- }, {
1778
- id: 'u-f9b6bb21-df01-4066-2c53-9f349cc8f834',
1779
- towardsRad: -1.5707963267948966,
1780
- direction: 'south',
1781
- directionCode: '100500000003',
1782
- edge: false,
1783
- length: 1365
1784
- }, {
1785
- id: 'u-89187094-471f-4a05-b5dc-3b158183a76d',
1786
- towardsRad: 3.141592653589793,
1787
- direction: 'west',
1788
- directionCode: '100500000005',
1789
- edge: false,
1790
- length: 870
1791
- }, {
1792
- id: 'u-31f7bb39-f834-4c3f-62c5-8a8ae01d1d41',
1793
- towardsRad: -2.3334711293507056,
1794
- direction: 'south',
1795
- directionCode: '100500000003',
1796
- edge: false,
1797
- length: 1613.9356694278026
1798
- }, {
1799
- id: 'u-e18a43e2-f8e5-40d8-edb7-1d5e256b09a4',
1800
- towardsRad: -1.5707963267948966,
1801
- direction: 'south',
1802
- directionCode: '100500000003',
1803
- edge: false,
1804
- length: 598.139534883725
1805
- }, {
1806
- id: 'u-da4b5e6f-c698-4e97-d0d4-fd634def6db3',
1807
- towardsRad: 3.141592653589793,
1808
- direction: 'west',
1809
- directionCode: '100500000005',
1810
- edge: true,
1811
- length: 2145
1812
- }],
1813
- lineItems: [{
1814
- id: 'u-71bb97e3-8b4a-4999-cf52-82d080df83aa',
1815
- towardsRad: 0,
1816
- direction: 'east',
1817
- directionCode: '100500000001',
1818
- edge: false,
1819
- length: 2200,
1820
- is: 'other'
1821
- }, {
1822
- id: 'u-6f27b676-56ad-40cb-0b20-cf4ee271e115',
1823
- towardsRad: -1.5707963267948966,
1824
- direction: 'south',
1825
- directionCode: '100500000003',
1826
- edge: false,
1827
- length: 800,
1828
- is: 'door'
1829
- }, {
1830
- id: 'u-e09563b4-f49a-40ad-a991-ddeb742705b7',
1831
- towardsRad: 3.141592653589793,
1832
- direction: 'west',
1833
- directionCode: '100500000005',
1834
- edge: false,
1835
- length: 800,
1836
- is: 'door'
1837
- }, {
1838
- id: 'u-67c412c8-1d86-424e-4924-590ff1145bce',
1839
- towardsRad: 3.141592653589793,
1840
- direction: 'west',
1841
- directionCode: '100500000005',
1842
- edge: true,
1843
- length: 800,
1844
- is: 'door'
1845
- }],
1846
- areas: [{
1847
- id: 'u-f01f73ef-9f5a-4f5a-f80e-fe7b232ad0cd',
1848
- towardsRad: 0,
1849
- direction: 'east',
1850
- directionCode: '100500000001',
1851
- roomType: '100900000002',
1852
- type: 1,
1853
- sharedLines: ['u-5fae6608-241b-4281-1efb-d9196a1e18c1'],
1854
- sharedLineItems: ['u-71bb97e3-8b4a-4999-cf52-82d080df83aa']
1855
- }, {
1856
- id: 'u-15a3e579-8e5f-4fc0-1fdf-54bb3cf876f0',
1857
- towardsRad: -1.5707963267948966,
1858
- direction: 'south',
1859
- directionCode: '100500000003',
1860
- roomType: '100900000001',
1861
- type: 3,
1862
- sharedLines: ['u-f9b6bb21-df01-4066-2c53-9f349cc8f834'],
1863
- sharedLineItems: ['u-6f27b676-56ad-40cb-0b20-cf4ee271e115']
1864
- }, {
1865
- id: 'u-43728cf0-28bd-43d8-4cc2-f81b7de9f99f',
1866
- towardsRad: 3.141592653589793,
1867
- direction: 'west',
1868
- directionCode: '100500000005',
1869
- roomType: '100900000004',
1870
- type: 5,
1871
- sharedLines: ['u-89187094-471f-4a05-b5dc-3b158183a76d', 'u-31f7bb39-f834-4c3f-62c5-8a8ae01d1d41', 'u-e18a43e2-f8e5-40d8-edb7-1d5e256b09a4'],
1872
- sharedLineItems: ['u-e09563b4-f49a-40ad-a991-ddeb742705b7']
1873
- }]
1874
- },
1875
- displayName: 'Area',
1876
- id: 'u-314bc053-b47e-415d-9a99-bede9d43e701'
1877
- }, {
1878
- points: ['u-04c33ade-fec5-4669-7489-6534c74b1b31', 'u-abba0acf-4f63-44b4-8820-7b220367e013', 'u-e391e629-08ad-482d-d07e-745f875cb306', 'u-ac922061-3d9d-4f8f-2f9b-d54ad5ae85ff', 'u-e7e5dd42-662f-4dd9-f94b-01545416b351'],
1879
- type: 5,
1880
- nameIndex: '',
1881
- labelX: -225,
1882
- labelY: 250,
1883
- simpleLabelMod: false,
1884
- roomTypeLabelMod: false,
1885
- hideName: false,
1886
- hideSize: false,
1887
- subType: 0,
1888
- subLabelX: 0,
1889
- subLabelY: 0,
1890
- customizedName: '',
1891
- empty: false,
1892
- roomType: '100900000004',
1893
- size: 3518748.7543366626,
1894
- sizeWithoutLine: 3244054.9606569484,
1895
- roomName: '卫生间',
1896
- attachments: {
1897
- lines: [{
1898
- id: 'u-5ea155b2-eba3-4b0d-73f3-bfd2c25074bf',
1899
- towardsRad: 3.141592653589793,
1900
- direction: 'west',
1901
- directionCode: '100500000005',
1902
- edge: true,
1903
- length: 1985
1904
- }, {
1905
- id: 'u-e18a43e2-f8e5-40d8-edb7-1d5e256b09a4',
1906
- towardsRad: 1.5707963267948966,
1907
- direction: 'north',
1908
- directionCode: '100500000007',
1909
- edge: false,
1910
- length: 598.139534883725
1911
- }, {
1912
- id: 'u-31f7bb39-f834-4c3f-62c5-8a8ae01d1d41',
1913
- towardsRad: 0.8081215242390876,
1914
- direction: 'north',
1915
- directionCode: '100500000007',
1916
- edge: false,
1917
- length: 1613.9356694278026
1918
- }, {
1919
- id: 'u-89187094-471f-4a05-b5dc-3b158183a76d',
1920
- towardsRad: 0,
1921
- direction: 'east',
1922
- directionCode: '100500000001',
1923
- edge: false,
1924
- length: 870
1925
- }, {
1926
- id: 'u-882aebc4-989b-441d-dd1e-c5217272ed09',
1927
- towardsRad: -1.5707963267948966,
1928
- direction: 'south',
1929
- directionCode: '100500000003',
1930
- edge: false,
1931
- length: 1765
1932
- }],
1933
- lineItems: [{
1934
- id: 'u-e09563b4-f49a-40ad-a991-ddeb742705b7',
1935
- towardsRad: 0,
1936
- direction: 'east',
1937
- directionCode: '100500000001',
1938
- edge: false,
1939
- length: 800,
1940
- is: 'door'
1941
- }],
1942
- areas: [{
1943
- id: 'u-314bc053-b47e-415d-9a99-bede9d43e701',
1944
- towardsRad: 1.5707963267948966,
1945
- direction: 'north',
1946
- directionCode: '100500000007',
1947
- roomType: '100900000012',
1948
- type: 26,
1949
- sharedLines: ['u-e18a43e2-f8e5-40d8-edb7-1d5e256b09a4', 'u-31f7bb39-f834-4c3f-62c5-8a8ae01d1d41', 'u-89187094-471f-4a05-b5dc-3b158183a76d'],
1950
- sharedLineItems: ['u-e09563b4-f49a-40ad-a991-ddeb742705b7']
1951
- }, {
1952
- id: 'u-15a3e579-8e5f-4fc0-1fdf-54bb3cf876f0',
1953
- towardsRad: -1.5707963267948966,
1954
- direction: 'south',
1955
- directionCode: '100500000003',
1956
- roomType: '100900000001',
1957
- type: 3,
1958
- sharedLines: ['u-882aebc4-989b-441d-dd1e-c5217272ed09'],
1959
- sharedLineItems: []
1960
- }]
1961
- },
1962
- displayName: 'Area',
1963
- id: 'u-43728cf0-28bd-43d8-4cc2-f81b7de9f99f'
1964
- }],
1965
- lineItems: [{
1966
- type: 0,
1967
- line: 'u-aa04a0d9-6391-4a5c-aaec-561c07de98bf',
1968
- startIndex: 0,
1969
- start: 1900,
1970
- length: 800,
1971
- rotateX: true,
1972
- rotateY: false,
1973
- entrance: null,
1974
- noAnalysis: false,
1975
- startPointAt: {
1976
- x: 46605,
1977
- y: 36875
1978
- },
1979
- endPointAt: {
1980
- x: 46605,
1981
- y: 36075
1982
- },
1983
- is: 'door',
1984
- displayName: 'LineItem',
1985
- id: 'u-2df7d4fd-4b8f-4964-3ff7-4103418cde90'
1986
- }, {
1987
- type: 0,
1988
- line: 'u-da4b5e6f-c698-4e97-d0d4-fd634def6db3',
1989
- startIndex: 0,
1990
- start: 560,
1991
- length: 800,
1992
- rotateX: true,
1993
- rotateY: false,
1994
- entrance: 254,
1995
- noAnalysis: false,
1996
- startPointAt: {
1997
- x: 35200,
1998
- y: 40675
1999
- },
2000
- endPointAt: {
2001
- x: 35200,
2002
- y: 39875
2003
- },
2004
- is: 'door',
2005
- displayName: 'LineItem',
2006
- id: 'u-67c412c8-1d86-424e-4924-590ff1145bce'
2007
- }, {
2008
- type: 0,
2009
- line: 'u-f9b6bb21-df01-4066-2c53-9f349cc8f834',
2010
- startIndex: 0,
2011
- start: 325,
2012
- length: 800,
2013
- rotateX: false,
2014
- rotateY: true,
2015
- entrance: null,
2016
- noAnalysis: false,
2017
- startPointAt: {
2018
- x: 37350,
2019
- y: 37105
2020
- },
2021
- endPointAt: {
2022
- x: 38150,
2023
- y: 37105
2024
- },
2025
- is: 'door',
2026
- displayName: 'LineItem',
2027
- id: 'u-6f27b676-56ad-40cb-0b20-cf4ee271e115'
2028
- }, {
2029
- type: 0,
2030
- line: 'u-89187094-471f-4a05-b5dc-3b158183a76d',
2031
- startIndex: 0,
2032
- start: 0,
2033
- length: 800,
2034
- rotateX: false,
2035
- rotateY: true,
2036
- entrance: null,
2037
- noAnalysis: false,
2038
- startPointAt: {
2039
- x: 37025,
2040
- y: 37975
2041
- },
2042
- endPointAt: {
2043
- x: 37025,
2044
- y: 37175
2045
- },
2046
- is: 'door',
2047
- displayName: 'LineItem',
2048
- id: 'u-e09563b4-f49a-40ad-a991-ddeb742705b7'
2049
- }, {
2050
- type: 0,
2051
- line: 'u-6b19946a-fdb5-4124-c217-4eaa66ecb149',
2052
- startIndex: 0,
2053
- start: 160,
2054
- length: 800,
2055
- rotateX: false,
2056
- rotateY: false,
2057
- entrance: null,
2058
- noAnalysis: false,
2059
- startPointAt: {
2060
- x: 43200,
2061
- y: 38775
2062
- },
2063
- endPointAt: {
2064
- x: 44000,
2065
- y: 38775
2066
- },
2067
- is: 'door',
2068
- displayName: 'LineItem',
2069
- id: 'u-07a7a31d-7270-4e5c-5299-255a37cdb25f'
2070
- }, {
2071
- type: 0,
2072
- line: 'u-873ca2ce-fb8e-4713-51c3-3c88f55deb53',
2073
- startIndex: 0,
2074
- start: 225,
2075
- length: 800,
2076
- rotateX: true,
2077
- rotateY: false,
2078
- entrance: null,
2079
- noAnalysis: false,
2080
- startPointAt: {
2081
- x: 43325,
2082
- y: 43375
2083
- },
2084
- endPointAt: {
2085
- x: 44125,
2086
- y: 43375
2087
- },
2088
- is: 'door',
2089
- displayName: 'LineItem',
2090
- id: 'u-4d37a97b-29d5-4037-ca0d-43f5f963f09b'
2091
- }, {
2092
- type: 0,
2093
- line: 'u-16c03957-76cc-4135-af9f-bb59f6a94ebf',
2094
- startIndex: 0,
2095
- start: 1000,
2096
- length: 800,
2097
- rotateX: true,
2098
- rotateY: true,
2099
- entrance: null,
2100
- noAnalysis: false,
2101
- startPointAt: {
2102
- x: 44275,
2103
- y: 39725
2104
- },
2105
- endPointAt: {
2106
- x: 44275,
2107
- y: 38925
2108
- },
2109
- is: 'door',
2110
- displayName: 'LineItem',
2111
- id: 'u-ede13611-600a-402d-4a9b-b21730796f8b'
2112
- }, {
2113
- type: 1,
2114
- line: 'u-0b7858f7-cfc1-4cae-36e0-1256fa3ecf07',
2115
- startIndex: 0,
2116
- start: 475,
2117
- length: 1725,
2118
- rotateX: true,
2119
- rotateY: false,
2120
- entrance: null,
2121
- noAnalysis: false,
2122
- startPointAt: {
2123
- x: 44275,
2124
- y: 42900
2125
- },
2126
- endPointAt: {
2127
- x: 44275,
2128
- y: 41175
2129
- },
2130
- is: 'door',
2131
- displayName: 'LineItem',
2132
- id: 'u-d647b3e3-c3cb-4792-9e0a-bb48582566ed'
2133
- }, {
2134
- type: 1,
2135
- line: 'u-cdfea8a5-5e7f-4cce-000a-3647fa933b05',
2136
- startIndex: 0,
2137
- start: 725,
2138
- length: 2125,
2139
- rotateX: false,
2140
- rotateY: false,
2141
- entrance: null,
2142
- noAnalysis: false,
2143
- startPointAt: {
2144
- x: 43825,
2145
- y: 47025
2146
- },
2147
- endPointAt: {
2148
- x: 45950,
2149
- y: 47025
2150
- },
2151
- is: 'door',
2152
- displayName: 'LineItem',
2153
- id: 'u-3a8985ae-cda6-4c3a-9d98-934f92f9ecac'
2154
- }, {
2155
- type: 16,
2156
- line: 'u-5fae6608-241b-4281-1efb-d9196a1e18c1',
2157
- startIndex: 0,
2158
- start: 685,
2159
- length: 2200,
2160
- rotateX: false,
2161
- rotateY: false,
2162
- entrance: null,
2163
- noAnalysis: false,
2164
- startPointAt: {
2165
- x: 38390,
2166
- y: 40550
2167
- },
2168
- endPointAt: {
2169
- x: 38390,
2170
- y: 38350
2171
- },
2172
- is: 'other',
2173
- displayName: 'LineItem',
2174
- id: 'u-71bb97e3-8b4a-4999-cf52-82d080df83aa'
2175
- }, {
2176
- type: 18,
2177
- line: 'u-48f0759a-5f1e-449a-cb9c-699e56c55bc8',
2178
- startIndex: 0,
2179
- start: 930,
2180
- length: 1472.5588661028203,
2181
- rotateX: true,
2182
- rotateY: false,
2183
- entrance: null,
2184
- noAnalysis: false,
2185
- startPointAt: {
2186
- x: 38450,
2187
- y: 33845
2188
- },
2189
- endPointAt: {
2190
- x: 38450,
2191
- y: 32372.44113389718
2192
- },
2193
- is: 'window',
2194
- displayName: 'LineItem',
2195
- id: 'u-c09c784c-9eaf-4c3b-eacf-be71af362c71'
2196
- }, {
2197
- type: 18,
2198
- line: 'u-122cea09-fad2-429f-8a4e-052589604016',
2199
- startIndex: 0,
2200
- start: 60,
2201
- length: 3045,
2202
- rotateX: true,
2203
- rotateY: false,
2204
- entrance: null,
2205
- noAnalysis: false,
2206
- startPointAt: {
2207
- x: 39935,
2208
- y: 33975
2209
- },
2210
- endPointAt: {
2211
- x: 42980,
2212
- y: 33975
2213
- },
2214
- is: 'window',
2215
- displayName: 'LineItem',
2216
- id: 'u-de9c5cef-a237-4110-7ae4-ac88c71d8e13'
2217
- }, {
2218
- type: 5,
2219
- line: 'u-be265f0f-86a8-4fbc-46e5-63ad29d84c3f',
2220
- startIndex: 0,
2221
- start: 60,
2222
- length: 1081.6653826391969,
2223
- rotateX: true,
2224
- rotateY: false,
2225
- entrance: null,
2226
- noAnalysis: false,
2227
- startPointAt: {
2228
- x: 46785,
2229
- y: 40665
2230
- },
2231
- endPointAt: {
2232
- x: 46785,
2233
- y: 39583.3346173608
2234
- },
2235
- is: 'window',
2236
- displayName: 'LineItem',
2237
- id: 'u-3324e83f-b379-4079-7800-9999fb232f1c'
2238
- }, {
2239
- type: 18,
2240
- line: 'u-c391aefd-5820-4a72-e36a-ec25774f3bd0',
2241
- startIndex: 0,
2242
- start: 60,
2243
- length: 1955,
2244
- rotateX: false,
2245
- rotateY: false,
2246
- entrance: null,
2247
- noAnalysis: false,
2248
- startPointAt: {
2249
- x: 43100,
2250
- y: 33975
2251
- },
2252
- endPointAt: {
2253
- x: 45055,
2254
- y: 33975
2255
- },
2256
- is: 'window',
2257
- displayName: 'LineItem',
2258
- id: 'u-68c8afdb-be1e-4b4e-c010-47779fa82d62'
2259
- }, {
2260
- type: 5,
2261
- line: 'u-0dcd58fb-b501-432c-d72f-b0db17c8ca13',
2262
- startIndex: 0,
2263
- start: 125,
2264
- length: 800,
2265
- rotateX: true,
2266
- rotateY: false,
2267
- entrance: null,
2268
- noAnalysis: false,
2269
- startPointAt: {
2270
- x: 46785,
2271
- y: 43250
2272
- },
2273
- endPointAt: {
2274
- x: 46785,
2275
- y: 42450
2276
- },
2277
- is: 'window',
2278
- displayName: 'LineItem',
2279
- id: 'u-6cb3d9bd-e500-4561-358b-3c859ec85905'
2280
- }, {
2281
- type: 18,
2282
- line: 'u-43341bed-9fc7-4ea9-2075-08506fe2944f',
2283
- startIndex: 0,
2284
- start: 60,
2285
- length: 1425,
2286
- rotateX: true,
2287
- rotateY: false,
2288
- entrance: null,
2289
- noAnalysis: false,
2290
- startPointAt: {
2291
- x: 43040,
2292
- y: 48510
2293
- },
2294
- endPointAt: {
2295
- x: 43040,
2296
- y: 47085
2297
- },
2298
- is: 'window',
2299
- displayName: 'LineItem',
2300
- id: 'u-f26e5782-fd22-46d5-b509-f8f4264b10bb'
2301
- }, {
2302
- type: 18,
2303
- line: 'u-1258468f-2c3f-4bb8-77a2-d5bde4df1ad2',
2304
- startIndex: 0,
2305
- start: 60,
2306
- length: 2755.653280077158,
2307
- rotateX: true,
2308
- rotateY: false,
2309
- entrance: null,
2310
- noAnalysis: false,
2311
- startPointAt: {
2312
- x: 43160,
2313
- y: 48630
2314
- },
2315
- endPointAt: {
2316
- x: 45915.65328007716,
2317
- y: 48630
2318
- },
2319
- is: 'window',
2320
- displayName: 'LineItem',
2321
- id: 'u-13c61c5c-25ad-46f1-d45d-f64edf7c2d6c'
2322
- }, {
2323
- type: 5,
2324
- line: 'u-eeb81074-2300-4bc5-e957-e63e0c5d6228',
2325
- startIndex: 0,
2326
- start: 60,
2327
- length: 1425,
2328
- rotateX: true,
2329
- rotateY: false,
2330
- entrance: null,
2331
- noAnalysis: false,
2332
- startPointAt: {
2333
- x: 46885,
2334
- y: 48510
2335
- },
2336
- endPointAt: {
2337
- x: 46885,
2338
- y: 47085
2339
- },
2340
- is: 'window',
2341
- displayName: 'LineItem',
2342
- id: 'u-5061dbdc-4717-4231-f4f3-08f2b9b5c44b'
2343
- }, {
2344
- type: 5,
2345
- line: 'u-1258468f-2c3f-4bb8-77a2-d5bde4df1ad2',
2346
- startIndex: 0,
2347
- start: 2910,
2348
- length: 795.9194918973881,
2349
- rotateX: true,
2350
- rotateY: false,
2351
- entrance: null,
2352
- noAnalysis: false,
2353
- startPointAt: {
2354
- x: 46010,
2355
- y: 48630
2356
- },
2357
- endPointAt: {
2358
- x: 46805.91949189739,
2359
- y: 48630
2360
- },
2361
- is: 'window',
2362
- displayName: 'LineItem',
2363
- id: 'u-3558fa14-d60e-48c7-1550-30729b2afc3c'
2364
- }],
2365
- items: [{
2366
- type: 44,
2367
- x: 36320,
2368
- y: 34437.5,
2369
- locked: false,
2370
- width: 1914,
2371
- height: 2000,
2372
- rotateZ: 270,
2373
- rotateX: false,
2374
- rotateY: false,
2375
- displayName: 'Item-SimpleItem',
2376
- id: 'u-79ac34f4-183c-43bf-473a-eab2eb4a525e'
2377
- }, {
2378
- type: 44,
2379
- x: 44100,
2380
- y: 36405,
2381
- locked: false,
2382
- width: 1914,
2383
- height: 2000,
2384
- rotateZ: 270,
2385
- rotateX: false,
2386
- rotateY: false,
2387
- displayName: 'Item-SimpleItem',
2388
- id: 'u-8acff282-a3c9-4490-bbcd-c21ebcc7cc1d'
2389
- }, {
2390
- type: 48,
2391
- x: 41584,
2392
- y: 36405,
2393
- locked: false,
2394
- width: 4000,
2395
- height: 2792,
2396
- rotateZ: 90,
2397
- rotateX: false,
2398
- rotateY: false,
2399
- displayName: 'Item-SimpleItem',
2400
- id: 'u-84ebc715-0289-4eeb-86cd-9f1811a45d6e'
2401
- }, {
2402
- type: 44,
2403
- x: 44160,
2404
- y: 45200,
2405
- locked: false,
2406
- width: 1914,
2407
- height: 2000,
2408
- rotateZ: 270,
2409
- rotateX: false,
2410
- rotateY: false,
2411
- displayName: 'Item-SimpleItem',
2412
- id: 'u-670757c1-e03d-42f1-38d0-89b5c4f89708'
2413
- }, {
2414
- type: 31,
2415
- x: 45500,
2416
- y: 40290,
2417
- locked: false,
2418
- width: 450,
2419
- height: 750,
2420
- rotateZ: 0,
2421
- rotateX: false,
2422
- rotateY: false,
2423
- displayName: 'Item-SimpleItem',
2424
- id: 'u-c4d0b354-6903-453f-cb6d-02a2071973ec'
2425
- }, {
2426
- type: 23,
2427
- x: 45500,
2428
- y: 41110,
2429
- locked: false,
2430
- width: 2020,
2431
- height: 650,
2432
- rotateZ: 180,
2433
- rotateX: false,
2434
- rotateY: false,
2435
- displayName: 'Item-SimpleItem',
2436
- id: 'u-ccc4f896-c49d-4777-629f-0d6982a1c20f'
2437
- }, {
2438
- type: 31,
2439
- x: 35695,
2440
- y: 37722.5,
2441
- locked: false,
2442
- width: 450,
2443
- height: 750,
2444
- rotateZ: 270,
2445
- rotateX: false,
2446
- rotateY: false,
2447
- displayName: 'Item-SimpleItem',
2448
- id: 'u-20c0e28a-1164-439d-5092-4df87b007fd9'
2449
- }, {
2450
- type: 63,
2451
- x: 40500,
2452
- y: 40325,
2453
- locked: false,
2454
- width: 2230,
2455
- height: 1700,
2456
- rotateZ: 0,
2457
- rotateX: false,
2458
- rotateY: false,
2459
- displayName: 'Item-SimpleItem',
2460
- id: 'u-dcff8fc2-fcfb-4533-8808-14d05e1e9bc6'
2461
- }, {
2462
- type: 7,
2463
- x: 43775,
2464
- y: 47725,
2465
- locked: false,
2466
- width: 700,
2467
- height: 628,
2468
- rotateZ: 0,
2469
- rotateX: false,
2470
- rotateY: false,
2471
- displayName: 'Item-SimpleItem',
2472
- id: 'u-6a4be2f9-8a0e-4fc4-7744-e14f85ae0549'
2473
- }, {
2474
- type: 7,
2475
- x: 46225,
2476
- y: 47700,
2477
- locked: false,
2478
- width: 700,
2479
- height: 628,
2480
- rotateZ: 0,
2481
- rotateX: false,
2482
- rotateY: false,
2483
- displayName: 'Item-SimpleItem',
2484
- id: 'u-9e8065a4-2e24-4207-cf9f-a3edc580b13c'
2485
- }],
2486
- info: {
2487
- height: 2704,
2488
- subheight: 0,
2489
- description: '',
2490
- tags: [],
2491
- ruleType: 1
2492
- },
2493
- name: '一层'
2494
- }],
2495
- vrData: {
2496
- origin: {
2497
- left: 37500,
2498
- top: 37500
2499
- }
2500
- },
2501
- checkMessages: [{
2502
- text: '存在外墙距模型太远的情况',
2503
- tag: 'warning',
2504
- desc: '1 个绿色外墙可能离墙太远'
2505
- }, {
2506
- text: '存在墙压模型的情况',
2507
- tag: 'warning',
2508
- desc: '1 个红色墙可能压到模型'
2509
- }, {
2510
- text: '存在 1 个卧室没有窗户',
2511
- tag: 'warning',
2512
- desc: '理论上卧室应该有窗户',
2513
- target: ['u-8e420bd8-4848-4790-acc5-b7cbb567ba27']
2514
- }],
2515
- nonce: '4bd4463c-3e2f-4420-be5f-9331e14a415a',
2516
- property: {
2517
- isAreaNameCustomized: false,
2518
- sourceType: 0
2519
- }
2520
- },
2521
- status_text: 'VR处理完成',
2522
- is_allow_submit: false,
2523
- is_allow_appeal: false,
2524
- is_allow_recall: true,
2525
- is_allow_modify: false,
2526
- is_allow_use_similar_floorplan: false,
2527
- is_allow_change_algorithm: false,
2528
- is_allow_screenshot_from_server: true,
2529
- is_allow_mosaic_from_server: true,
2530
- is_allow_auto_screenshot: true,
2531
- is_allow_remove_line_items: false,
2532
- is_allow_title_picture_filter: true,
2533
- reference_floor_plan_image_url: '',
2534
- is_allow_title_picture_zoom: true,
2535
- is_ka_source: false,
2536
- is_allow_cancel: true,
2537
- order_info: {
2538
- order_no: '5453570614781',
2539
- status: 6,
2540
- status_text: '完成',
2541
- source: 'ALLIANCE',
2542
- source_text: '德佑',
2543
- __config_source: 'ALLIANCE'
2544
- },
2545
- blocked_notification_message: '',
2546
- isolated_notification_message: '',
2547
- rushi_info: {
2548
- cookroom_amount: 1,
2549
- order_type: 4,
2550
- transfer_order_agent_id: '',
2551
- house_status: '空闲',
2552
- service_date: '12月21日',
2553
- transfer_order_agent_name: '',
2554
- order_agent_position_name: '买卖经纪人',
2555
- transfer_order_servicer_id: '',
2556
- id: 4957429,
2557
- order_agent_id: 1000000020294781,
2558
- area: 108.42,
2559
- order_agent_org_name: '五月花二店A店',
2560
- order_no: '5453570614781',
2561
- point_lat: 24.627384048658,
2562
- householder_name: '林碧玉',
2563
- toilet_amount: 2,
2564
- transfer_order_servicer_name: '',
2565
- servicer_phone: '18545063302',
2566
- house_holder_escort: false,
2567
- data_source: 'ALLIANCE',
2568
- source_text: '买卖',
2569
- order_agent_avatar: 'http://image1.ljcdn.com/usercenter/images/uc_ehr_avatar/e5f2393f-5731-4329-964c-941a09f5def2.jpg.375x375.jpg?v=1',
2570
- parlor_amount: 2,
2571
- point_lng: 118.13417395724,
2572
- frame: '',
2573
- status: 5,
2574
- status_text: '完成',
2575
- house_id: 3915080478769,
2576
- process_state: 340,
2577
- process_state_text: '实勘审核通过',
2578
- city_code: '350200',
2579
- resblock_name: '禹洲大学城',
2580
- house_holder_phone: '',
2581
- house_holder_id: 1000000020294781,
2582
- taking_duration: 16515072,
2583
- transfer_order_agent_phone: '',
2584
- customer_service_phone: '0952-5101987',
2585
- house_del_code: 105101516062,
2586
- process_id: 3533044681362055,
2587
- transfer_order_servicer_phone: '',
2588
- order_agent_phone: '18030222250',
2589
- is_house_holder_escort: false,
2590
- order_agent_name: '林碧玉',
2591
- has_key: true,
2592
- taking_duration_text: '11:30~12:00',
2593
- house_type: 1,
2594
- bedroom_amount: 3,
2595
- house_type_name: '买卖',
2596
- servicer_id: 1000000026028615,
2597
- order_type_name: '',
2598
- meeting_time: 1545363000000,
2599
- create_time: 1545357061000,
2600
- servicer_name: '卢波',
2601
- resblock_id: 3911057300988,
2602
- week_name: '周五',
2603
- house_address: '禹洲大学城19号楼0单元605',
2604
- remarks: '暂无',
2605
- remakes: 1
2606
- },
2607
- audit_info: {},
2608
- house_info: {
2609
- relation_id: 682393,
2610
- city_id: 350200,
2611
- source: 'ALLIANCE',
2612
- house_id: '3915080478769',
2613
- house_code: '105101516062'
2614
- },
2615
- _ulog_data: null,
2616
- _computed_floorplan_data: {
2617
- size: 95.46,
2618
- room_list: [{
2619
- name: '阳台',
2620
- type: 12,
2621
- roomType: '100900000005'
2622
- }, {
2623
- name: '卧室A',
2624
- type: 3,
2625
- roomType: '100900000001'
2626
- }, {
2627
- name: '卧室B',
2628
- type: 3,
2629
- roomType: '100900000001'
2630
- }, {
2631
- name: '客厅',
2632
- type: 1,
2633
- roomType: '100900000002'
2634
- }, {
2635
- name: '卧室C',
2636
- type: 3,
2637
- roomType: '100900000001'
2638
- }, {
2639
- name: '卫生间B',
2640
- type: 5,
2641
- roomType: '100900000004'
2642
- }, {
2643
- name: '厨房',
2644
- type: 8,
2645
- roomType: '100900000003'
2646
- }, {
2647
- name: '入户花园',
2648
- type: 26,
2649
- roomType: '100900000012'
2650
- }, {
2651
- name: '卫生间',
2652
- type: 5,
2653
- roomType: '100900000004'
2654
- }],
2655
- structure_text: '平层',
2656
- room_observers: [{
2657
- id: 'u-314bc053-b47e-415d-9a99-bede9d43e701',
2658
- name: '入户花园',
2659
- size: 8735080.045359664,
2660
- type: 26
2661
- }, {
2662
- id: 'u-314bc053-b47e-415d-9a99-bede9d43e701',
2663
- name: '入户花园',
2664
- size: 8735080.045359664,
2665
- type: 26
2666
- }, {
2667
- id: 'u-314bc053-b47e-415d-9a99-bede9d43e701',
2668
- name: '入户花园',
2669
- size: 8735080.045359664,
2670
- type: 26
2671
- }, {
2672
- id: 'u-43728cf0-28bd-43d8-4cc2-f81b7de9f99f',
2673
- name: '卫生间',
2674
- size: 3244054.9606569484,
2675
- type: 5
2676
- }, {
2677
- id: 'u-43728cf0-28bd-43d8-4cc2-f81b7de9f99f',
2678
- name: '卫生间',
2679
- size: 3244054.9606569484,
2680
- type: 5
2681
- }, {
2682
- id: 'u-15a3e579-8e5f-4fc0-1fdf-54bb3cf876f0',
2683
- name: '卧室A',
2684
- size: 14011050,
2685
- type: 3
2686
- }, {
2687
- id: 'u-15a3e579-8e5f-4fc0-1fdf-54bb3cf876f0',
2688
- name: '卧室A',
2689
- size: 14011050,
2690
- type: 3
2691
- }, {
2692
- id: 'u-15a3e579-8e5f-4fc0-1fdf-54bb3cf876f0',
2693
- name: '卧室A',
2694
- size: 14011050,
2695
- type: 3
2696
- }, {
2697
- id: 'u-f01f73ef-9f5a-4f5a-f80e-fe7b232ad0cd',
2698
- name: '客厅',
2699
- size: 36121100,
2700
- type: 1
2701
- }, {
2702
- id: 'u-f01f73ef-9f5a-4f5a-f80e-fe7b232ad0cd',
2703
- name: '客厅',
2704
- size: 36121100,
2705
- type: 1
2706
- }, {
2707
- id: 'u-f01f73ef-9f5a-4f5a-f80e-fe7b232ad0cd',
2708
- name: '客厅',
2709
- size: 36121100,
2710
- type: 1
2711
- }, {
2712
- id: 'u-f01f73ef-9f5a-4f5a-f80e-fe7b232ad0cd',
2713
- name: '客厅',
2714
- size: 36121100,
2715
- type: 1
2716
- }, {
2717
- id: 'u-f01f73ef-9f5a-4f5a-f80e-fe7b232ad0cd',
2718
- name: '客厅',
2719
- size: 36121100,
2720
- type: 1
2721
- }, {
2722
- id: 'u-f01f73ef-9f5a-4f5a-f80e-fe7b232ad0cd',
2723
- name: '客厅',
2724
- size: 36121100,
2725
- type: 1
2726
- }, {
2727
- id: 'u-f01f73ef-9f5a-4f5a-f80e-fe7b232ad0cd',
2728
- name: '客厅',
2729
- size: 36121100,
2730
- type: 1
2731
- }, {
2732
- id: 'u-f01f73ef-9f5a-4f5a-f80e-fe7b232ad0cd',
2733
- name: '客厅',
2734
- size: 36121100,
2735
- type: 1
2736
- }, {
2737
- id: 'u-36a4d793-15b2-40ef-7bd5-dd0d355daaf9',
2738
- name: '卫生间B',
2739
- size: 4263900,
2740
- type: 5
2741
- }, {
2742
- id: 'u-36a4d793-15b2-40ef-7bd5-dd0d355daaf9',
2743
- name: '卫生间B',
2744
- size: 4263900,
2745
- type: 5
2746
- }, {
2747
- id: 'u-36a4d793-15b2-40ef-7bd5-dd0d355daaf9',
2748
- name: '卫生间B',
2749
- size: 4263900,
2750
- type: 5
2751
- }, {
2752
- id: 'u-4c0d1e30-15db-46ff-c17d-be896fd5f4d2',
2753
- name: '卧室B',
2754
- size: 14551900,
2755
- type: 3
2756
- }, {
2757
- id: 'u-4c0d1e30-15db-46ff-c17d-be896fd5f4d2',
2758
- name: '卧室B',
2759
- size: 14551900,
2760
- type: 3
2761
- }, {
2762
- id: 'u-4c0d1e30-15db-46ff-c17d-be896fd5f4d2',
2763
- name: '卧室B',
2764
- size: 14551900,
2765
- type: 3
2766
- }, {
2767
- id: 'u-4c0d1e30-15db-46ff-c17d-be896fd5f4d2',
2768
- name: '卧室B',
2769
- size: 14551900,
2770
- type: 3
2771
- }, {
2772
- id: 'u-f01f73ef-9f5a-4f5a-f80e-fe7b232ad0cd',
2773
- name: '客厅',
2774
- size: 36121100,
2775
- type: 1
2776
- }, {
2777
- id: 'u-1c7277ec-c593-4a54-b012-9478528acaa4',
2778
- name: '厨房',
2779
- size: 5894900,
2780
- type: 8
2781
- }, {
2782
- id: 'u-1c7277ec-c593-4a54-b012-9478528acaa4',
2783
- name: '厨房',
2784
- size: 5894900,
2785
- type: 8
2786
- }, {
2787
- id: 'u-8e420bd8-4848-4790-acc5-b7cbb567ba27',
2788
- name: '卧室C',
2789
- size: 12231450,
2790
- type: 3
2791
- }, {
2792
- id: 'u-8e420bd8-4848-4790-acc5-b7cbb567ba27',
2793
- name: '卧室C',
2794
- size: 12231450,
2795
- type: 3
2796
- }, {
2797
- id: 'u-8e420bd8-4848-4790-acc5-b7cbb567ba27',
2798
- name: '卧室C',
2799
- size: 12231450,
2800
- type: 3
2801
- }, {
2802
- id: 'u-bbc9e687-41a2-4cd3-a053-2c6428ee2fb5',
2803
- name: '阳台',
2804
- size: 5137125,
2805
- type: 12
2806
- }, {
2807
- id: 'u-bbc9e687-41a2-4cd3-a053-2c6428ee2fb5',
2808
- name: '阳台',
2809
- size: 5137125,
2810
- type: 12
2811
- }]
2812
- },
2813
- observers: [{
2814
- id: 18496982,
2815
- user_id: 1000000026028615,
2816
- work_id: 566944,
2817
- visible_nodes: [1, 2, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
2818
- accessible_nodes: [1, 2, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
2819
- index: 0,
2820
- quaternion: {
2821
- y: -0.99365906959151,
2822
- x: 0.0022191096631506,
2823
- z: 0.00064048377493341,
2824
- w: -0.11241135298309
2825
- },
2826
- standing_position: [0.10234100371599, -1.2691724284533, -2.3624799251556],
2827
- position: [0.10234100371599, 0, -2.3624799251556],
2828
- floor_index: 0,
2829
- offset_point_count: 0,
2830
- work_code: 'PrXel3aqGbp34JQn'
2831
- }, {
2832
- id: 18496983,
2833
- user_id: 1000000026028615,
2834
- work_id: 566944,
2835
- visible_nodes: [0, 8, 9, 10, 11, 14, 15, 16, 17],
2836
- accessible_nodes: [0, 8, 9, 10, 11, 14, 15, 16, 17],
2837
- index: 1,
2838
- quaternion: {
2839
- y: -0.99989269098063,
2840
- x: 0.0037745430936031,
2841
- z: 0.0042908977778681,
2842
- w: 0.013488553632595
2843
- },
2844
- standing_position: [-1.4882500171661, -1.2705079248267, -2.6203200817108],
2845
- position: [-1.4882500171661, 0.011062700301409, -2.6203200817108],
2846
- floor_index: 0,
2847
- offset_point_count: 0,
2848
- work_code: 'PrXel3aqGbp34JQn'
2849
- }, {
2850
- id: 18496984,
2851
- user_id: 1000000026028615,
2852
- work_id: 566944,
2853
- visible_nodes: [0, 3, 4, 5, 6, 7, 10],
2854
- accessible_nodes: [0, 3, 4, 5, 6, 7, 10],
2855
- index: 2,
2856
- quaternion: {
2857
- y: -0.97795432280482,
2858
- x: 0.00081101740849599,
2859
- z: 0.0019794708616526,
2860
- w: 0.20880793117735
2861
- },
2862
- standing_position: [0.12467800080776, -1.2686123135022, -0.18315100669861],
2863
- position: [0.12467800080776, 0.0013575400225818, -0.18315100669861],
2864
- floor_index: 0,
2865
- offset_point_count: 0,
2866
- work_code: 'PrXel3aqGbp34JQn'
2867
- }, {
2868
- id: 18496985,
2869
- user_id: 1000000026028615,
2870
- work_id: 566944,
2871
- visible_nodes: [2, 4],
2872
- accessible_nodes: [2, 4],
2873
- index: 3,
2874
- quaternion: {
2875
- y: -0.98438760961298,
2876
- x: 0.0053581138489592,
2877
- z: 0.0095896433850341,
2878
- w: 0.17567116637619
2879
- },
2880
- standing_position: [-0.7671759724617, -1.1389372876792, -0.31637299060822],
2881
- position: [-0.7671759724617, 0.13586999475956, -0.31637299060822],
2882
- floor_index: 0,
2883
- offset_point_count: 0,
2884
- work_code: 'PrXel3aqGbp34JQn'
2885
- }, {
2886
- id: 18496986,
2887
- user_id: 1000000026028615,
2888
- work_id: 566944,
2889
- visible_nodes: [2, 3],
2890
- accessible_nodes: [2, 3],
2891
- index: 4,
2892
- quaternion: {
2893
- y: -0.9903654203663,
2894
- x: 0.0069318110491935,
2895
- z: -0.00012513076928771,
2896
- w: 0.13830499748482
2897
- },
2898
- standing_position: [-1.6337699890137, -1.1457244555023, -0.40071099996567],
2899
- position: [-1.6337699890137, 0.13434299826622, -0.40071099996567],
2900
- floor_index: 0,
2901
- offset_point_count: 0,
2902
- work_code: 'PrXel3aqGbp34JQn'
2903
- }, {
2904
- id: 18496987,
2905
- user_id: 1000000026028615,
2906
- work_id: 566944,
2907
- visible_nodes: [2, 6, 7],
2908
- accessible_nodes: [2, 6, 7],
2909
- index: 5,
2910
- quaternion: {
2911
- y: -0.53916603973722,
2912
- x: 0.0027200439365211,
2913
- z: 0.0024433193027244,
2914
- w: 0.84219156036948
2915
- },
2916
- standing_position: [-0.90439301729202, -1.2691301933321, 2.6879398822784],
2917
- position: [-0.90439301729202, 0.0046863202005625, 2.6879398822784],
2918
- floor_index: 0,
2919
- offset_point_count: 0,
2920
- work_code: 'PrXel3aqGbp34JQn'
2921
- }, {
2922
- id: 18496988,
2923
- user_id: 1000000026028615,
2924
- work_id: 566944,
2925
- visible_nodes: [0, 2, 5, 7],
2926
- accessible_nodes: [0, 2, 5, 7],
2927
- index: 6,
2928
- quaternion: {
2929
- y: 0.30827382224748,
2930
- x: 0.00061878927626789,
2931
- z: -0.00077144943582338,
2932
- w: -0.95129714861506
2933
- },
2934
- standing_position: [0.075182400643826, -1.2688554000537, 1.4170199632645],
2935
- position: [0.075182400643826, 0.0074145598337054, 1.4170199632645],
2936
- floor_index: 0,
2937
- offset_point_count: 0,
2938
- work_code: 'PrXel3aqGbp34JQn'
2939
- }, {
2940
- id: 18496989,
2941
- user_id: 1000000026028615,
2942
- work_id: 566944,
2943
- visible_nodes: [0, 2, 5, 6],
2944
- accessible_nodes: [0, 2, 5, 6],
2945
- index: 7,
2946
- quaternion: {
2947
- y: 0.43832507605383,
2948
- x: -0.00023134830068385,
2949
- z: -0.00039411566240759,
2950
- w: -0.89881640198252
2951
- },
2952
- standing_position: [0.51683098077774, -1.2669896720854, 3.7295401096344],
2953
- position: [0.51683098077774, 0.018718000501394, 3.7295401096344],
2954
- floor_index: 0,
2955
- offset_point_count: 0,
2956
- work_code: 'PrXel3aqGbp34JQn'
2957
- }, {
2958
- id: 18496990,
2959
- user_id: 1000000026028615,
2960
- work_id: 566944,
2961
- visible_nodes: [0, 1, 9, 10, 11, 12, 13, 14, 15, 23, 24],
2962
- accessible_nodes: [0, 1, 9, 10, 11, 12, 13, 14, 15, 23, 24],
2963
- index: 8,
2964
- quaternion: {
2965
- y: -0.97908727428848,
2966
- x: 0.0044198527096595,
2967
- z: 0.00070927556397376,
2968
- w: -0.20339143259655
2969
- },
2970
- standing_position: [4.2403697967529, -1.2686614015191, -0.89358198642731],
2971
- position: [4.2403697967529, 0.0087217902764678, -0.89358198642731],
2972
- floor_index: 0,
2973
- offset_point_count: 0,
2974
- work_code: 'PrXel3aqGbp34JQn'
2975
- }, {
2976
- id: 18496991,
2977
- user_id: 1000000026028615,
2978
- work_id: 566944,
2979
- visible_nodes: [0, 1, 8, 10, 11, 12, 13, 14, 15, 16, 24],
2980
- accessible_nodes: [0, 1, 8, 10, 11, 12, 13, 14, 15, 16, 24],
2981
- index: 9,
2982
- quaternion: {
2983
- y: -0.56569452622454,
2984
- x: 0.0039094931739551,
2985
- z: 0.0013893734088392,
2986
- w: -0.82460444379749
2987
- },
2988
- standing_position: [2.4248399734497, -1.2688604545011, -0.81432402133942],
2989
- position: [2.4248399734497, 0.0036859901156276, -0.81432402133942],
2990
- floor_index: 0,
2991
- offset_point_count: 0,
2992
- work_code: 'PrXel3aqGbp34JQn'
2993
- }, {
2994
- id: 18496992,
2995
- user_id: 1000000026028615,
2996
- work_id: 566944,
2997
- visible_nodes: [0, 1, 2, 8, 9, 11, 12, 13, 14, 15, 16, 17],
2998
- accessible_nodes: [0, 1, 2, 8, 9, 11, 12, 13, 14, 15, 16, 17],
2999
- index: 10,
3000
- quaternion: {
3001
- y: -0.99109458052474,
3002
- x: 0.0020549282532416,
3003
- z: 0.00085708533082296,
3004
- w: -0.13314122760215
3005
- },
3006
- standing_position: [1.7924799919128, -1.2691000413895, -2.1214900016785],
3007
- position: [1.7924799919128, -0.0016947699477896, -2.1214900016785],
3008
- floor_index: 0,
3009
- offset_point_count: 0,
3010
- work_code: 'PrXel3aqGbp34JQn'
3011
- }, {
3012
- id: 18496993,
3013
- user_id: 1000000026028615,
3014
- work_id: 566944,
3015
- visible_nodes: [0, 1, 8, 9, 10, 12, 13, 15, 23],
3016
- accessible_nodes: [0, 1, 8, 9, 10, 12, 13, 15, 23],
3017
- index: 11,
3018
- quaternion: {
3019
- y: 0.022836858877104,
3020
- x: 0.0019872421108654,
3021
- z: -0.00051103712063549,
3022
- w: -0.99973710150815
3023
- },
3024
- standing_position: [3.9565999507904, -1.2691066063193, 0.54184198379517],
3025
- position: [3.9565999507904, 0.012976500205696, 0.54184198379517],
3026
- floor_index: 0,
3027
- offset_point_count: 0,
3028
- work_code: 'PrXel3aqGbp34JQn'
3029
- }, {
3030
- id: 18496994,
3031
- user_id: 1000000026028615,
3032
- work_id: 566944,
3033
- visible_nodes: [0, 8, 9, 10, 11, 13, 15, 23],
3034
- accessible_nodes: [0, 8, 9, 10, 11, 13, 15, 23],
3035
- index: 12,
3036
- quaternion: {
3037
- y: -0.068427437022546,
3038
- x: 0.0027643345360987,
3039
- z: -0.0011530276775682,
3040
- w: -0.99765159856777
3041
- },
3042
- standing_position: [3.9009599685669, -1.2691968409225, 1.6444000005722],
3043
- position: [3.9009599685669, 0.016872599720955, 1.6444000005722],
3044
- floor_index: 0,
3045
- offset_point_count: 0,
3046
- work_code: 'PrXel3aqGbp34JQn'
3047
- }, {
3048
- id: 18496995,
3049
- user_id: 1000000026028615,
3050
- work_id: 566944,
3051
- visible_nodes: [0, 8, 9, 10, 11, 12, 15, 23],
3052
- accessible_nodes: [0, 8, 9, 10, 11, 12, 15, 23],
3053
- index: 13,
3054
- quaternion: {
3055
- y: -0.11218066975275,
3056
- x: 0.00070092978835157,
3057
- z: 0.00065720884713135,
3058
- w: -0.99368735961702
3059
- },
3060
- standing_position: [3.7296500205994, -1.2690302420688, 2.7036299705505],
3061
- position: [3.7296500205994, 0.020531499758363, 2.7036299705505],
3062
- floor_index: 0,
3063
- offset_point_count: 0,
3064
- work_code: 'PrXel3aqGbp34JQn'
3065
- }, {
3066
- id: 18496996,
3067
- user_id: 1000000026028615,
3068
- work_id: 566944,
3069
- visible_nodes: [0, 1, 8, 9, 10, 15, 16, 17, 19, 21, 22, 23, 26, 27, 29],
3070
- accessible_nodes: [0, 1, 8, 9, 10, 15, 16, 17, 19, 21, 22, 23, 26, 27, 29],
3071
- index: 14,
3072
- quaternion: {
3073
- y: -0.99996016840285,
3074
- x: 0.0038184156261868,
3075
- z: -0.00042488673356604,
3076
- w: -0.0080557708033058
3077
- },
3078
- standing_position: [6.1971502304077, -1.2695198792723, -1.8468899726868],
3079
- position: [6.1971502304077, 0.01313959993422, -1.8468899726868],
3080
- floor_index: 0,
3081
- offset_point_count: 0,
3082
- work_code: 'PrXel3aqGbp34JQn'
3083
- }, {
3084
- id: 18496997,
3085
- user_id: 1000000026028615,
3086
- work_id: 566944,
3087
- visible_nodes: [0, 1, 8, 9, 10, 11, 12, 13, 14, 19, 23, 24],
3088
- accessible_nodes: [0, 1, 8, 9, 10, 11, 12, 13, 14, 19, 23, 24],
3089
- index: 15,
3090
- quaternion: {
3091
- y: -0.99939060269379,
3092
- x: 0.0034990817755332,
3093
- z: 0.00012884448927937,
3094
- w: -0.03473002750946
3095
- },
3096
- standing_position: [5.2630200386047, -1.2688322903361, -2.6501700878143],
3097
- position: [5.2630200386047, 0.009476269595325, -2.6501700878143],
3098
- floor_index: 0,
3099
- offset_point_count: 0,
3100
- work_code: 'PrXel3aqGbp34JQn'
3101
- }, {
3102
- id: 18496998,
3103
- user_id: 1000000026028615,
3104
- work_id: 566944,
3105
- visible_nodes: [0, 1, 9, 10, 14, 17],
3106
- accessible_nodes: [0, 1, 9, 10, 14, 17],
3107
- index: 16,
3108
- quaternion: {
3109
- y: -0.9986395820912,
3110
- x: -0.000067127793443943,
3111
- z: 0.003353882130941,
3112
- w: 0.052035779338124
3113
- },
3114
- standing_position: [7.2275500297546, -1.2681422962577, -2.0782299041748],
3115
- position: [7.2275500297546, 0.031055700033903, -2.0782299041748],
3116
- floor_index: 0,
3117
- offset_point_count: 0,
3118
- work_code: 'PrXel3aqGbp34JQn'
3119
- }, {
3120
- id: 18496999,
3121
- user_id: 1000000026028615,
3122
- work_id: 566944,
3123
- visible_nodes: [0, 1, 10, 14, 16, 18],
3124
- accessible_nodes: [0, 1, 10, 14, 16, 18],
3125
- index: 17,
3126
- quaternion: {
3127
- y: -0.8464287602736,
3128
- x: 0.0028412825010774,
3129
- z: -0.0092620046319763,
3130
- w: -0.5324138311605
3131
- },
3132
- standing_position: [8.5519504547119, -1.2587690758772, -1.8519300222397],
3133
- position: [8.5519504547119, 0.028979599475861, -1.8519300222397],
3134
- floor_index: 0,
3135
- offset_point_count: 0,
3136
- work_code: 'PrXel3aqGbp34JQn'
3137
- }, {
3138
- id: 18497000,
3139
- user_id: 1000000026028615,
3140
- work_id: 566944,
3141
- visible_nodes: [17],
3142
- accessible_nodes: [17],
3143
- index: 18,
3144
- quaternion: {
3145
- y: -0.99682954277984,
3146
- x: 0.0047909779929542,
3147
- z: -0.0048915268785277,
3148
- w: -0.079271551574667
3149
- },
3150
- standing_position: [8.74534034729, -1.259599908903, -2.6189498901367],
3151
- position: [8.74534034729, 0.034445699304342, -2.6189498901367],
3152
- floor_index: 0,
3153
- offset_point_count: 0,
3154
- work_code: 'PrXel3aqGbp34JQn'
3155
- }, {
3156
- id: 18497001,
3157
- user_id: 1000000026028615,
3158
- work_id: 566944,
3159
- visible_nodes: [14, 15, 20, 21, 22, 23, 26, 27, 29],
3160
- accessible_nodes: [14, 15, 20, 21, 22, 23, 26, 27, 29],
3161
- index: 19,
3162
- quaternion: {
3163
- y: -0.53102128631281,
3164
- x: 0.000076455273775862,
3165
- z: 0.0032197579195997,
3166
- w: -0.84735235804573
3167
- },
3168
- standing_position: [6.2838201522827, -1.2702559994722, -0.6394180059433],
3169
- position: [6.2838201522827, 0.010557699948549, -0.6394180059433],
3170
- floor_index: 0,
3171
- offset_point_count: 0,
3172
- work_code: 'PrXel3aqGbp34JQn'
3173
- }, {
3174
- id: 18497002,
3175
- user_id: 1000000026028615,
3176
- work_id: 566944,
3177
- visible_nodes: [19, 21, 22],
3178
- accessible_nodes: [19, 21, 22],
3179
- index: 20,
3180
- quaternion: {
3181
- y: -0.78904997938439,
3182
- x: 0.0030985968475919,
3183
- z: 0.00086571204019497,
3184
- w: -0.6143205884304
3185
- },
3186
- standing_position: [7.700749874115, -1.2639175082163, -0.089394301176071],
3187
- position: [7.700749874115, 0.0053668599575758, -0.089394301176071],
3188
- floor_index: 0,
3189
- offset_point_count: 0,
3190
- work_code: 'PrXel3aqGbp34JQn'
3191
- }, {
3192
- id: 18497003,
3193
- user_id: 1000000026028615,
3194
- work_id: 566944,
3195
- visible_nodes: [14, 19, 20, 22, 23, 26, 27],
3196
- accessible_nodes: [14, 19, 20, 22, 23, 26, 27],
3197
- index: 21,
3198
- quaternion: {
3199
- y: -0.054853152501734,
3200
- x: 0.00672308708698,
3201
- z: 0.0033541863355224,
3202
- w: -0.9984661647401
3203
- },
3204
- standing_position: [6.3554801940918, -1.271804140864, 1.1503499746323],
3205
- position: [6.3554801940918, 0.0052813598886132, 1.1503499746323],
3206
- floor_index: 0,
3207
- offset_point_count: 0,
3208
- work_code: 'PrXel3aqGbp34JQn'
3209
- }, {
3210
- id: 18497004,
3211
- user_id: 1000000026028615,
3212
- work_id: 566944,
3213
- visible_nodes: [14, 19, 20, 21, 23, 26, 27],
3214
- accessible_nodes: [14, 19, 20, 21, 23, 26, 27],
3215
- index: 22,
3216
- quaternion: {
3217
- y: -0.102977045571,
3218
- x: 0.0032241283719115,
3219
- z: 0.00033863993051226,
3220
- w: -0.99467844177254
3221
- },
3222
- standing_position: [6.2842202186584, -1.2711862058573, 2.8443999290466],
3223
- position: [6.2842202186584, 0.014912899583578, 2.8443999290466],
3224
- floor_index: 0,
3225
- offset_point_count: 0,
3226
- work_code: 'PrXel3aqGbp34JQn'
3227
- }, {
3228
- id: 18497005,
3229
- user_id: 1000000026028615,
3230
- work_id: 566944,
3231
- visible_nodes: [8, 11, 12, 13, 14, 15, 19, 21, 22, 24, 25, 26, 27, 29],
3232
- accessible_nodes: [8, 11, 12, 13, 14, 15, 19, 21, 22, 24, 25, 26, 27, 29],
3233
- index: 23,
3234
- quaternion: {
3235
- y: -0.99638673549982,
3236
- x: -0.0036098460362956,
3237
- z: -0.001562879618452,
3238
- w: 0.084841056697859
3239
- },
3240
- standing_position: [6.2480797767639, -1.2700246644769, -4.4909100532532],
3241
- position: [6.2480797767639, 0.008645280264318, -4.4909100532532],
3242
- floor_index: 0,
3243
- offset_point_count: 0,
3244
- work_code: 'PrXel3aqGbp34JQn'
3245
- }, {
3246
- id: 18497006,
3247
- user_id: 1000000026028615,
3248
- work_id: 566944,
3249
- visible_nodes: [8, 9, 15, 23, 25],
3250
- accessible_nodes: [8, 9, 15, 23, 25],
3251
- index: 24,
3252
- quaternion: {
3253
- y: -0.9495886800026,
3254
- x: 0.000060776608436637,
3255
- z: -0.0051049296006315,
3256
- w: 0.31345697486302
3257
- },
3258
- standing_position: [7.0756101608276, -1.2748615969392, -4.5692000389099],
3259
- position: [7.0756101608276, 0.00068478798493743, -4.5692000389099],
3260
- floor_index: 0,
3261
- offset_point_count: 0,
3262
- work_code: 'PrXel3aqGbp34JQn'
3263
- }, {
3264
- id: 18497007,
3265
- user_id: 1000000026028615,
3266
- work_id: 566944,
3267
- visible_nodes: [23, 24],
3268
- accessible_nodes: [23, 24],
3269
- index: 25,
3270
- quaternion: {
3271
- y: -0.97749454271154,
3272
- x: -0.0029072286113738,
3273
- z: -0.0025512932981842,
3274
- w: -0.21092524686533
3275
- },
3276
- standing_position: [8.2271003723145, -1.2739012526201, -4.5278301239014],
3277
- position: [8.2271003723145, -0.011182700283825, -4.5278301239014],
3278
- floor_index: 0,
3279
- offset_point_count: 0,
3280
- work_code: 'PrXel3aqGbp34JQn'
3281
- }, {
3282
- id: 18497008,
3283
- user_id: 1000000026028615,
3284
- work_id: 566944,
3285
- visible_nodes: [14, 19, 21, 22, 23, 27, 28, 29],
3286
- accessible_nodes: [14, 19, 21, 22, 23, 27, 28, 29],
3287
- index: 26,
3288
- quaternion: {
3289
- y: -0.96550800454206,
3290
- x: -0.0060363092649853,
3291
- z: -0.0035929224549924,
3292
- w: 0.26027860857318
3293
- },
3294
- standing_position: [6.3678498268127, -1.2681638961016, -6.6111102104187],
3295
- position: [6.3678498268127, 0.008749770000577, -6.6111102104187],
3296
- floor_index: 0,
3297
- offset_point_count: 0,
3298
- work_code: 'PrXel3aqGbp34JQn'
3299
- }, {
3300
- id: 18497009,
3301
- user_id: 1000000026028615,
3302
- work_id: 566944,
3303
- visible_nodes: [14, 19, 21, 22, 23, 26, 28, 29],
3304
- accessible_nodes: [14, 19, 21, 22, 23, 26, 28, 29],
3305
- index: 27,
3306
- quaternion: {
3307
- y: -0.98643616188508,
3308
- x: -0.0047991672636114,
3309
- z: -0.0065092177971828,
3310
- w: 0.16394598711154
3311
- },
3312
- standing_position: [6.5814800262451, -1.2707558254815, -8.614709854126],
3313
- position: [6.5814800262451, 0.015283299610019, -8.614709854126],
3314
- floor_index: 0,
3315
- offset_point_count: 0,
3316
- work_code: 'PrXel3aqGbp34JQn'
3317
- }, {
3318
- id: 18497010,
3319
- user_id: 1000000026028615,
3320
- work_id: 566944,
3321
- visible_nodes: [26, 27],
3322
- accessible_nodes: [26, 27],
3323
- index: 28,
3324
- quaternion: {
3325
- y: -0.95128523603437,
3326
- x: -0.002204844104983,
3327
- z: 0.00014462264432249,
3328
- w: -0.30830424919522
3329
- },
3330
- standing_position: [7.849289894104, -1.2815563748551, -9.056360244751],
3331
- position: [7.849289894104, -0.0032497600186616, -9.056360244751],
3332
- floor_index: 0,
3333
- offset_point_count: 0,
3334
- work_code: 'PrXel3aqGbp34JQn'
3335
- }, {
3336
- id: 18497011,
3337
- user_id: 1000000026028615,
3338
- work_id: 566944,
3339
- visible_nodes: [14, 19, 23, 26, 27, 30],
3340
- accessible_nodes: [14, 19, 23, 26, 27, 30],
3341
- index: 29,
3342
- quaternion: {
3343
- y: -0.9981602792829,
3344
- x: -0.0025136894589747,
3345
- z: -0.0092406009745604,
3346
- w: 0.059869430194665
3347
- },
3348
- standing_position: [6.8886799812317, -1.2764895681231, -10.135600090027],
3349
- position: [6.8886799812317, -0.018597200512886, -10.135600090027],
3350
- floor_index: 0,
3351
- offset_point_count: 0,
3352
- work_code: 'PrXel3aqGbp34JQn'
3353
- }, {
3354
- id: 18497012,
3355
- user_id: 1000000026028615,
3356
- work_id: 566944,
3357
- visible_nodes: [29],
3358
- accessible_nodes: [29],
3359
- index: 30,
3360
- quaternion: {
3361
- y: -0.94272439725196,
3362
- x: 0.0021586691225361,
3363
- z: -0.00093049802976015,
3364
- w: -0.33356438010538
3365
- },
3366
- standing_position: [7.8879499435425, -1.2999600632798, -10.28989982605],
3367
- position: [7.8879499435425, -0.014722499996424, -10.28989982605],
3368
- floor_index: 0,
3369
- offset_point_count: 0,
3370
- work_code: 'PrXel3aqGbp34JQn'
3371
- }],
3372
- model: {
3373
- id: 820582,
3374
- user_id: 1000000026028615,
3375
- work_id: 566944,
3376
- file_url: 'https://vrlab-public.ljcdn.com/release/auto3dhd/003e404094e7271c3202d2c134fb87f0/model/auto3d-4xxm0WvaNAXLfDTI456Kb1.at3d',
3377
- file_url_checksum: '',
3378
- material_base_url: 'https://vrlab-public.ljcdn.com/release/auto3dhd/003e404094e7271c3202d2c134fb87f0/materials/',
3379
- material_textures: null,
3380
- material_textures_checksums: null,
3381
- score: 0,
3382
- work_code: 'PrXel3aqGbp34JQn'
3383
- },
3384
- panorama: {
3385
- id: 849430,
3386
- user_id: 1000000026028615,
3387
- work_id: 566944,
3388
- count: 31,
3389
- base_url: 'https://vrlab-public.ljcdn.com/release/auto3dhd/003e404094e7271c3202d2c134fb87f0/images/cube_2048/',
3390
- cube_path: 'images/cube_2048/',
3391
- argument: '',
3392
- list: [{
3393
- id: 19127750,
3394
- user_id: 1000000026028615,
3395
- work_id: 566944,
3396
- panorama_id: 849430,
3397
- derived_id: 1545379297,
3398
- algorithm_type: 0,
3399
- index: 0,
3400
- right: '96cc3cd6045d11922cceb61b0dd8455b/0_r.jpg',
3401
- left: '96cc3cd6045d11922cceb61b0dd8455b/0_l.jpg',
3402
- up: '96cc3cd6045d11922cceb61b0dd8455b/0_u.jpg',
3403
- down: '96cc3cd6045d11922cceb61b0dd8455b/0_d.jpg',
3404
- front: '96cc3cd6045d11922cceb61b0dd8455b/0_f.jpg',
3405
- back: '96cc3cd6045d11922cceb61b0dd8455b/0_b.jpg',
3406
- checksums: null,
3407
- work_code: 'PrXel3aqGbp34JQn'
3408
- }, {
3409
- id: 19127751,
3410
- user_id: 1000000026028615,
3411
- work_id: 566944,
3412
- panorama_id: 849430,
3413
- derived_id: 1545379372,
3414
- algorithm_type: 0,
3415
- index: 1,
3416
- right: 'ef26c040416d3359c90be087f9a966d1/1_r.jpg',
3417
- left: 'ef26c040416d3359c90be087f9a966d1/1_l.jpg',
3418
- up: 'ef26c040416d3359c90be087f9a966d1/1_u.jpg',
3419
- down: 'ef26c040416d3359c90be087f9a966d1/1_d.jpg',
3420
- front: 'ef26c040416d3359c90be087f9a966d1/1_f.jpg',
3421
- back: 'ef26c040416d3359c90be087f9a966d1/1_b.jpg',
3422
- checksums: null,
3423
- work_code: 'PrXel3aqGbp34JQn'
3424
- }, {
3425
- id: 19127752,
3426
- user_id: 1000000026028615,
3427
- work_id: 566944,
3428
- panorama_id: 849430,
3429
- derived_id: 1545379499,
3430
- algorithm_type: 0,
3431
- index: 2,
3432
- right: 'e139104b67db93ce7e6b6a9bc79786c0/2_r.jpg',
3433
- left: 'e139104b67db93ce7e6b6a9bc79786c0/2_l.jpg',
3434
- up: 'e139104b67db93ce7e6b6a9bc79786c0/2_u.jpg',
3435
- down: 'e139104b67db93ce7e6b6a9bc79786c0/2_d.jpg',
3436
- front: 'e139104b67db93ce7e6b6a9bc79786c0/2_f.jpg',
3437
- back: 'e139104b67db93ce7e6b6a9bc79786c0/2_b.jpg',
3438
- checksums: null,
3439
- work_code: 'PrXel3aqGbp34JQn'
3440
- }, {
3441
- id: 19127753,
3442
- user_id: 1000000026028615,
3443
- work_id: 566944,
3444
- panorama_id: 849430,
3445
- derived_id: 1545379591,
3446
- algorithm_type: 0,
3447
- index: 3,
3448
- right: '0865191c0977ddc47f64b1a4fecee9c7/3_r.jpg',
3449
- left: '0865191c0977ddc47f64b1a4fecee9c7/3_l.jpg',
3450
- up: '0865191c0977ddc47f64b1a4fecee9c7/3_u.jpg',
3451
- down: '0865191c0977ddc47f64b1a4fecee9c7/3_d.jpg',
3452
- front: '0865191c0977ddc47f64b1a4fecee9c7/3_f.jpg',
3453
- back: '0865191c0977ddc47f64b1a4fecee9c7/3_b.jpg',
3454
- checksums: null,
3455
- work_code: 'PrXel3aqGbp34JQn'
3456
- }, {
3457
- id: 19127754,
3458
- user_id: 1000000026028615,
3459
- work_id: 566944,
3460
- panorama_id: 849430,
3461
- derived_id: 1545379669,
3462
- algorithm_type: 0,
3463
- index: 4,
3464
- right: '327ee625ec763d759bf9bca2e0dc147b/4_r.jpg',
3465
- left: '327ee625ec763d759bf9bca2e0dc147b/4_l.jpg',
3466
- up: '327ee625ec763d759bf9bca2e0dc147b/4_u.jpg',
3467
- down: '327ee625ec763d759bf9bca2e0dc147b/4_d.jpg',
3468
- front: '327ee625ec763d759bf9bca2e0dc147b/4_f.jpg',
3469
- back: '327ee625ec763d759bf9bca2e0dc147b/4_b.jpg',
3470
- checksums: null,
3471
- work_code: 'PrXel3aqGbp34JQn'
3472
- }, {
3473
- id: 19127755,
3474
- user_id: 1000000026028615,
3475
- work_id: 566944,
3476
- panorama_id: 849430,
3477
- derived_id: 1545379846,
3478
- algorithm_type: 0,
3479
- index: 5,
3480
- right: 'd1f9161f741714bc3677ad38abc22953/5_r.jpg',
3481
- left: 'd1f9161f741714bc3677ad38abc22953/5_l.jpg',
3482
- up: 'd1f9161f741714bc3677ad38abc22953/5_u.jpg',
3483
- down: 'd1f9161f741714bc3677ad38abc22953/5_d.jpg',
3484
- front: 'd1f9161f741714bc3677ad38abc22953/5_f.jpg',
3485
- back: 'd1f9161f741714bc3677ad38abc22953/5_b.jpg',
3486
- checksums: null,
3487
- work_code: 'PrXel3aqGbp34JQn'
3488
- }, {
3489
- id: 19127756,
3490
- user_id: 1000000026028615,
3491
- work_id: 566944,
3492
- panorama_id: 849430,
3493
- derived_id: 1545379765,
3494
- algorithm_type: 0,
3495
- index: 6,
3496
- right: '3edcc4df80e348e920928fef1ec00ae5/6_r.jpg',
3497
- left: '3edcc4df80e348e920928fef1ec00ae5/6_l.jpg',
3498
- up: '3edcc4df80e348e920928fef1ec00ae5/6_u.jpg',
3499
- down: '3edcc4df80e348e920928fef1ec00ae5/6_d.jpg',
3500
- front: '3edcc4df80e348e920928fef1ec00ae5/6_f.jpg',
3501
- back: '3edcc4df80e348e920928fef1ec00ae5/6_b.jpg',
3502
- checksums: null,
3503
- work_code: 'PrXel3aqGbp34JQn'
3504
- }, {
3505
- id: 19127757,
3506
- user_id: 1000000026028615,
3507
- work_id: 566944,
3508
- panorama_id: 849430,
3509
- derived_id: 1545379923,
3510
- algorithm_type: 0,
3511
- index: 7,
3512
- right: 'fb02a8cc1338b8d65b77928c5f9baf2b/7_r.jpg',
3513
- left: 'fb02a8cc1338b8d65b77928c5f9baf2b/7_l.jpg',
3514
- up: 'fb02a8cc1338b8d65b77928c5f9baf2b/7_u.jpg',
3515
- down: 'fb02a8cc1338b8d65b77928c5f9baf2b/7_d.jpg',
3516
- front: 'fb02a8cc1338b8d65b77928c5f9baf2b/7_f.jpg',
3517
- back: 'fb02a8cc1338b8d65b77928c5f9baf2b/7_b.jpg',
3518
- checksums: null,
3519
- work_code: 'PrXel3aqGbp34JQn'
3520
- }, {
3521
- id: 19127758,
3522
- user_id: 1000000026028615,
3523
- work_id: 566944,
3524
- panorama_id: 849430,
3525
- derived_id: 1545380180,
3526
- algorithm_type: 0,
3527
- index: 8,
3528
- right: '6c3140558571d8cadaf169be961b991e/8_r.jpg',
3529
- left: '6c3140558571d8cadaf169be961b991e/8_l.jpg',
3530
- up: '6c3140558571d8cadaf169be961b991e/8_u.jpg',
3531
- down: '6c3140558571d8cadaf169be961b991e/8_d.jpg',
3532
- front: '6c3140558571d8cadaf169be961b991e/8_f.jpg',
3533
- back: '6c3140558571d8cadaf169be961b991e/8_b.jpg',
3534
- checksums: null,
3535
- work_code: 'PrXel3aqGbp34JQn'
3536
- }, {
3537
- id: 19127759,
3538
- user_id: 1000000026028615,
3539
- work_id: 566944,
3540
- panorama_id: 849430,
3541
- derived_id: 1545380093,
3542
- algorithm_type: 0,
3543
- index: 9,
3544
- right: '19d803203dc1342d8a75ce8c17c924da/9_r.jpg',
3545
- left: '19d803203dc1342d8a75ce8c17c924da/9_l.jpg',
3546
- up: '19d803203dc1342d8a75ce8c17c924da/9_u.jpg',
3547
- down: '19d803203dc1342d8a75ce8c17c924da/9_d.jpg',
3548
- front: '19d803203dc1342d8a75ce8c17c924da/9_f.jpg',
3549
- back: '19d803203dc1342d8a75ce8c17c924da/9_b.jpg',
3550
- checksums: null,
3551
- work_code: 'PrXel3aqGbp34JQn'
3552
- }, {
3553
- id: 19127760,
3554
- user_id: 1000000026028615,
3555
- work_id: 566944,
3556
- panorama_id: 849430,
3557
- derived_id: 1545380014,
3558
- algorithm_type: 0,
3559
- index: 10,
3560
- right: '408c47f3312f3f849396734df646b8c8/10_r.jpg',
3561
- left: '408c47f3312f3f849396734df646b8c8/10_l.jpg',
3562
- up: '408c47f3312f3f849396734df646b8c8/10_u.jpg',
3563
- down: '408c47f3312f3f849396734df646b8c8/10_d.jpg',
3564
- front: '408c47f3312f3f849396734df646b8c8/10_f.jpg',
3565
- back: '408c47f3312f3f849396734df646b8c8/10_b.jpg',
3566
- checksums: null,
3567
- work_code: 'PrXel3aqGbp34JQn'
3568
- }, {
3569
- id: 19127761,
3570
- user_id: 1000000026028615,
3571
- work_id: 566944,
3572
- panorama_id: 849430,
3573
- derived_id: 1545380260,
3574
- algorithm_type: 0,
3575
- index: 11,
3576
- right: '8a26fe7b3e5286735a6326ae277da15e/11_r.jpg',
3577
- left: '8a26fe7b3e5286735a6326ae277da15e/11_l.jpg',
3578
- up: '8a26fe7b3e5286735a6326ae277da15e/11_u.jpg',
3579
- down: '8a26fe7b3e5286735a6326ae277da15e/11_d.jpg',
3580
- front: '8a26fe7b3e5286735a6326ae277da15e/11_f.jpg',
3581
- back: '8a26fe7b3e5286735a6326ae277da15e/11_b.jpg',
3582
- checksums: null,
3583
- work_code: 'PrXel3aqGbp34JQn'
3584
- }, {
3585
- id: 19127762,
3586
- user_id: 1000000026028615,
3587
- work_id: 566944,
3588
- panorama_id: 849430,
3589
- derived_id: 1545380339,
3590
- algorithm_type: 0,
3591
- index: 12,
3592
- right: '90583cb644751e9365ba950f7b025b92/12_r.jpg',
3593
- left: '90583cb644751e9365ba950f7b025b92/12_l.jpg',
3594
- up: '90583cb644751e9365ba950f7b025b92/12_u.jpg',
3595
- down: '90583cb644751e9365ba950f7b025b92/12_d.jpg',
3596
- front: '90583cb644751e9365ba950f7b025b92/12_f.jpg',
3597
- back: '90583cb644751e9365ba950f7b025b92/12_b.jpg',
3598
- checksums: null,
3599
- work_code: 'PrXel3aqGbp34JQn'
3600
- }, {
3601
- id: 19127763,
3602
- user_id: 1000000026028615,
3603
- work_id: 566944,
3604
- panorama_id: 849430,
3605
- derived_id: 1545380421,
3606
- algorithm_type: 0,
3607
- index: 13,
3608
- right: '87e1d158b33f33c1a9007e53f4cac619/13_r.jpg',
3609
- left: '87e1d158b33f33c1a9007e53f4cac619/13_l.jpg',
3610
- up: '87e1d158b33f33c1a9007e53f4cac619/13_u.jpg',
3611
- down: '87e1d158b33f33c1a9007e53f4cac619/13_d.jpg',
3612
- front: '87e1d158b33f33c1a9007e53f4cac619/13_f.jpg',
3613
- back: '87e1d158b33f33c1a9007e53f4cac619/13_b.jpg',
3614
- checksums: null,
3615
- work_code: 'PrXel3aqGbp34JQn'
3616
- }, {
3617
- id: 19127764,
3618
- user_id: 1000000026028615,
3619
- work_id: 566944,
3620
- panorama_id: 849430,
3621
- derived_id: 1545380627,
3622
- algorithm_type: 0,
3623
- index: 14,
3624
- right: '3c0e5d1147026162d9da494947ec7c9a/14_r.jpg',
3625
- left: '3c0e5d1147026162d9da494947ec7c9a/14_l.jpg',
3626
- up: '3c0e5d1147026162d9da494947ec7c9a/14_u.jpg',
3627
- down: '3c0e5d1147026162d9da494947ec7c9a/14_d.jpg',
3628
- front: '3c0e5d1147026162d9da494947ec7c9a/14_f.jpg',
3629
- back: '3c0e5d1147026162d9da494947ec7c9a/14_b.jpg',
3630
- checksums: null,
3631
- work_code: 'PrXel3aqGbp34JQn'
3632
- }, {
3633
- id: 19127765,
3634
- user_id: 1000000026028615,
3635
- work_id: 566944,
3636
- panorama_id: 849430,
3637
- derived_id: 1545380545,
3638
- algorithm_type: 0,
3639
- index: 15,
3640
- right: '200692e966238a3c8866de5f7be5fbd3/15_r.jpg',
3641
- left: '200692e966238a3c8866de5f7be5fbd3/15_l.jpg',
3642
- up: '200692e966238a3c8866de5f7be5fbd3/15_u.jpg',
3643
- down: '200692e966238a3c8866de5f7be5fbd3/15_d.jpg',
3644
- front: '200692e966238a3c8866de5f7be5fbd3/15_f.jpg',
3645
- back: '200692e966238a3c8866de5f7be5fbd3/15_b.jpg',
3646
- checksums: null,
3647
- work_code: 'PrXel3aqGbp34JQn'
3648
- }, {
3649
- id: 19127766,
3650
- user_id: 1000000026028615,
3651
- work_id: 566944,
3652
- panorama_id: 849430,
3653
- derived_id: 1545380707,
3654
- algorithm_type: 0,
3655
- index: 16,
3656
- right: '7eb3aa411c3621657f154677d1040f23/16_r.jpg',
3657
- left: '7eb3aa411c3621657f154677d1040f23/16_l.jpg',
3658
- up: '7eb3aa411c3621657f154677d1040f23/16_u.jpg',
3659
- down: '7eb3aa411c3621657f154677d1040f23/16_d.jpg',
3660
- front: '7eb3aa411c3621657f154677d1040f23/16_f.jpg',
3661
- back: '7eb3aa411c3621657f154677d1040f23/16_b.jpg',
3662
- checksums: null,
3663
- work_code: 'PrXel3aqGbp34JQn'
3664
- }, {
3665
- id: 19127767,
3666
- user_id: 1000000026028615,
3667
- work_id: 566944,
3668
- panorama_id: 849430,
3669
- derived_id: 1545380784,
3670
- algorithm_type: 0,
3671
- index: 17,
3672
- right: '7b847c1525c45d0800e70a1a974d74c8/17_r.jpg',
3673
- left: '7b847c1525c45d0800e70a1a974d74c8/17_l.jpg',
3674
- up: '7b847c1525c45d0800e70a1a974d74c8/17_u.jpg',
3675
- down: '7b847c1525c45d0800e70a1a974d74c8/17_d.jpg',
3676
- front: '7b847c1525c45d0800e70a1a974d74c8/17_f.jpg',
3677
- back: '7b847c1525c45d0800e70a1a974d74c8/17_b.jpg',
3678
- checksums: null,
3679
- work_code: 'PrXel3aqGbp34JQn'
3680
- }, {
3681
- id: 19127768,
3682
- user_id: 1000000026028615,
3683
- work_id: 566944,
3684
- panorama_id: 849430,
3685
- derived_id: 1545380874,
3686
- algorithm_type: 0,
3687
- index: 18,
3688
- right: '31040616b60f33a41c07a4efcea60f92/18_r.jpg',
3689
- left: '31040616b60f33a41c07a4efcea60f92/18_l.jpg',
3690
- up: '31040616b60f33a41c07a4efcea60f92/18_u.jpg',
3691
- down: '31040616b60f33a41c07a4efcea60f92/18_d.jpg',
3692
- front: '31040616b60f33a41c07a4efcea60f92/18_f.jpg',
3693
- back: '31040616b60f33a41c07a4efcea60f92/18_b.jpg',
3694
- checksums: null,
3695
- work_code: 'PrXel3aqGbp34JQn'
3696
- }, {
3697
- id: 19127769,
3698
- user_id: 1000000026028615,
3699
- work_id: 566944,
3700
- panorama_id: 849430,
3701
- derived_id: 1545380958,
3702
- algorithm_type: 0,
3703
- index: 19,
3704
- right: '56244c99a57f931d7dab6144391bf623/19_r.jpg',
3705
- left: '56244c99a57f931d7dab6144391bf623/19_l.jpg',
3706
- up: '56244c99a57f931d7dab6144391bf623/19_u.jpg',
3707
- down: '56244c99a57f931d7dab6144391bf623/19_d.jpg',
3708
- front: '56244c99a57f931d7dab6144391bf623/19_f.jpg',
3709
- back: '56244c99a57f931d7dab6144391bf623/19_b.jpg',
3710
- checksums: null,
3711
- work_code: 'PrXel3aqGbp34JQn'
3712
- }, {
3713
- id: 19127770,
3714
- user_id: 1000000026028615,
3715
- work_id: 566944,
3716
- panorama_id: 849430,
3717
- derived_id: 1545381039,
3718
- algorithm_type: 0,
3719
- index: 20,
3720
- right: 'a32a889bd19629e2a31a713f7a07affc/20_r.jpg',
3721
- left: 'a32a889bd19629e2a31a713f7a07affc/20_l.jpg',
3722
- up: 'a32a889bd19629e2a31a713f7a07affc/20_u.jpg',
3723
- down: 'a32a889bd19629e2a31a713f7a07affc/20_d.jpg',
3724
- front: 'a32a889bd19629e2a31a713f7a07affc/20_f.jpg',
3725
- back: 'a32a889bd19629e2a31a713f7a07affc/20_b.jpg',
3726
- checksums: null,
3727
- work_code: 'PrXel3aqGbp34JQn'
3728
- }, {
3729
- id: 19127771,
3730
- user_id: 1000000026028615,
3731
- work_id: 566944,
3732
- panorama_id: 849430,
3733
- derived_id: 1545381122,
3734
- algorithm_type: 0,
3735
- index: 21,
3736
- right: 'f2243e6beeccc4edb3d5cd99ada6483f/21_r.jpg',
3737
- left: 'f2243e6beeccc4edb3d5cd99ada6483f/21_l.jpg',
3738
- up: 'f2243e6beeccc4edb3d5cd99ada6483f/21_u.jpg',
3739
- down: 'f2243e6beeccc4edb3d5cd99ada6483f/21_d.jpg',
3740
- front: 'f2243e6beeccc4edb3d5cd99ada6483f/21_f.jpg',
3741
- back: 'f2243e6beeccc4edb3d5cd99ada6483f/21_b.jpg',
3742
- checksums: null,
3743
- work_code: 'PrXel3aqGbp34JQn'
3744
- }, {
3745
- id: 19127772,
3746
- user_id: 1000000026028615,
3747
- work_id: 566944,
3748
- panorama_id: 849430,
3749
- derived_id: 1545381198,
3750
- algorithm_type: 0,
3751
- index: 22,
3752
- right: '7709b6ee3ebc5dd0d8735d3c76fd2716/22_r.jpg',
3753
- left: '7709b6ee3ebc5dd0d8735d3c76fd2716/22_l.jpg',
3754
- up: '7709b6ee3ebc5dd0d8735d3c76fd2716/22_u.jpg',
3755
- down: '7709b6ee3ebc5dd0d8735d3c76fd2716/22_d.jpg',
3756
- front: '7709b6ee3ebc5dd0d8735d3c76fd2716/22_f.jpg',
3757
- back: '7709b6ee3ebc5dd0d8735d3c76fd2716/22_b.jpg',
3758
- checksums: null,
3759
- work_code: 'PrXel3aqGbp34JQn'
3760
- }, {
3761
- id: 19127773,
3762
- user_id: 1000000026028615,
3763
- work_id: 566944,
3764
- panorama_id: 849430,
3765
- derived_id: 1545381277,
3766
- algorithm_type: 0,
3767
- index: 23,
3768
- right: '53a752c2b06ae04f493d39ff04359c90/23_r.jpg',
3769
- left: '53a752c2b06ae04f493d39ff04359c90/23_l.jpg',
3770
- up: '53a752c2b06ae04f493d39ff04359c90/23_u.jpg',
3771
- down: '53a752c2b06ae04f493d39ff04359c90/23_d.jpg',
3772
- front: '53a752c2b06ae04f493d39ff04359c90/23_f.jpg',
3773
- back: '53a752c2b06ae04f493d39ff04359c90/23_b.jpg',
3774
- checksums: null,
3775
- work_code: 'PrXel3aqGbp34JQn'
3776
- }, {
3777
- id: 19127774,
3778
- user_id: 1000000026028615,
3779
- work_id: 566944,
3780
- panorama_id: 849430,
3781
- derived_id: 1545381351,
3782
- algorithm_type: 0,
3783
- index: 24,
3784
- right: '85558ec1f022888b525365a77a10ba55/24_r.jpg',
3785
- left: '85558ec1f022888b525365a77a10ba55/24_l.jpg',
3786
- up: '85558ec1f022888b525365a77a10ba55/24_u.jpg',
3787
- down: '85558ec1f022888b525365a77a10ba55/24_d.jpg',
3788
- front: '85558ec1f022888b525365a77a10ba55/24_f.jpg',
3789
- back: '85558ec1f022888b525365a77a10ba55/24_b.jpg',
3790
- checksums: null,
3791
- work_code: 'PrXel3aqGbp34JQn'
3792
- }, {
3793
- id: 19127775,
3794
- user_id: 1000000026028615,
3795
- work_id: 566944,
3796
- panorama_id: 849430,
3797
- derived_id: 1545381430,
3798
- algorithm_type: 0,
3799
- index: 25,
3800
- right: 'abac77e1c6996759ebadbc680431933e/25_r.jpg',
3801
- left: 'abac77e1c6996759ebadbc680431933e/25_l.jpg',
3802
- up: 'abac77e1c6996759ebadbc680431933e/25_u.jpg',
3803
- down: 'abac77e1c6996759ebadbc680431933e/25_d.jpg',
3804
- front: 'abac77e1c6996759ebadbc680431933e/25_f.jpg',
3805
- back: 'abac77e1c6996759ebadbc680431933e/25_b.jpg',
3806
- checksums: null,
3807
- work_code: 'PrXel3aqGbp34JQn'
3808
- }, {
3809
- id: 19127776,
3810
- user_id: 1000000026028615,
3811
- work_id: 566944,
3812
- panorama_id: 849430,
3813
- derived_id: 1545381517,
3814
- algorithm_type: 0,
3815
- index: 26,
3816
- right: '0a24d1785d92a69a40998973a0ecf16d/26_r.jpg',
3817
- left: '0a24d1785d92a69a40998973a0ecf16d/26_l.jpg',
3818
- up: '0a24d1785d92a69a40998973a0ecf16d/26_u.jpg',
3819
- down: '0a24d1785d92a69a40998973a0ecf16d/26_d.jpg',
3820
- front: '0a24d1785d92a69a40998973a0ecf16d/26_f.jpg',
3821
- back: '0a24d1785d92a69a40998973a0ecf16d/26_b.jpg',
3822
- checksums: null,
3823
- work_code: 'PrXel3aqGbp34JQn'
3824
- }, {
3825
- id: 19127777,
3826
- user_id: 1000000026028615,
3827
- work_id: 566944,
3828
- panorama_id: 849430,
3829
- derived_id: 1545381593,
3830
- algorithm_type: 0,
3831
- index: 27,
3832
- right: 'd25661e2214931d67f5ec385bf55ccd0/27_r.jpg',
3833
- left: 'd25661e2214931d67f5ec385bf55ccd0/27_l.jpg',
3834
- up: 'd25661e2214931d67f5ec385bf55ccd0/27_u.jpg',
3835
- down: 'd25661e2214931d67f5ec385bf55ccd0/27_d.jpg',
3836
- front: 'd25661e2214931d67f5ec385bf55ccd0/27_f.jpg',
3837
- back: 'd25661e2214931d67f5ec385bf55ccd0/27_b.jpg',
3838
- checksums: null,
3839
- work_code: 'PrXel3aqGbp34JQn'
3840
- }, {
3841
- id: 19127778,
3842
- user_id: 1000000026028615,
3843
- work_id: 566944,
3844
- panorama_id: 849430,
3845
- derived_id: 1545381672,
3846
- algorithm_type: 0,
3847
- index: 28,
3848
- right: '5b23d0bf74f014cbfa74ebfc35b8cdf9/28_r.jpg',
3849
- left: '5b23d0bf74f014cbfa74ebfc35b8cdf9/28_l.jpg',
3850
- up: '5b23d0bf74f014cbfa74ebfc35b8cdf9/28_u.jpg',
3851
- down: '5b23d0bf74f014cbfa74ebfc35b8cdf9/28_d.jpg',
3852
- front: '5b23d0bf74f014cbfa74ebfc35b8cdf9/28_f.jpg',
3853
- back: '5b23d0bf74f014cbfa74ebfc35b8cdf9/28_b.jpg',
3854
- checksums: null,
3855
- work_code: 'PrXel3aqGbp34JQn'
3856
- }, {
3857
- id: 19127779,
3858
- user_id: 1000000026028615,
3859
- work_id: 566944,
3860
- panorama_id: 849430,
3861
- derived_id: 1545381752,
3862
- algorithm_type: 0,
3863
- index: 29,
3864
- right: 'a9d5d77c6d679e2711885fab7260d875/29_r.jpg',
3865
- left: 'a9d5d77c6d679e2711885fab7260d875/29_l.jpg',
3866
- up: 'a9d5d77c6d679e2711885fab7260d875/29_u.jpg',
3867
- down: 'a9d5d77c6d679e2711885fab7260d875/29_d.jpg',
3868
- front: 'a9d5d77c6d679e2711885fab7260d875/29_f.jpg',
3869
- back: 'a9d5d77c6d679e2711885fab7260d875/29_b.jpg',
3870
- checksums: null,
3871
- work_code: 'PrXel3aqGbp34JQn'
3872
- }, {
3873
- id: 19127780,
3874
- user_id: 1000000026028615,
3875
- work_id: 566944,
3876
- panorama_id: 849430,
3877
- derived_id: 1545381841,
3878
- algorithm_type: 0,
3879
- index: 30,
3880
- right: '965e166215599bc7aa06894f35069003/30_r.jpg',
3881
- left: '965e166215599bc7aa06894f35069003/30_l.jpg',
3882
- up: '965e166215599bc7aa06894f35069003/30_u.jpg',
3883
- down: '965e166215599bc7aa06894f35069003/30_d.jpg',
3884
- front: '965e166215599bc7aa06894f35069003/30_f.jpg',
3885
- back: '965e166215599bc7aa06894f35069003/30_b.jpg',
3886
- checksums: null,
3887
- work_code: 'PrXel3aqGbp34JQn'
3888
- }],
3889
- work_code: 'PrXel3aqGbp34JQn'
3890
- },
3891
- modelAsync: false
3892
- };
3893
- exports["default"] = _default;
3894
- var floorplanServerData = {
3895
- outlines: [{
3896
- index: 0,
3897
- checksum: '',
3898
- url: 'https://vrlab-public.ljcdn.com/release/vrcustomer/566944/floorplan/outline_0_4bd4463c-3e2f-4420-be5f-9331e14a415a.png'
3899
- }],
3900
- computed_data: {
3901
- bounding: {
3902
- min: {
3903
- x: 34260,
3904
- y: 31320
3905
- },
3906
- max: {
3907
- x: 47825,
3908
- y: 49570
3909
- },
3910
- origin: {
3911
- x: 37500,
3912
- y: 37500
3913
- }
3914
- },
3915
- entrance: {
3916
- rad: 3.1416,
3917
- room_id: 'u-314bc053-b47e-415d-9a99-bede9d43e701',
3918
- position: {
3919
- x: 35260,
3920
- y: 40275
3921
- },
3922
- north_rad: 7.574736300065597,
3923
- floor_index: 0,
3924
- position_in_image: {
3925
- x: 0.07371913011426465,
3926
- y: 0.5093150684931507
3927
- }
3928
- },
3929
- floor_datas: [{
3930
- floor_index: 0,
3931
- floor_name: '一层',
3932
- rooms: [{
3933
- id: 'u-bbc9e687-41a2-4cd3-a053-2c6428ee2fb5',
3934
- name: '阳台',
3935
- path: [{
3936
- x: 43100,
3937
- y: 48570
3938
- }, {
3939
- x: 46825,
3940
- y: 48570
3941
- }, {
3942
- x: 46825,
3943
- y: 47025
3944
- }, {
3945
- x: 46685,
3946
- y: 47025
3947
- }, {
3948
- x: 43100,
3949
- y: 47025
3950
- }],
3951
- size: 5137125,
3952
- room_type: '100900000005',
3953
- floor_type: 4,
3954
- room_label: {
3955
- position: {
3956
- x: 44962.5,
3957
- y: 47797.5
3958
- },
3959
- position_in_image: {
3960
- x: 0.7889789900479174,
3961
- y: 0.09712328767123288
3962
- }
3963
- },
3964
- observer_indexs: [29, 30]
3965
- }, {
3966
- id: 'u-15a3e579-8e5f-4fc0-1fdf-54bb3cf876f0',
3967
- name: '卧室A',
3968
- path: [{
3969
- x: 35260,
3970
- y: 32320
3971
- }, {
3972
- x: 35260,
3973
- y: 37105
3974
- }, {
3975
- x: 37025,
3976
- y: 37105
3977
- }, {
3978
- x: 38390,
3979
- y: 37105
3980
- }, {
3981
- x: 38390,
3982
- y: 34775
3983
- }, {
3984
- x: 38390,
3985
- y: 32320
3986
- }],
3987
- size: 14011050,
3988
- room_type: '100900000001',
3989
- floor_type: 0,
3990
- room_label: {
3991
- position: {
3992
- x: 36825,
3993
- y: 34712.5
3994
- },
3995
- position_in_image: {
3996
- x: 0.18908956874308883,
3997
- y: 0.8141095890410959
3998
- }
3999
- },
4000
- observer_indexs: [5, 6, 7]
4001
- }, {
4002
- id: 'u-4c0d1e30-15db-46ff-c17d-be896fd5f4d2',
4003
- name: '卧室B',
4004
- path: [{
4005
- x: 45115,
4006
- y: 34035
4007
- }, {
4008
- x: 43040,
4009
- y: 34035
4010
- }, {
4011
- x: 43040,
4012
- y: 38775
4013
- }, {
4014
- x: 44275,
4015
- y: 38775
4016
- }, {
4017
- x: 46545,
4018
- y: 38775
4019
- }, {
4020
- x: 46545,
4021
- y: 34795
4022
- }, {
4023
- x: 45115,
4024
- y: 34795
4025
- }],
4026
- size: 14551900,
4027
- room_type: '100900000001',
4028
- floor_type: 0,
4029
- room_label: {
4030
- position: {
4031
- x: 44792.07214355469,
4032
- y: 36685.57067871094
4033
- },
4034
- position_in_image: {
4035
- x: 0.7764151967235302,
4036
- y: 0.7059961271939212
4037
- }
4038
- },
4039
- observer_indexs: [19, 20, 21, 22]
4040
- }, {
4041
- id: 'u-f01f73ef-9f5a-4f5a-f80e-fe7b232ad0cd',
4042
- name: '客厅',
4043
- path: [{
4044
- x: 43100,
4045
- y: 41235
4046
- }, {
4047
- x: 43100,
4048
- y: 43375
4049
- }, {
4050
- x: 44275,
4051
- y: 43375
4052
- }, {
4053
- x: 44275,
4054
- y: 40725
4055
- }, {
4056
- x: 44275,
4057
- y: 38775
4058
- }, {
4059
- x: 43040,
4060
- y: 38775
4061
- }, {
4062
- x: 43040,
4063
- y: 34035
4064
- }, {
4065
- x: 39875,
4066
- y: 34035
4067
- }, {
4068
- x: 39875,
4069
- y: 34775
4070
- }, {
4071
- x: 38390,
4072
- y: 34775
4073
- }, {
4074
- x: 38390,
4075
- y: 37105
4076
- }, {
4077
- x: 38390,
4078
- y: 41235
4079
- }],
4080
- size: 36121100,
4081
- room_type: '100900000002',
4082
- floor_type: 1,
4083
- room_label: {
4084
- position: {
4085
- x: 40716.84509277344,
4086
- y: 38906.36047363281
4087
- },
4088
- position_in_image: {
4089
- x: 0.4759930035218163,
4090
- y: 0.5843090151434075
4091
- }
4092
- },
4093
- observer_indexs: [8, 9, 10, 11, 12, 13, 14, 15, 23]
4094
- }, {
4095
- id: 'u-8e420bd8-4848-4790-acc5-b7cbb567ba27',
4096
- name: '卧室C',
4097
- path: [{
4098
- x: 43100,
4099
- y: 47025
4100
- }, {
4101
- x: 46685,
4102
- y: 47025
4103
- }, {
4104
- x: 46685,
4105
- y: 43375
4106
- }, {
4107
- x: 44275,
4108
- y: 43375
4109
- }, {
4110
- x: 43100,
4111
- y: 43375
4112
- }],
4113
- size: 12231450,
4114
- room_type: '100900000001',
4115
- floor_type: 0,
4116
- room_label: {
4117
- position: {
4118
- x: 44892.5,
4119
- y: 45200
4120
- },
4121
- position_in_image: {
4122
- x: 0.7838186509399189,
4123
- y: 0.23945205479452056
4124
- }
4125
- },
4126
- observer_indexs: [26, 27, 28]
4127
- }, {
4128
- id: 'u-36a4d793-15b2-40ef-7bd5-dd0d355daaf9',
4129
- name: '卫生间B',
4130
- path: [{
4131
- x: 46545,
4132
- y: 38775
4133
- }, {
4134
- x: 44275,
4135
- y: 38775
4136
- }, {
4137
- x: 44275,
4138
- y: 40725
4139
- }, {
4140
- x: 46725,
4141
- y: 40725
4142
- }, {
4143
- x: 46725,
4144
- y: 38775
4145
- }],
4146
- size: 4263900,
4147
- room_type: '100900000004',
4148
- floor_type: 3,
4149
- room_label: {
4150
- position: {
4151
- x: 45500,
4152
- y: 39750
4153
- },
4154
- position_in_image: {
4155
- x: 0.8286030224843347,
4156
- y: 0.538082191780822
4157
- }
4158
- },
4159
- observer_indexs: [16, 17, 18]
4160
- }, {
4161
- id: 'u-1c7277ec-c593-4a54-b012-9478528acaa4',
4162
- name: '厨房',
4163
- path: [{
4164
- x: 46725,
4165
- y: 43375
4166
- }, {
4167
- x: 46725,
4168
- y: 40725
4169
- }, {
4170
- x: 44275,
4171
- y: 40725
4172
- }, {
4173
- x: 44275,
4174
- y: 43375
4175
- }, {
4176
- x: 46685,
4177
- y: 43375
4178
- }],
4179
- size: 5894900,
4180
- room_type: '100900000003',
4181
- floor_type: 3,
4182
- room_label: {
4183
- position: {
4184
- x: 45500,
4185
- y: 42050
4186
- },
4187
- position_in_image: {
4188
- x: 0.8286030224843347,
4189
- y: 0.41205479452054794
4190
- }
4191
- },
4192
- observer_indexs: [24, 25]
4193
- }, {
4194
- id: 'u-314bc053-b47e-415d-9a99-bede9d43e701',
4195
- name: '入户花园',
4196
- path: [{
4197
- x: 35260,
4198
- y: 41235
4199
- }, {
4200
- x: 38390,
4201
- y: 41235
4202
- }, {
4203
- x: 38390,
4204
- y: 37105
4205
- }, {
4206
- x: 37025,
4207
- y: 37105
4208
- }, {
4209
- x: 37025,
4210
- y: 37975
4211
- }, {
4212
- x: 37070.54223582139,
4213
- y: 38483.9432046651
4214
- }, {
4215
- x: 36821.541541792336,
4216
- y: 38930.14488013421
4217
- }, {
4218
- x: 36364.48821029658,
4219
- y: 39158.617051277695
4220
- }, {
4221
- x: 35858.139534883725,
4222
- y: 39090
4223
- }, {
4224
- x: 35260,
4225
- y: 39090
4226
- }],
4227
- size: 8636427.277760081,
4228
- room_type: '100900000012',
4229
- floor_type: 2,
4230
- room_label: {
4231
- position: {
4232
- x: 37209.754638671875,
4233
- y: 40055.040283203125
4234
- },
4235
- position_in_image: {
4236
- x: 0.21745334601340766,
4237
- y: 0.5213676557148973
4238
- }
4239
- },
4240
- observer_indexs: [0, 1, 2]
4241
- }, {
4242
- id: 'u-43728cf0-28bd-43d8-4cc2-f81b7de9f99f',
4243
- name: '卫生间',
4244
- path: [{
4245
- x: 35260,
4246
- y: 37105
4247
- }, {
4248
- x: 35260,
4249
- y: 39090
4250
- }, {
4251
- x: 35858.139534883725,
4252
- y: 39090
4253
- }, {
4254
- x: 36364.48821029657,
4255
- y: 39158.6170512777
4256
- }, {
4257
- x: 36821.541541792336,
4258
- y: 38930.14488013421
4259
- }, {
4260
- x: 37070.54223582139,
4261
- y: 38483.9432046651
4262
- }, {
4263
- x: 37025,
4264
- y: 37975
4265
- }, {
4266
- x: 37025,
4267
- y: 37105
4268
- }],
4269
- size: 3163481.920090027,
4270
- room_type: '100900000004',
4271
- floor_type: 3,
4272
- room_label: {
4273
- position: {
4274
- x: 36152.18505859375,
4275
- y: 38228.73779296875
4276
- },
4277
- position_in_image: {
4278
- x: 0.13949023653474013,
4279
- y: 0.6214390250428082
4280
- }
4281
- },
4282
- observer_indexs: [3, 4]
4283
- }]
4284
- }],
4285
- observers: [{
4286
- index: 0,
4287
- floor_index: 0,
4288
- position: {
4289
- x: 37602.34100371599,
4290
- y: 39862.4799251556
4291
- },
4292
- position_in_image: {
4293
- x: 0.24639447133918113,
4294
- y: 0.5319189082106519
4295
- }
4296
- }, {
4297
- index: 1,
4298
- floor_index: 0,
4299
- position: {
4300
- x: 36011.7499828339,
4301
- y: 40120.3200817108
4302
- },
4303
- position_in_image: {
4304
- x: 0.12913748491219304,
4305
- y: 0.5177906804542027
4306
- }
4307
- }, {
4308
- index: 2,
4309
- floor_index: 0,
4310
- position: {
4311
- x: 37624.67800080776,
4312
- y: 37683.15100669861
4313
- },
4314
- position_in_image: {
4315
- x: 0.24804113533415129,
4316
- y: 0.6513341914137749
4317
- }
4318
- }, {
4319
- index: 3,
4320
- floor_index: 0,
4321
- position: {
4322
- x: 36732.8240275383,
4323
- y: 37816.37299060822
4324
- },
4325
- position_in_image: {
4326
- x: 0.18229443623577588,
4327
- y: 0.6440343566790016
4328
- }
4329
- }, {
4330
- index: 4,
4331
- floor_index: 0,
4332
- position: {
4333
- x: 35866.2300109863,
4334
- y: 37900.71099996567
4335
- },
4336
- position_in_image: {
4337
- x: 0.11840987917333572,
4338
- y: 0.6394130958922922
4339
- }
4340
- }, {
4341
- index: 5,
4342
- floor_index: 0,
4343
- position: {
4344
- x: 36595.60698270798,
4345
- y: 34812.0601177216
4346
- },
4347
- position_in_image: {
4348
- x: 0.17217891505403446,
4349
- y: 0.8086542401248438
4350
- }
4351
- }, {
4352
- index: 6,
4353
- floor_index: 0,
4354
- position: {
4355
- x: 37575.182400643826,
4356
- y: 36082.9800367355
4357
- },
4358
- position_in_image: {
4359
- x: 0.24439236274558243,
4360
- y: 0.7390147925076439
4361
- }
4362
- }, {
4363
- index: 7,
4364
- floor_index: 0,
4365
- position: {
4366
- x: 38016.83098077774,
4367
- y: 33770.4598903656
4368
- },
4369
- position_in_image: {
4370
- x: 0.27695031188925473,
4371
- y: 0.8657282251854466
4372
- }
4373
- }, {
4374
- index: 8,
4375
- floor_index: 0,
4376
- position: {
4377
- x: 41740.3697967529,
4378
- y: 38393.58198642731
4379
- },
4380
- position_in_image: {
4381
- x: 0.5514463543496425,
4382
- y: 0.6124064664971338
4383
- }
4384
- }, {
4385
- index: 9,
4386
- floor_index: 0,
4387
- position: {
4388
- x: 39924.8399734497,
4389
- y: 38314.32402133942
4390
- },
4391
- position_in_image: {
4392
- x: 0.41760707507922595,
4393
- y: 0.6167493686937306
4394
- }
4395
- }, {
4396
- index: 10,
4397
- floor_index: 0,
4398
- position: {
4399
- x: 39292.4799919128,
4400
- y: 39621.4900016785
4401
- },
4402
- position_in_image: {
4403
- x: 0.37099004732125307,
4404
- y: 0.5451238355244655
4405
- }
4406
- }, {
4407
- index: 11,
4408
- floor_index: 0,
4409
- position: {
4410
- x: 41456.5999507904,
4411
- y: 36958.15801620483
4412
- },
4413
- position_in_image: {
4414
- x: 0.530527088152628,
4415
- y: 0.6910598347285026
4416
- }
4417
- }, {
4418
- index: 12,
4419
- floor_index: 0,
4420
- position: {
4421
- x: 41400.9599685669,
4422
- y: 35855.5999994278
4423
- },
4424
- position_in_image: {
4425
- x: 0.5264253570635387,
4426
- y: 0.751473972634093
4427
- }
4428
- }, {
4429
- index: 13,
4430
- floor_index: 0,
4431
- position: {
4432
- x: 41229.6500205994,
4433
- y: 34796.3700294495
4434
- },
4435
- position_in_image: {
4436
- x: 0.5137965367194546,
4437
- y: 0.8095139709890685
4438
- }
4439
- }, {
4440
- index: 14,
4441
- floor_index: 0,
4442
- position: {
4443
- x: 43697.1502304077,
4444
- y: 39346.8899726868
4445
- },
4446
- position_in_image: {
4447
- x: 0.6956985057432878,
4448
- y: 0.560170412455518
4449
- }
4450
- }, {
4451
- index: 15,
4452
- floor_index: 0,
4453
- position: {
4454
- x: 42763.0200386047,
4455
- y: 40150.1700878143
4456
- },
4457
- position_in_image: {
4458
- x: 0.6268352405900995,
4459
- y: 0.5161550636814081
4460
- }
4461
- }, {
4462
- index: 16,
4463
- floor_index: 0,
4464
- position: {
4465
- x: 44727.5500297546,
4466
- y: 39578.2299041748
4467
- },
4468
- position_in_image: {
4469
- x: 0.7716586826210543,
4470
- y: 0.5474942518260385
4471
- }
4472
- }, {
4473
- index: 17,
4474
- floor_index: 0,
4475
- position: {
4476
- x: 46051.9504547119,
4477
- y: 39351.9300222397
4478
- },
4479
- position_in_image: {
4480
- x: 0.8692923298718688,
4481
- y: 0.5598942453567288
4482
- }
4483
- }, {
4484
- index: 18,
4485
- floor_index: 0,
4486
- position: {
4487
- x: 46245.34034729,
4488
- y: 40118.9498901367
4489
- },
4490
- position_in_image: {
4491
- x: 0.8835488645256176,
4492
- y: 0.5178657594445646
4493
- }
4494
- }, {
4495
- index: 19,
4496
- floor_index: 0,
4497
- position: {
4498
- x: 43783.8201522827,
4499
- y: 38139.4180059433
4500
- },
4501
- position_in_image: {
4502
- x: 0.7020877369909841,
4503
- y: 0.6263332599483125
4504
- }
4505
- }, {
4506
- index: 20,
4507
- floor_index: 0,
4508
- position: {
4509
- x: 45200.749874115,
4510
- y: 37589.39430117607
4511
- },
4512
- position_in_image: {
4513
- x: 0.8065425635175081,
4514
- y: 0.6564715451410372
4515
- }
4516
- }, {
4517
- index: 21,
4518
- floor_index: 0,
4519
- position: {
4520
- x: 43855.4801940918,
4521
- y: 36349.6500253677
4522
- },
4523
- position_in_image: {
4524
- x: 0.7073704529371027,
4525
- y: 0.7244027383360164
4526
- }
4527
- }, {
4528
- index: 22,
4529
- floor_index: 0,
4530
- position: {
4531
- x: 43784.2202186584,
4532
- y: 34655.6000709534
4533
- },
4534
- position_in_image: {
4535
- x: 0.7021172295361889,
4536
- y: 0.8172273933724166
4537
- }
4538
- }, {
4539
- index: 23,
4540
- floor_index: 0,
4541
- position: {
4542
- x: 43748.0797767639,
4543
- y: 41990.9100532532
4544
- },
4545
- position_in_image: {
4546
- x: 0.6994529875977812,
4547
- y: 0.4152925998217423
4548
- }
4549
- }, {
4550
- index: 24,
4551
- floor_index: 0,
4552
- position: {
4553
- x: 44575.6101608276,
4554
- y: 42069.2000389099
4555
- },
4556
- position_in_image: {
4557
- x: 0.7604578076540803,
4558
- y: 0.4110027375939782
4559
- }
4560
- }, {
4561
- index: 25,
4562
- floor_index: 0,
4563
- position: {
4564
- x: 45727.1003723145,
4565
- y: 42027.830123901396
4566
- },
4567
- position_in_image: {
4568
- x: 0.845344664379985,
4569
- y: 0.4132695822519783
4570
- }
4571
- }, {
4572
- index: 26,
4573
- floor_index: 0,
4574
- position: {
4575
- x: 43867.8498268127,
4576
- y: 44111.1102104187
4577
- },
4578
- position_in_image: {
4579
- x: 0.7082823315011205,
4580
- y: 0.2991172487441808
4581
- }
4582
- }, {
4583
- index: 27,
4584
- floor_index: 0,
4585
- position: {
4586
- x: 44081.4800262451,
4587
- y: 46114.709854126
4588
- },
4589
- position_in_image: {
4590
- x: 0.7240309639694141,
4591
- y: 0.18933096689720558
4592
- }
4593
- }, {
4594
- index: 28,
4595
- floor_index: 0,
4596
- position: {
4597
- x: 45349.289894104004,
4598
- y: 46556.360244751
4599
- },
4600
- position_in_image: {
4601
- x: 0.8174928045782531,
4602
- y: 0.16513094549309598
4603
- }
4604
- }, {
4605
- index: 29,
4606
- floor_index: 0,
4607
- position: {
4608
- x: 44388.679981231704,
4609
- y: 47635.600090027
4610
- },
4611
- position_in_image: {
4612
- x: 0.7466774774221676,
4613
- y: 0.10599451561495885
4614
- }
4615
- }, {
4616
- index: 30,
4617
- floor_index: 0,
4618
- position: {
4619
- x: 45387.9499435425,
4620
- y: 47789.89982605
4621
- },
4622
- position_in_image: {
4623
- x: 0.8203427897930338,
4624
- y: 0.09753973555890405
4625
- }
4626
- }]
4627
- }
4628
- };
4629
- exports.floorplanServerData = floorplanServerData;
4630
- var treasurePluginData = {
4631
- treasures: [{
4632
- id: 'a',
4633
- type: 0,
4634
- position: {
4635
- x: 3.4688,
4636
- y: -0.5180200000000003,
4637
- z: -2.48252
4638
- }
4639
- }, {
4640
- id: 'b',
4641
- type: 1,
4642
- position: {
4643
- x: 2.80488,
4644
- y: -0.867187,
4645
- z: 0.866459
4646
- }
4647
- }]
4648
- };
4649
- exports.treasurePluginData = treasurePluginData;