@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,966 +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.work = void 0;
9
- var work = {
10
- _signature: 'RnNbTWmSgvWN3I9uo2wYAw7fMJfrEipTqd9tm/fYI3jUoMZIwEVJBU6Zh0wxv4X/AHGCJHwhoomn/IUYuzXsFrRxP2HiecHyU9jJFZTOVOxqdcW9k0xtKavcOEj0kLhbFfExEf0wj0dGmeELPVRQ4NdQ+YB4teXY/tLPVxbAB8U=',
11
- allow_hosts: ['*'],
12
- base_url: 'https://vrlab-public.ljcdn.com/release/auto3dhd/1f96c930c0cb317bad4d20e95c6c0902/',
13
- certificate: '-----BEGIN CERTIFICATE-----\nMIIEMzCCAhsCCQDYAS/7ATZRmTANBgkqhkiG9w0BAQsFADCBkzELMAkGA1UEBhMC\nQ04xEDAOBgNVBAgMB0JlaWppbmcxEDAOBgNVBAcMB0JlaWppbmcxFDASBgNVBAoM\nC2xpYW5qaWEuY29tMRAwDgYDVQQLDAdSZWFsc2VlMREwDwYDVQQDDAhIYXJkd2Fy\nZTElMCMGCSqGSIb3DQEJARYWbml1aGFpcWluZ0BsaWFuamlhLmNvbTAeFw0yMTA5\nMTAwNTIwMDBaFw0zMTA5MDgwNTIwMDBaMIGmMQswCQYDVQQGEwJDTjEQMA4GA1UE\nCAwHQmVpSmluZzEQMA4GA1UEBwwHQmVpSmluZzEQMA4GA1UECgwHUmVhbHNlZTEZ\nMBcGA1UECwwQUmVhbHNlZUFwcEdldHdheTEgMB4GA1UEAwwXYXBwLWdhdGV3YXku\ncmVhbHNlZS5jb20xJDAiBgkqhkiG9w0BCQEWFWRldmVsb3BlckByZWFsc2VlLmNv\nbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuv/y3Ezsy/wh3LCA8vomPbgI\nSO9iO5kyR+oAetklD+epMU6J/ZbvTDEomZxuS5iyyKGBupzAh2ZFLIy7tsE71Vx1\nIIvT7Kdyq66lMU4YzdrpKUcxv7oOQnO8DA1orKluNa4jkyXBywHKs/Q+20LVc+RD\ngKXqFGJUdo8mAxEScs0CAwEAATANBgkqhkiG9w0BAQsFAAOCAgEAkMxsU4VLPd4J\n0rElBNBIyqPtvnlTs6VkhIK0l4oM58wtDKc1uG9UPSX5j29NguZM6LOe0jCsU2Vg\nEpUseMWQjx4o2yBg7MokQyjWc1zu6PppKhQ+RqHQy/biJ2zsIMpX3oMASXffvnW5\nn4Bjyo1JdDJiLm1fLvLlVVxQoraJD+rtpqWDEYixGVREUo5OIL5Y5dVjkHG2r9RQ\nQuu3yEiyr9gAW8yhz3YR6/sJ6boyGK8NC0v8Jih7NnCdT+9ML+3jn3P5F3TeXdSf\nVeYIm5oWAOTe3AjjKP8ARMb2RYACjg80/AcowD/dvRRjbwQmyucUNug2pXJynXpD\nNfx1IBmUmzSAT1Z5yNuY/f3VRBJvmIQ6Jpmef+g0/wUJpyS4SObguItyYlFPLqRH\nK1oKqNX/uV0GWWEQl6Lml986TzlHxc4ljtHBhjzlKYIYYZLWWipk4JiB8hxJcTK+\ncrgvclEQSxFlmAyoqxYFClrOOsPqZJdBhDTvoUWnnWuJLQt7DLHpyInp+S75Gg3o\n0zgHpt9m26B3YbjQGYMQlYmhl2VLQa+Ey0W8UZQXLcTvoRT4p+8crqr6cNNsxCyZ\nm08vBbEMIMvhBeLQvpM75oaMBmelegipFl2eelxVIHdGJWoyJSZQUdXN0uSidhZp\nI7AIgzhqK1Ku/IXK0OSXJonn+/9X/VI=\n-----END CERTIFICATE-----',
14
- create_time: '2018-11-13T20:32:11+08:00',
15
- expire_at: '1955514988672',
16
- initial: {
17
- flag_position: [],
18
- fov: 95,
19
- heading: -0.41768147852158,
20
- latitude: 0,
21
- longitude: 2.6243701289278,
22
- pano: 27,
23
- pano_index: 27
24
- },
25
- model: {
26
- file_url: 'model/auto3d-OCpOIMyjFvzBNfIDwQQavA.at3d',
27
- material_base_url: 'https://vrlab-public.ljcdn.com/release/auto3dhd/1f96c930c0cb317bad4d20e95c6c0902/materials/',
28
- material_textures: [],
29
- modify_time: '2018-11-13T21:19:03+08:00',
30
- type: 0
31
- },
32
- observers: [{
33
- accessible_nodes: [1, 2, 3, 4, 8, 9, 13, 14, 16, 17, 19, 22, 23],
34
- floor_index: 0,
35
- index: 0,
36
- offset_point_count: 0,
37
- position: [-0.061422601342201, 0.16352467991412, -0.39339101314545],
38
- quaternion: {
39
- w: 0.13962456801968,
40
- x: 0.00030834870788063,
41
- y: -0.99017111070174,
42
- z: 0.0081275361526216
43
- },
44
- standing_position: [-0.061422601342201, -1.1149431441303, -0.39339101314545],
45
- visible_nodes: [1, 2, 3, 4, 8, 9, 13, 14, 16, 17, 19, 22, 23]
46
- }, {
47
- accessible_nodes: [0, 2, 3, 8, 9, 13, 14, 22, 23],
48
- floor_index: 0,
49
- index: 1,
50
- offset_point_count: 0,
51
- position: [-0.20179200172424, 0.16960951899993, 0.78376597166061],
52
- quaternion: {
53
- w: -0.99216723233646,
54
- x: -0.0022082463670744,
55
- y: 0.12481062821384,
56
- z: -0.0046492375518527
57
- },
58
- standing_position: [-0.20179200172424, -1.1144284868539, 0.78376597166061],
59
- visible_nodes: [0, 2, 3, 8, 9, 13, 14, 22, 23]
60
- }, {
61
- accessible_nodes: [0, 1, 3, 8, 9, 13, 14, 22, 23],
62
- floor_index: 0,
63
- index: 2,
64
- offset_point_count: 0,
65
- position: [-0.42297399044037, 0.21199780151248, 3.0149300098419],
66
- quaternion: {
67
- w: -0.95150376625639,
68
- x: 0.00073293735893576,
69
- y: -0.30763103918259,
70
- z: 0.0017851735661294
71
- },
72
- standing_position: [-0.42297399044037, -1.1135578150721, 3.0149300098419],
73
- visible_nodes: [0, 1, 3, 8, 9, 13, 14, 22, 23]
74
- }, {
75
- accessible_nodes: [0, 1, 2, 14, 19],
76
- floor_index: 0,
77
- index: 3,
78
- offset_point_count: 0,
79
- position: [-1.9458199739456, 0.22001369863749, 2.9819600582123],
80
- quaternion: {
81
- w: -0.95533047796122,
82
- x: 0.01110699272139,
83
- y: 0.29532501026221,
84
- z: 0.0018582738162962
85
- },
86
- standing_position: [-1.9458199739456, -1.1089994203531, 2.9819600582123],
87
- visible_nodes: [0, 1, 2, 14, 19]
88
- }, {
89
- accessible_nodes: [0, 5, 7, 8, 28],
90
- floor_index: 0,
91
- index: 4,
92
- offset_point_count: 0,
93
- position: [-1.5342400074005, 0.17023300699831, -0.45365700125694],
94
- quaternion: {
95
- w: 0.68213616153909,
96
- x: -0.0046186427831286,
97
- y: -0.73119571027802,
98
- z: 0.0046667373142761
99
- },
100
- standing_position: [-1.5342400074005, -1.1145601113376, -0.45365700125694],
101
- visible_nodes: [0, 5, 7, 8, 28]
102
- }, {
103
- accessible_nodes: [4, 6, 7],
104
- floor_index: 0,
105
- index: 5,
106
- offset_point_count: 0,
107
- position: [-1.5311399698257, 0.16462189991027, -1.1482399702072],
108
- quaternion: {
109
- w: 0.22971461917287,
110
- x: -0.0035259251177396,
111
- y: -0.97316361794748,
112
- z: 0.013089263489382
113
- },
114
- standing_position: [-1.5311399698257, -1.1136698829964, -1.1482399702072],
115
- visible_nodes: [4, 6, 7]
116
- }, {
117
- accessible_nodes: [5, 7],
118
- floor_index: 0,
119
- index: 6,
120
- offset_point_count: 0,
121
- position: [-2.4376900196075, 0.1595591000095, -1.7043999433517],
122
- quaternion: {
123
- w: 0.73773289436245,
124
- x: -0.0024589410241579,
125
- y: -0.67508168062974,
126
- z: 0.0029737487396372
127
- },
128
- standing_position: [-2.4376900196075, -1.1159524381956, -1.7043999433517],
129
- visible_nodes: [5, 7]
130
- }, {
131
- accessible_nodes: [4, 5, 6],
132
- floor_index: 0,
133
- index: 7,
134
- offset_point_count: 0,
135
- position: [-1.3714799880981, 0.15933380004019, -1.9650499820709],
136
- quaternion: {
137
- w: -0.38610638181493,
138
- x: -0.0040454183228941,
139
- y: -0.92244100167505,
140
- z: -0.0028445042234751
141
- },
142
- standing_position: [-1.3714799880981, -1.1138011502728, -1.9650499820709],
143
- visible_nodes: [4, 5, 6]
144
- }, {
145
- accessible_nodes: [0, 1, 2, 4, 9, 13, 14, 15, 16, 17, 19, 22, 23, 25, 26],
146
- floor_index: 0,
147
- index: 8,
148
- offset_point_count: 0,
149
- position: [0.023838400840759, 0.16526260001585, -0.89029401540756],
150
- quaternion: {
151
- w: -0.98615867745533,
152
- x: -0.007946923120294,
153
- y: 0.16561053782559,
154
- z: -0.0010266499009948
155
- },
156
- standing_position: [0.023838400840759, -1.1138396341092, -0.89029401540756],
157
- visible_nodes: [0, 1, 2, 4, 9, 13, 14, 15, 16, 17, 19, 22, 23, 25, 26]
158
- }, {
159
- accessible_nodes: [0, 1, 2, 8, 13, 14, 15, 22, 23, 25, 27, 28, 29, 30, 31, 36, 37, 38],
160
- floor_index: 0,
161
- index: 9,
162
- offset_point_count: 0,
163
- position: [-0.0046279900707304, 0.16606310995296, -2.3799200057983],
164
- quaternion: {
165
- w: 0.091630737738077,
166
- x: -0.0052335899448789,
167
- y: -0.99576834056896,
168
- z: 0.0046725311551319
169
- },
170
- standing_position: [-0.0046279900707304, -1.11465684941, -2.3799200057983],
171
- visible_nodes: [0, 1, 2, 8, 13, 14, 15, 22, 23, 25, 27, 28, 29, 30, 31, 36, 37, 38]
172
- }, {
173
- accessible_nodes: [11, 12, 13, 15, 22, 31, 32, 33, 36],
174
- floor_index: 0,
175
- index: 10,
176
- offset_point_count: 0,
177
- position: [-0.62810498476028, 0.18291660033166, -3.9934298992157],
178
- quaternion: {
179
- w: 0.48410152695901,
180
- x: -0.0043658301679068,
181
- y: -0.87500068971062,
182
- z: 0.00066268824225272
183
- },
184
- standing_position: [-0.62810498476028, -1.1144965302819, -3.9934298992157],
185
- visible_nodes: [11, 12, 13, 15, 22, 31, 32, 33, 36]
186
- }, {
187
- accessible_nodes: [10, 12, 13],
188
- floor_index: 0,
189
- index: 11,
190
- offset_point_count: 0,
191
- position: [-1.4705899953842, 0.20175109997392, -4.0283899307251],
192
- quaternion: {
193
- w: 0.4810584100155,
194
- x: -0.020101880107171,
195
- y: -0.87640911977118,
196
- z: -0.009261631198153
197
- },
198
- standing_position: [-1.4705899953842, -1.1145734006122, -4.0283899307251],
199
- visible_nodes: [10, 12, 13]
200
- }, {
201
- accessible_nodes: [10, 11, 13],
202
- floor_index: 0,
203
- index: 12,
204
- offset_point_count: 0,
205
- position: [-2.3512101173401, 0.22203739926219, -4.0672597885132],
206
- quaternion: {
207
- w: 0.23229097009231,
208
- x: -0.030569886682639,
209
- y: -0.97203834853641,
210
- z: -0.015742796798852
211
- },
212
- standing_position: [-2.3512101173401, -1.1097382993192, -4.0672597885132],
213
- visible_nodes: [10, 11, 13]
214
- }, {
215
- accessible_nodes: [0, 1, 2, 8, 9, 10, 11, 12, 14, 22, 23, 25, 35],
216
- floor_index: 0,
217
- index: 13,
218
- offset_point_count: 0,
219
- position: [0.070386901497841, 0.17370415998623, -3.9735200405121],
220
- quaternion: {
221
- w: 0.0062610663032252,
222
- x: -0.0082642481362998,
223
- y: -0.9999336950851,
224
- z: 0.0050113736945618
225
- },
226
- standing_position: [0.070386901497841, -1.1142753220819, -3.9735200405121],
227
- visible_nodes: [0, 1, 2, 8, 9, 10, 11, 12, 14, 22, 23, 25, 35]
228
- }, {
229
- accessible_nodes: [0, 1, 2, 3, 8, 9, 13, 22, 23],
230
- floor_index: 0,
231
- index: 14,
232
- offset_point_count: 0,
233
- position: [-0.32789498567581, 0.18702429912984, 1.9271500110626],
234
- quaternion: {
235
- w: -0.99904146299386,
236
- x: 0.00095861381919648,
237
- y: -0.04375167018706,
238
- z: 0.0010132435493321
239
- },
240
- standing_position: [-0.32789498567581, -1.1136661470515, 1.9271500110626],
241
- visible_nodes: [0, 1, 2, 3, 8, 9, 13, 22, 23]
242
- }, {
243
- accessible_nodes: [8, 9, 10, 16, 17, 19, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38],
244
- floor_index: 0,
245
- index: 15,
246
- offset_point_count: 0,
247
- position: [1.0189499855042, 0.15936950042844, -2.0502800941467],
248
- quaternion: {
249
- w: -0.64010215871519,
250
- x: -0.0059226886044986,
251
- y: -0.76826633778317,
252
- z: -0.00098588247575439
253
- },
254
- standing_position: [1.0189499855042, -1.1144097739884, -2.0502800941467],
255
- visible_nodes: [8, 9, 10, 16, 17, 19, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38]
256
- }, {
257
- accessible_nodes: [0, 8, 15, 17, 20, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39],
258
- floor_index: 0,
259
- index: 16,
260
- offset_point_count: 0,
261
- position: [1.3176000118256, 0.17791108980775, -4.0597801208496],
262
- quaternion: {
263
- w: 0.0028752349417565,
264
- x: -0.0033486016800153,
265
- y: -0.99998614927475,
266
- z: 0.002866295052539
267
- },
268
- standing_position: [1.3176000118256, -1.114102102287, -4.0597801208496],
269
- visible_nodes: [0, 8, 15, 17, 20, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39]
270
- }, {
271
- accessible_nodes: [0, 8, 15, 16, 18, 19, 20, 26, 27, 30, 31, 32, 33, 40],
272
- floor_index: 0,
273
- index: 17,
274
- offset_point_count: 0,
275
- position: [2.568039894104, 0.1769206901826, -4.9692797660828],
276
- quaternion: {
277
- w: -0.099146498404677,
278
- x: -0.00033476118771046,
279
- y: -0.99502223107408,
280
- z: 0.010030450429294
281
- },
282
- standing_position: [2.568039894104, -1.1142785615434, -4.9692797660828],
283
- visible_nodes: [0, 8, 15, 16, 18, 19, 20, 26, 27, 30, 31, 32, 33, 40]
284
- }, {
285
- accessible_nodes: [17, 19, 20, 21, 26, 35, 36],
286
- floor_index: 0,
287
- index: 18,
288
- offset_point_count: 0,
289
- position: [1.787850022316, 0.1891434007138, -5.9949798583984],
290
- quaternion: {
291
- w: 0.057306208179414,
292
- x: -0.0051344561373221,
293
- y: -0.99834329492002,
294
- z: -0.0005498397965796
295
- },
296
- standing_position: [1.787850022316, -1.112025633889, -5.9949798583984],
297
- visible_nodes: [17, 19, 20, 21, 26, 35, 36]
298
- }, {
299
- accessible_nodes: [0, 3, 8, 15, 17, 18, 20, 21, 31, 32, 33, 34, 35, 36],
300
- floor_index: 0,
301
- index: 19,
302
- offset_point_count: 0,
303
- position: [2.8645300865173, 0.18545369997621, -6.1593599319458],
304
- quaternion: {
305
- w: 0.00026655375687382,
306
- x: -0.0032982463497319,
307
- y: -0.99999313799173,
308
- z: -0.0016668164461344
309
- },
310
- standing_position: [2.8645300865173, -1.110328626753, -6.1593599319458],
311
- visible_nodes: [0, 3, 8, 15, 17, 18, 20, 21, 31, 32, 33, 34, 35, 36]
312
- }, {
313
- accessible_nodes: [16, 17, 18, 19, 21],
314
- floor_index: 0,
315
- index: 20,
316
- offset_point_count: 0,
317
- position: [4.2707500457764, 0.18320790033787, -6.1276998519897],
318
- quaternion: {
319
- w: -0.54524111446613,
320
- x: -0.011334261455854,
321
- y: -0.83819333190488,
322
- z: -0.0039504150969474
323
- },
324
- standing_position: [4.2707500457764, -1.1141396911409, -6.1276998519897],
325
- visible_nodes: [16, 17, 18, 19, 21]
326
- }, {
327
- accessible_nodes: [18, 19, 20],
328
- floor_index: 0,
329
- index: 21,
330
- offset_point_count: 0,
331
- position: [5.3281002044678, 0.1821261999011, -6.0378198623657],
332
- quaternion: {
333
- w: -0.67793838109288,
334
- x: -0.015752891489082,
335
- y: -0.73490988498062,
336
- z: -0.0076704645214917
337
- },
338
- standing_position: [5.3281002044678, -1.1179949859082, -6.0378198623657],
339
- visible_nodes: [18, 19, 20]
340
- }, {
341
- accessible_nodes: [0, 1, 2, 8, 9, 10, 13, 14, 23, 24, 25],
342
- floor_index: 0,
343
- index: 22,
344
- offset_point_count: 0,
345
- position: [0.034609101712704, 0.17522817997262, -4.7508401870728],
346
- quaternion: {
347
- w: 0.31418104863939,
348
- x: -0.0057612088505972,
349
- y: -0.94934128335395,
350
- z: 0.0028636913377651
351
- },
352
- standing_position: [0.034609101712704, -1.1128518571956, -4.7508401870728],
353
- visible_nodes: [0, 1, 2, 8, 9, 10, 13, 14, 23, 24, 25]
354
- }, {
355
- accessible_nodes: [0, 1, 2, 8, 9, 13, 14, 22, 24, 25, 35],
356
- floor_index: 0,
357
- index: 23,
358
- offset_point_count: 0,
359
- position: [-0.23978899419308, 0.18832210086286, -5.7142000198364],
360
- quaternion: {
361
- w: 0.24876451201536,
362
- x: -0.0096941954767592,
363
- y: -0.96851247521255,
364
- z: -0.002413404327863
365
- },
366
- standing_position: [-0.23978899419308, -1.1087081307895, -5.7142000198364],
367
- visible_nodes: [0, 1, 2, 8, 9, 13, 14, 22, 24, 25, 35]
368
- }, {
369
- accessible_nodes: [22, 23, 25],
370
- floor_index: 0,
371
- index: 24,
372
- offset_point_count: 0,
373
- position: [-2.3227300643921, 0.24008899748325, -5.6792302131653],
374
- quaternion: {
375
- w: 0.66832588780061,
376
- x: -0.0057969455603833,
377
- y: -0.74381476749382,
378
- z: -0.0068194388646998
379
- },
380
- standing_position: [-2.3227300643921, -1.1107908449428, -5.6792302131653],
381
- visible_nodes: [22, 23, 25]
382
- }, {
383
- accessible_nodes: [8, 9, 13, 22, 23, 24, 35],
384
- floor_index: 0,
385
- index: 25,
386
- offset_point_count: 0,
387
- position: [-0.51694798469543, 0.2141049002111, -6.9845199584961],
388
- quaternion: {
389
- w: 0.24914508851585,
390
- x: -0.0090847611127828,
391
- y: -0.96840757809378,
392
- z: -0.0055627104321671
393
- },
394
- standing_position: [-0.51694798469543, -1.1114749480625, -6.9845199584961],
395
- visible_nodes: [8, 9, 13, 22, 23, 24, 35]
396
- }, {
397
- accessible_nodes: [8, 15, 16, 17, 18, 27, 28, 30, 31, 32, 33, 34, 35, 36],
398
- floor_index: 0,
399
- index: 26,
400
- offset_point_count: 0,
401
- position: [3.5125501155853, 0.17176651997026, -3.8793299198151],
402
- quaternion: {
403
- w: -0.99284179770347,
404
- x: -0.011378301607818,
405
- y: -0.11887548890127,
406
- z: -0.0020783134508938
407
- },
408
- standing_position: [3.5125501155853, -1.1140875133907, -3.8793299198151],
409
- visible_nodes: [8, 15, 16, 17, 18, 27, 28, 30, 31, 32, 33, 34, 35, 36]
410
- }, {
411
- accessible_nodes: [9, 15, 16, 17, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 40],
412
- floor_index: 0,
413
- index: 27,
414
- offset_point_count: 0,
415
- position: [3.6007699966431, 0.1610036297515, -1.8435800075531],
416
- quaternion: {
417
- w: 0.04792110037895,
418
- x: 0.0018143319728833,
419
- y: -0.99883214735669,
420
- z: 0.005883996951173
421
- },
422
- standing_position: [3.6007699966431, -1.1150546796363, -1.8435800075531],
423
- visible_nodes: [9, 15, 16, 17, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 40]
424
- }, {
425
- accessible_nodes: [4, 9, 15, 16, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38],
426
- floor_index: 0,
427
- index: 28,
428
- offset_point_count: 0,
429
- position: [2.252110004425, 0.15502600006759, -1.8256299495697],
430
- quaternion: {
431
- w: 0.76183554722107,
432
- x: 0.0078152418824451,
433
- y: -0.64769999663498,
434
- z: 0.0054991316328513
435
- },
436
- standing_position: [2.252110004425, -1.1143277335866, -1.8256299495697],
437
- visible_nodes: [4, 9, 15, 16, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38]
438
- }, {
439
- accessible_nodes: [9, 15, 27, 28],
440
- floor_index: 0,
441
- index: 29,
442
- offset_point_count: 0,
443
- position: [5.0177302360535, 0.17350385997444, -1.787750005722],
444
- quaternion: {
445
- w: -0.13764663966817,
446
- x: 0.0015681328970731,
447
- y: -0.99047080533677,
448
- z: 0.0043044729762866
449
- },
450
- standing_position: [5.0177302360535, -1.1138644864327, -1.787750005722],
451
- visible_nodes: [9, 15, 27, 28]
452
- }, {
453
- accessible_nodes: [9, 15, 16, 17, 26, 27, 28, 31, 32, 33, 34, 35, 36, 37],
454
- floor_index: 0,
455
- index: 30,
456
- offset_point_count: 0,
457
- position: [3.4546101093292, 0.17764311011881, 0.51372897624969],
458
- quaternion: {
459
- w: -0.99954706603789,
460
- x: 0.0086838279310398,
461
- y: -0.026737059601443,
462
- z: -0.010741514587071
463
- },
464
- standing_position: [3.4546101093292, -1.1143989633669, 0.51372897624969],
465
- visible_nodes: [9, 15, 16, 17, 26, 27, 28, 31, 32, 33, 34, 35, 36, 37]
466
- }, {
467
- accessible_nodes: [9, 10, 15, 16, 17, 19, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37],
468
- floor_index: 0,
469
- index: 31,
470
- offset_point_count: 0,
471
- position: [3.3814599514008, 0.17695014977828, 2.0127201080322],
472
- quaternion: {
473
- w: -0.99959381616133,
474
- x: -0.0033908423458877,
475
- y: -0.028286644108689,
476
- z: -0.00075074007637448
477
- },
478
- standing_position: [3.3814599514008, -1.1134522771436, 2.0127201080322],
479
- visible_nodes: [9, 10, 15, 16, 17, 19, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37]
480
- }, {
481
- accessible_nodes: [10, 15, 16, 17, 19, 26, 27, 28, 30, 31, 33, 34, 35, 36],
482
- floor_index: 0,
483
- index: 32,
484
- offset_point_count: 0,
485
- position: [2.8886001110077, 0.1860211995244, 3.6366400718689],
486
- quaternion: {
487
- w: -0.99331960144702,
488
- x: -0.00065969254297636,
489
- y: 0.11513767880942,
490
- z: -0.0076851922209148
491
- },
492
- standing_position: [2.8886001110077, -1.1131714193429, 3.6366400718689],
493
- visible_nodes: [10, 15, 16, 17, 19, 26, 27, 28, 30, 31, 33, 34, 35, 36]
494
- }, {
495
- accessible_nodes: [10, 15, 16, 17, 19, 26, 27, 28, 30, 31, 32, 34, 35, 36],
496
- floor_index: 0,
497
- index: 33,
498
- offset_point_count: 0,
499
- position: [3.2076699733734, 0.19573929913342, 4.3484802246094],
500
- quaternion: {
501
- w: -0.98428030164039,
502
- x: -0.0012984852210549,
503
- y: -0.17654387843245,
504
- z: -0.0047823794114585
505
- },
506
- standing_position: [3.2076699733734, -1.1140957906967, 4.3484802246094],
507
- visible_nodes: [10, 15, 16, 17, 19, 26, 27, 28, 30, 31, 32, 34, 35, 36]
508
- }, {
509
- accessible_nodes: [15, 16, 19, 26, 27, 28, 30, 31, 32, 33, 35, 36, 37],
510
- floor_index: 0,
511
- index: 34,
512
- offset_point_count: 0,
513
- position: [1.4031900167465, 0.18340760011226, 4.3706998825073],
514
- quaternion: {
515
- w: -0.90788356122068,
516
- x: -0.0012007457063201,
517
- y: 0.41899101499948,
518
- z: -0.013875703048753
519
- },
520
- standing_position: [1.4031900167465, -1.104525646811, 4.3706998825073],
521
- visible_nodes: [15, 16, 19, 26, 27, 28, 30, 31, 32, 33, 35, 36, 37]
522
- }, {
523
- accessible_nodes: [13, 15, 16, 18, 19, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 36, 37],
524
- floor_index: 0,
525
- index: 35,
526
- offset_point_count: 0,
527
- position: [1.8115400075912, 0.17368433003314, 3.1039500236511],
528
- quaternion: {
529
- w: -0.87394584439205,
530
- x: -0.005155279262812,
531
- y: 0.48579447010978,
532
- z: -0.013992861331914
533
- },
534
- standing_position: [1.8115400075912, -1.1093255555516, 3.1039500236511],
535
- visible_nodes: [13, 15, 16, 18, 19, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 36, 37]
536
- }, {
537
- accessible_nodes: [9, 10, 15, 16, 18, 19, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37],
538
- floor_index: 0,
539
- index: 36,
540
- offset_point_count: 0,
541
- position: [1.9640899896622, 0.16065779987723, 1.0025000572205],
542
- quaternion: {
543
- w: -0.94620292279387,
544
- x: -0.0045933013289402,
545
- y: 0.32353837635099,
546
- z: -0.0013592186736507
547
- },
548
- standing_position: [1.9640899896622, -1.1124429279821, 1.0025000572205],
549
- visible_nodes: [9, 10, 15, 16, 18, 19, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37]
550
- }, {
551
- accessible_nodes: [9, 15, 16, 28, 30, 31, 34, 35, 36, 38, 39, 40, 41],
552
- floor_index: 0,
553
- index: 37,
554
- offset_point_count: 0,
555
- position: [4.3053498268127, 0.17656762020662, 0.10714299976826],
556
- quaternion: {
557
- w: -0.99781949015438,
558
- x: -0.0036841564415893,
559
- y: -0.065560214625035,
560
- z: -0.0066751279009377
561
- },
562
- standing_position: [4.3053498268127, -1.114737183748, 0.10714299976826],
563
- visible_nodes: [9, 15, 16, 28, 30, 31, 34, 35, 36, 38, 39, 40, 41]
564
- }, {
565
- accessible_nodes: [9, 15, 16, 28, 37, 39, 40, 41],
566
- floor_index: 0,
567
- index: 38,
568
- offset_point_count: 0,
569
- position: [4.7436499595642, 0.17847234018147, 0.74456602334976],
570
- quaternion: {
571
- w: -0.99394290809093,
572
- x: -0.0051329418884285,
573
- y: 0.10936239922672,
574
- z: -0.0095402307843505
575
- },
576
- standing_position: [4.7436499595642, -1.111926013524, 0.74456602334976],
577
- visible_nodes: [9, 15, 16, 28, 37, 39, 40, 41]
578
- }, {
579
- accessible_nodes: [16, 37, 38, 40, 41],
580
- floor_index: 0,
581
- index: 39,
582
- offset_point_count: 0,
583
- position: [6.2270498275757, 0.21977269843221, 3.2221300601959],
584
- quaternion: {
585
- w: -0.95181904107943,
586
- x: 0.0043319816087702,
587
- y: -0.30632279450093,
588
- z: -0.013714869344725
589
- },
590
- standing_position: [6.2270498275757, -1.0623718051116, 3.2221300601959],
591
- visible_nodes: [16, 37, 38, 40, 41]
592
- }, {
593
- accessible_nodes: [17, 27, 37, 38, 39, 41],
594
- floor_index: 0,
595
- index: 40,
596
- offset_point_count: 0,
597
- position: [4.7016100883484, 0.17775858014822, 1.9344500303268],
598
- quaternion: {
599
- w: -0.9976291267454,
600
- x: -0.0038522687907323,
601
- y: -0.067733094589702,
602
- z: -0.011554567636489
603
- },
604
- standing_position: [4.7016100883484, -1.1112893983357, 1.9344500303268],
605
- visible_nodes: [17, 27, 37, 38, 39, 41]
606
- }, {
607
- accessible_nodes: [37, 38, 39, 40],
608
- floor_index: 0,
609
- index: 41,
610
- offset_point_count: 0,
611
- position: [4.6932501792908, 0.18685409992933, 3.0929698944092],
612
- quaternion: {
613
- w: -0.99725397643336,
614
- x: -0.0038665077666246,
615
- y: -0.072887646695392,
616
- z: -0.012528328253746
617
- },
618
- standing_position: [4.6932501792908, -1.1128281266347, 3.0929698944092],
619
- visible_nodes: [37, 38, 39, 40]
620
- }],
621
- panorama: {
622
- count: 42,
623
- list: [{
624
- back: 'images/cube_2048/0/d4db35a08ca12d67e7d4aadb25c1eb9f/0_b.jpg',
625
- down: 'images/cube_2048/0/d4db35a08ca12d67e7d4aadb25c1eb9f/0_d.jpg',
626
- front: 'images/cube_2048/0/d4db35a08ca12d67e7d4aadb25c1eb9f/0_f.jpg',
627
- index: 0,
628
- left: 'images/cube_2048/0/d4db35a08ca12d67e7d4aadb25c1eb9f/0_l.jpg',
629
- right: 'images/cube_2048/0/d4db35a08ca12d67e7d4aadb25c1eb9f/0_r.jpg',
630
- up: 'images/cube_2048/0/d4db35a08ca12d67e7d4aadb25c1eb9f/0_u.jpg'
631
- }, {
632
- back: 'images/cube_2048/1/766532da6442cf8d235eeb0db8f964c1/1_b.jpg',
633
- down: 'images/cube_2048/1/766532da6442cf8d235eeb0db8f964c1/1_d.jpg',
634
- front: 'images/cube_2048/1/766532da6442cf8d235eeb0db8f964c1/1_f.jpg',
635
- index: 1,
636
- left: 'images/cube_2048/1/766532da6442cf8d235eeb0db8f964c1/1_l.jpg',
637
- right: 'images/cube_2048/1/766532da6442cf8d235eeb0db8f964c1/1_r.jpg',
638
- up: 'images/cube_2048/1/766532da6442cf8d235eeb0db8f964c1/1_u.jpg'
639
- }, {
640
- back: 'images/cube_2048/2/323a129a18f1c7fc75433fb09f26a4bf/2_b.jpg',
641
- down: 'images/cube_2048/2/323a129a18f1c7fc75433fb09f26a4bf/2_d.jpg',
642
- front: 'images/cube_2048/2/323a129a18f1c7fc75433fb09f26a4bf/2_f.jpg',
643
- index: 2,
644
- left: 'images/cube_2048/2/323a129a18f1c7fc75433fb09f26a4bf/2_l.jpg',
645
- right: 'images/cube_2048/2/323a129a18f1c7fc75433fb09f26a4bf/2_r.jpg',
646
- up: 'images/cube_2048/2/323a129a18f1c7fc75433fb09f26a4bf/2_u.jpg'
647
- }, {
648
- back: 'images/cube_2048/3/dd839737be3bdd18ac9a2df5b89e478b/3_b.jpg',
649
- down: 'images/cube_2048/3/dd839737be3bdd18ac9a2df5b89e478b/3_d.jpg',
650
- front: 'images/cube_2048/3/dd839737be3bdd18ac9a2df5b89e478b/3_f.jpg',
651
- index: 3,
652
- left: 'images/cube_2048/3/dd839737be3bdd18ac9a2df5b89e478b/3_l.jpg',
653
- right: 'images/cube_2048/3/dd839737be3bdd18ac9a2df5b89e478b/3_r.jpg',
654
- up: 'images/cube_2048/3/dd839737be3bdd18ac9a2df5b89e478b/3_u.jpg'
655
- }, {
656
- back: 'images/cube_2048/4/99d1a2879825b75e2511f674a420790e/4_b.jpg',
657
- down: 'images/cube_2048/4/99d1a2879825b75e2511f674a420790e/4_d.jpg',
658
- front: 'images/cube_2048/4/99d1a2879825b75e2511f674a420790e/4_f.jpg',
659
- index: 4,
660
- left: 'images/cube_2048/4/99d1a2879825b75e2511f674a420790e/4_l.jpg',
661
- right: 'images/cube_2048/4/99d1a2879825b75e2511f674a420790e/4_r.jpg',
662
- up: 'images/cube_2048/4/99d1a2879825b75e2511f674a420790e/4_u.jpg'
663
- }, {
664
- back: 'images/cube_2048/5/fd8665d6ee5b53f11229f866e4e66675/5_b.jpg',
665
- down: 'images/cube_2048/5/fd8665d6ee5b53f11229f866e4e66675/5_d.jpg',
666
- front: 'images/cube_2048/5/fd8665d6ee5b53f11229f866e4e66675/5_f.jpg',
667
- index: 5,
668
- left: 'images/cube_2048/5/fd8665d6ee5b53f11229f866e4e66675/5_l.jpg',
669
- right: 'images/cube_2048/5/fd8665d6ee5b53f11229f866e4e66675/5_r.jpg',
670
- up: 'images/cube_2048/5/fd8665d6ee5b53f11229f866e4e66675/5_u.jpg'
671
- }, {
672
- back: 'images/cube_2048/6/77415078d5537422918d0be7cba05c7a/6_b.jpg',
673
- down: 'images/cube_2048/6/77415078d5537422918d0be7cba05c7a/6_d.jpg',
674
- front: 'images/cube_2048/6/77415078d5537422918d0be7cba05c7a/6_f.jpg',
675
- index: 6,
676
- left: 'images/cube_2048/6/77415078d5537422918d0be7cba05c7a/6_l.jpg',
677
- right: 'images/cube_2048/6/77415078d5537422918d0be7cba05c7a/6_r.jpg',
678
- up: 'images/cube_2048/6/77415078d5537422918d0be7cba05c7a/6_u.jpg'
679
- }, {
680
- back: 'images/cube_2048/7/82d56578ef493a86b418200e7aee64a4/7_b.jpg',
681
- down: 'images/cube_2048/7/82d56578ef493a86b418200e7aee64a4/7_d.jpg',
682
- front: 'images/cube_2048/7/82d56578ef493a86b418200e7aee64a4/7_f.jpg',
683
- index: 7,
684
- left: 'images/cube_2048/7/82d56578ef493a86b418200e7aee64a4/7_l.jpg',
685
- right: 'images/cube_2048/7/82d56578ef493a86b418200e7aee64a4/7_r.jpg',
686
- up: 'images/cube_2048/7/82d56578ef493a86b418200e7aee64a4/7_u.jpg'
687
- }, {
688
- back: 'images/cube_2048/8/db9511ad68c1d16d5526d2817acdb768/8_b.jpg',
689
- down: 'images/cube_2048/8/db9511ad68c1d16d5526d2817acdb768/8_d.jpg',
690
- front: 'images/cube_2048/8/db9511ad68c1d16d5526d2817acdb768/8_f.jpg',
691
- index: 8,
692
- left: 'images/cube_2048/8/db9511ad68c1d16d5526d2817acdb768/8_l.jpg',
693
- right: 'images/cube_2048/8/db9511ad68c1d16d5526d2817acdb768/8_r.jpg',
694
- up: 'images/cube_2048/8/db9511ad68c1d16d5526d2817acdb768/8_u.jpg'
695
- }, {
696
- back: 'images/cube_2048/9/e41c750c49bf1f2599bc9e256d50fee1/9_b.jpg',
697
- down: 'images/cube_2048/9/e41c750c49bf1f2599bc9e256d50fee1/9_d.jpg',
698
- front: 'images/cube_2048/9/e41c750c49bf1f2599bc9e256d50fee1/9_f.jpg',
699
- index: 9,
700
- left: 'images/cube_2048/9/e41c750c49bf1f2599bc9e256d50fee1/9_l.jpg',
701
- right: 'images/cube_2048/9/e41c750c49bf1f2599bc9e256d50fee1/9_r.jpg',
702
- up: 'images/cube_2048/9/e41c750c49bf1f2599bc9e256d50fee1/9_u.jpg'
703
- }, {
704
- back: 'images/cube_2048/10/09e89debcc0fa9cd55b4ac24b7b7c916/10_b.jpg',
705
- down: 'images/cube_2048/10/09e89debcc0fa9cd55b4ac24b7b7c916/10_d.jpg',
706
- front: 'images/cube_2048/10/09e89debcc0fa9cd55b4ac24b7b7c916/10_f.jpg',
707
- index: 10,
708
- left: 'images/cube_2048/10/09e89debcc0fa9cd55b4ac24b7b7c916/10_l.jpg',
709
- right: 'images/cube_2048/10/09e89debcc0fa9cd55b4ac24b7b7c916/10_r.jpg',
710
- up: 'images/cube_2048/10/09e89debcc0fa9cd55b4ac24b7b7c916/10_u.jpg'
711
- }, {
712
- back: 'images/cube_2048/11/7d3f1767722764eda3be47c8f63610c9/11_b.jpg',
713
- down: 'images/cube_2048/11/7d3f1767722764eda3be47c8f63610c9/11_d.jpg',
714
- front: 'images/cube_2048/11/7d3f1767722764eda3be47c8f63610c9/11_f.jpg',
715
- index: 11,
716
- left: 'images/cube_2048/11/7d3f1767722764eda3be47c8f63610c9/11_l.jpg',
717
- right: 'images/cube_2048/11/7d3f1767722764eda3be47c8f63610c9/11_r.jpg',
718
- up: 'images/cube_2048/11/7d3f1767722764eda3be47c8f63610c9/11_u.jpg'
719
- }, {
720
- back: 'images/cube_2048/12/a91b7e8313fcff2cca45330778f62ac1/12_b.jpg',
721
- down: 'images/cube_2048/12/a91b7e8313fcff2cca45330778f62ac1/12_d.jpg',
722
- front: 'images/cube_2048/12/a91b7e8313fcff2cca45330778f62ac1/12_f.jpg',
723
- index: 12,
724
- left: 'images/cube_2048/12/a91b7e8313fcff2cca45330778f62ac1/12_l.jpg',
725
- right: 'images/cube_2048/12/a91b7e8313fcff2cca45330778f62ac1/12_r.jpg',
726
- up: 'images/cube_2048/12/a91b7e8313fcff2cca45330778f62ac1/12_u.jpg'
727
- }, {
728
- back: 'images/cube_2048/13/14ef045d4efc358a8af2ebf376370708/13_b.jpg',
729
- down: 'images/cube_2048/13/14ef045d4efc358a8af2ebf376370708/13_d.jpg',
730
- front: 'images/cube_2048/13/14ef045d4efc358a8af2ebf376370708/13_f.jpg',
731
- index: 13,
732
- left: 'images/cube_2048/13/14ef045d4efc358a8af2ebf376370708/13_l.jpg',
733
- right: 'images/cube_2048/13/14ef045d4efc358a8af2ebf376370708/13_r.jpg',
734
- up: 'images/cube_2048/13/14ef045d4efc358a8af2ebf376370708/13_u.jpg'
735
- }, {
736
- back: 'images/cube_2048/14/2d3d43d31cd2dc2e50908388dbe79727/14_b.jpg',
737
- down: 'images/cube_2048/14/2d3d43d31cd2dc2e50908388dbe79727/14_d.jpg',
738
- front: 'images/cube_2048/14/2d3d43d31cd2dc2e50908388dbe79727/14_f.jpg',
739
- index: 14,
740
- left: 'images/cube_2048/14/2d3d43d31cd2dc2e50908388dbe79727/14_l.jpg',
741
- right: 'images/cube_2048/14/2d3d43d31cd2dc2e50908388dbe79727/14_r.jpg',
742
- up: 'images/cube_2048/14/2d3d43d31cd2dc2e50908388dbe79727/14_u.jpg'
743
- }, {
744
- back: 'images/cube_2048/15/e7e2518f7954b2e3268a88545cbd234b/15_b.jpg',
745
- down: 'images/cube_2048/15/e7e2518f7954b2e3268a88545cbd234b/15_d.jpg',
746
- front: 'images/cube_2048/15/e7e2518f7954b2e3268a88545cbd234b/15_f.jpg',
747
- index: 15,
748
- left: 'images/cube_2048/15/e7e2518f7954b2e3268a88545cbd234b/15_l.jpg',
749
- right: 'images/cube_2048/15/e7e2518f7954b2e3268a88545cbd234b/15_r.jpg',
750
- up: 'images/cube_2048/15/e7e2518f7954b2e3268a88545cbd234b/15_u.jpg'
751
- }, {
752
- back: 'images/cube_2048/16/45779cc8f473e9ac5283c86608c33011/16_b.jpg',
753
- down: 'images/cube_2048/16/45779cc8f473e9ac5283c86608c33011/16_d.jpg',
754
- front: 'images/cube_2048/16/45779cc8f473e9ac5283c86608c33011/16_f.jpg',
755
- index: 16,
756
- left: 'images/cube_2048/16/45779cc8f473e9ac5283c86608c33011/16_l.jpg',
757
- right: 'images/cube_2048/16/45779cc8f473e9ac5283c86608c33011/16_r.jpg',
758
- up: 'images/cube_2048/16/45779cc8f473e9ac5283c86608c33011/16_u.jpg'
759
- }, {
760
- back: 'images/cube_2048/17/bb669d80d3edccdd484f04adbaf3d2ba/17_b.jpg',
761
- down: 'images/cube_2048/17/bb669d80d3edccdd484f04adbaf3d2ba/17_d.jpg',
762
- front: 'images/cube_2048/17/bb669d80d3edccdd484f04adbaf3d2ba/17_f.jpg',
763
- index: 17,
764
- left: 'images/cube_2048/17/bb669d80d3edccdd484f04adbaf3d2ba/17_l.jpg',
765
- right: 'images/cube_2048/17/bb669d80d3edccdd484f04adbaf3d2ba/17_r.jpg',
766
- up: 'images/cube_2048/17/bb669d80d3edccdd484f04adbaf3d2ba/17_u.jpg'
767
- }, {
768
- back: 'images/cube_2048/18/f07145285ceaa693006371318eb10d17/18_b.jpg',
769
- down: 'images/cube_2048/18/f07145285ceaa693006371318eb10d17/18_d.jpg',
770
- front: 'images/cube_2048/18/f07145285ceaa693006371318eb10d17/18_f.jpg',
771
- index: 18,
772
- left: 'images/cube_2048/18/f07145285ceaa693006371318eb10d17/18_l.jpg',
773
- right: 'images/cube_2048/18/f07145285ceaa693006371318eb10d17/18_r.jpg',
774
- up: 'images/cube_2048/18/f07145285ceaa693006371318eb10d17/18_u.jpg'
775
- }, {
776
- back: 'images/cube_2048/19/cc8e0a524bec21ae0d6b3fdfcaf7c41b/19_b.jpg',
777
- down: 'images/cube_2048/19/cc8e0a524bec21ae0d6b3fdfcaf7c41b/19_d.jpg',
778
- front: 'images/cube_2048/19/cc8e0a524bec21ae0d6b3fdfcaf7c41b/19_f.jpg',
779
- index: 19,
780
- left: 'images/cube_2048/19/cc8e0a524bec21ae0d6b3fdfcaf7c41b/19_l.jpg',
781
- right: 'images/cube_2048/19/cc8e0a524bec21ae0d6b3fdfcaf7c41b/19_r.jpg',
782
- up: 'images/cube_2048/19/cc8e0a524bec21ae0d6b3fdfcaf7c41b/19_u.jpg'
783
- }, {
784
- back: 'images/cube_2048/20/249b05c3d5fa0702ec98f817074a1c78/20_b.jpg',
785
- down: 'images/cube_2048/20/249b05c3d5fa0702ec98f817074a1c78/20_d.jpg',
786
- front: 'images/cube_2048/20/249b05c3d5fa0702ec98f817074a1c78/20_f.jpg',
787
- index: 20,
788
- left: 'images/cube_2048/20/249b05c3d5fa0702ec98f817074a1c78/20_l.jpg',
789
- right: 'images/cube_2048/20/249b05c3d5fa0702ec98f817074a1c78/20_r.jpg',
790
- up: 'images/cube_2048/20/249b05c3d5fa0702ec98f817074a1c78/20_u.jpg'
791
- }, {
792
- back: 'images/cube_2048/21/d5f729cae6c765446d8ef6628756523d/21_b.jpg',
793
- down: 'images/cube_2048/21/d5f729cae6c765446d8ef6628756523d/21_d.jpg',
794
- front: 'images/cube_2048/21/d5f729cae6c765446d8ef6628756523d/21_f.jpg',
795
- index: 21,
796
- left: 'images/cube_2048/21/d5f729cae6c765446d8ef6628756523d/21_l.jpg',
797
- right: 'images/cube_2048/21/d5f729cae6c765446d8ef6628756523d/21_r.jpg',
798
- up: 'images/cube_2048/21/d5f729cae6c765446d8ef6628756523d/21_u.jpg'
799
- }, {
800
- back: 'images/cube_2048/22/9df71d6de6efaebc87e5814e67794bd7/22_b.jpg',
801
- down: 'images/cube_2048/22/9df71d6de6efaebc87e5814e67794bd7/22_d.jpg',
802
- front: 'images/cube_2048/22/9df71d6de6efaebc87e5814e67794bd7/22_f.jpg',
803
- index: 22,
804
- left: 'images/cube_2048/22/9df71d6de6efaebc87e5814e67794bd7/22_l.jpg',
805
- right: 'images/cube_2048/22/9df71d6de6efaebc87e5814e67794bd7/22_r.jpg',
806
- up: 'images/cube_2048/22/9df71d6de6efaebc87e5814e67794bd7/22_u.jpg'
807
- }, {
808
- back: 'images/cube_2048/23/37c6fe6bb5074beb0eb014a10ee0061a/23_b.jpg',
809
- down: 'images/cube_2048/23/37c6fe6bb5074beb0eb014a10ee0061a/23_d.jpg',
810
- front: 'images/cube_2048/23/37c6fe6bb5074beb0eb014a10ee0061a/23_f.jpg',
811
- index: 23,
812
- left: 'images/cube_2048/23/37c6fe6bb5074beb0eb014a10ee0061a/23_l.jpg',
813
- right: 'images/cube_2048/23/37c6fe6bb5074beb0eb014a10ee0061a/23_r.jpg',
814
- up: 'images/cube_2048/23/37c6fe6bb5074beb0eb014a10ee0061a/23_u.jpg'
815
- }, {
816
- back: 'images/cube_2048/24/c2c9c32b6aa0800ca5a18d6832de8f5d/24_b.jpg',
817
- down: 'images/cube_2048/24/c2c9c32b6aa0800ca5a18d6832de8f5d/24_d.jpg',
818
- front: 'images/cube_2048/24/c2c9c32b6aa0800ca5a18d6832de8f5d/24_f.jpg',
819
- index: 24,
820
- left: 'images/cube_2048/24/c2c9c32b6aa0800ca5a18d6832de8f5d/24_l.jpg',
821
- right: 'images/cube_2048/24/c2c9c32b6aa0800ca5a18d6832de8f5d/24_r.jpg',
822
- up: 'images/cube_2048/24/c2c9c32b6aa0800ca5a18d6832de8f5d/24_u.jpg'
823
- }, {
824
- back: 'images/cube_2048/25/dda4a876b6d6e00a06f603b119036ad7/25_b.jpg',
825
- down: 'images/cube_2048/25/dda4a876b6d6e00a06f603b119036ad7/25_d.jpg',
826
- front: 'images/cube_2048/25/dda4a876b6d6e00a06f603b119036ad7/25_f.jpg',
827
- index: 25,
828
- left: 'images/cube_2048/25/dda4a876b6d6e00a06f603b119036ad7/25_l.jpg',
829
- right: 'images/cube_2048/25/dda4a876b6d6e00a06f603b119036ad7/25_r.jpg',
830
- up: 'images/cube_2048/25/dda4a876b6d6e00a06f603b119036ad7/25_u.jpg'
831
- }, {
832
- back: 'images/cube_2048/26/81549c588dbc6975c012bef2a79f84a9/26_b.jpg',
833
- down: 'images/cube_2048/26/81549c588dbc6975c012bef2a79f84a9/26_d.jpg',
834
- front: 'images/cube_2048/26/81549c588dbc6975c012bef2a79f84a9/26_f.jpg',
835
- index: 26,
836
- left: 'images/cube_2048/26/81549c588dbc6975c012bef2a79f84a9/26_l.jpg',
837
- right: 'images/cube_2048/26/81549c588dbc6975c012bef2a79f84a9/26_r.jpg',
838
- up: 'images/cube_2048/26/81549c588dbc6975c012bef2a79f84a9/26_u.jpg'
839
- }, {
840
- back: 'images/cube_2048/27/914153fadef73b4347460a45c56864d4/27_b.jpg',
841
- down: 'images/cube_2048/27/914153fadef73b4347460a45c56864d4/27_d.jpg',
842
- front: 'images/cube_2048/27/914153fadef73b4347460a45c56864d4/27_f.jpg',
843
- index: 27,
844
- left: 'images/cube_2048/27/914153fadef73b4347460a45c56864d4/27_l.jpg',
845
- right: 'images/cube_2048/27/914153fadef73b4347460a45c56864d4/27_r.jpg',
846
- up: 'images/cube_2048/27/914153fadef73b4347460a45c56864d4/27_u.jpg'
847
- }, {
848
- back: 'images/cube_2048/28/8312248c678773388a029e6dc38601dd/28_b.jpg',
849
- down: 'images/cube_2048/28/8312248c678773388a029e6dc38601dd/28_d.jpg',
850
- front: 'images/cube_2048/28/8312248c678773388a029e6dc38601dd/28_f.jpg',
851
- index: 28,
852
- left: 'images/cube_2048/28/8312248c678773388a029e6dc38601dd/28_l.jpg',
853
- right: 'images/cube_2048/28/8312248c678773388a029e6dc38601dd/28_r.jpg',
854
- up: 'images/cube_2048/28/8312248c678773388a029e6dc38601dd/28_u.jpg'
855
- }, {
856
- back: 'images/cube_2048/29/38c079dc9ff088bb2909d9b809d13705/29_b.jpg',
857
- down: 'images/cube_2048/29/38c079dc9ff088bb2909d9b809d13705/29_d.jpg',
858
- front: 'images/cube_2048/29/38c079dc9ff088bb2909d9b809d13705/29_f.jpg',
859
- index: 29,
860
- left: 'images/cube_2048/29/38c079dc9ff088bb2909d9b809d13705/29_l.jpg',
861
- right: 'images/cube_2048/29/38c079dc9ff088bb2909d9b809d13705/29_r.jpg',
862
- up: 'images/cube_2048/29/38c079dc9ff088bb2909d9b809d13705/29_u.jpg'
863
- }, {
864
- back: 'images/cube_2048/30/00e421015314580a77d2a03b568f0122/30_b.jpg',
865
- down: 'images/cube_2048/30/00e421015314580a77d2a03b568f0122/30_d.jpg',
866
- front: 'images/cube_2048/30/00e421015314580a77d2a03b568f0122/30_f.jpg',
867
- index: 30,
868
- left: 'images/cube_2048/30/00e421015314580a77d2a03b568f0122/30_l.jpg',
869
- right: 'images/cube_2048/30/00e421015314580a77d2a03b568f0122/30_r.jpg',
870
- up: 'images/cube_2048/30/00e421015314580a77d2a03b568f0122/30_u.jpg'
871
- }, {
872
- back: 'images/cube_2048/31/e19cf21a72aee58ee75676d7e4814e64/31_b.jpg',
873
- down: 'images/cube_2048/31/e19cf21a72aee58ee75676d7e4814e64/31_d.jpg',
874
- front: 'images/cube_2048/31/e19cf21a72aee58ee75676d7e4814e64/31_f.jpg',
875
- index: 31,
876
- left: 'images/cube_2048/31/e19cf21a72aee58ee75676d7e4814e64/31_l.jpg',
877
- right: 'images/cube_2048/31/e19cf21a72aee58ee75676d7e4814e64/31_r.jpg',
878
- up: 'images/cube_2048/31/e19cf21a72aee58ee75676d7e4814e64/31_u.jpg'
879
- }, {
880
- back: 'images/cube_2048/32/56f6d4f1b24aceb5bba2cf222ac204db/32_b.jpg',
881
- down: 'images/cube_2048/32/56f6d4f1b24aceb5bba2cf222ac204db/32_d.jpg',
882
- front: 'images/cube_2048/32/56f6d4f1b24aceb5bba2cf222ac204db/32_f.jpg',
883
- index: 32,
884
- left: 'images/cube_2048/32/56f6d4f1b24aceb5bba2cf222ac204db/32_l.jpg',
885
- right: 'images/cube_2048/32/56f6d4f1b24aceb5bba2cf222ac204db/32_r.jpg',
886
- up: 'images/cube_2048/32/56f6d4f1b24aceb5bba2cf222ac204db/32_u.jpg'
887
- }, {
888
- back: 'images/cube_2048/33/7f7e02f58dd044d67617196ad4a6d41c/33_b.jpg',
889
- down: 'images/cube_2048/33/7f7e02f58dd044d67617196ad4a6d41c/33_d.jpg',
890
- front: 'images/cube_2048/33/7f7e02f58dd044d67617196ad4a6d41c/33_f.jpg',
891
- index: 33,
892
- left: 'images/cube_2048/33/7f7e02f58dd044d67617196ad4a6d41c/33_l.jpg',
893
- right: 'images/cube_2048/33/7f7e02f58dd044d67617196ad4a6d41c/33_r.jpg',
894
- up: 'images/cube_2048/33/7f7e02f58dd044d67617196ad4a6d41c/33_u.jpg'
895
- }, {
896
- back: 'images/cube_2048/34/0ce1758c7b7803135a238251394a68d2/34_b.jpg',
897
- down: 'images/cube_2048/34/0ce1758c7b7803135a238251394a68d2/34_d.jpg',
898
- front: 'images/cube_2048/34/0ce1758c7b7803135a238251394a68d2/34_f.jpg',
899
- index: 34,
900
- left: 'images/cube_2048/34/0ce1758c7b7803135a238251394a68d2/34_l.jpg',
901
- right: 'images/cube_2048/34/0ce1758c7b7803135a238251394a68d2/34_r.jpg',
902
- up: 'images/cube_2048/34/0ce1758c7b7803135a238251394a68d2/34_u.jpg'
903
- }, {
904
- back: 'images/cube_2048/35/0b8e19d573c46f71f960748ac72aacaa/35_b.jpg',
905
- down: 'images/cube_2048/35/0b8e19d573c46f71f960748ac72aacaa/35_d.jpg',
906
- front: 'images/cube_2048/35/0b8e19d573c46f71f960748ac72aacaa/35_f.jpg',
907
- index: 35,
908
- left: 'images/cube_2048/35/0b8e19d573c46f71f960748ac72aacaa/35_l.jpg',
909
- right: 'images/cube_2048/35/0b8e19d573c46f71f960748ac72aacaa/35_r.jpg',
910
- up: 'images/cube_2048/35/0b8e19d573c46f71f960748ac72aacaa/35_u.jpg'
911
- }, {
912
- back: 'images/cube_2048/36/c64b2e32f50c77720ffb33b2b54ea3e5/36_b.jpg',
913
- down: 'images/cube_2048/36/c64b2e32f50c77720ffb33b2b54ea3e5/36_d.jpg',
914
- front: 'images/cube_2048/36/c64b2e32f50c77720ffb33b2b54ea3e5/36_f.jpg',
915
- index: 36,
916
- left: 'images/cube_2048/36/c64b2e32f50c77720ffb33b2b54ea3e5/36_l.jpg',
917
- right: 'images/cube_2048/36/c64b2e32f50c77720ffb33b2b54ea3e5/36_r.jpg',
918
- up: 'images/cube_2048/36/c64b2e32f50c77720ffb33b2b54ea3e5/36_u.jpg'
919
- }, {
920
- back: 'images/cube_2048/37/7a1896cf1fa0dc7004ab2ece7fabeefa/37_b.jpg',
921
- down: 'images/cube_2048/37/7a1896cf1fa0dc7004ab2ece7fabeefa/37_d.jpg',
922
- front: 'images/cube_2048/37/7a1896cf1fa0dc7004ab2ece7fabeefa/37_f.jpg',
923
- index: 37,
924
- left: 'images/cube_2048/37/7a1896cf1fa0dc7004ab2ece7fabeefa/37_l.jpg',
925
- right: 'images/cube_2048/37/7a1896cf1fa0dc7004ab2ece7fabeefa/37_r.jpg',
926
- up: 'images/cube_2048/37/7a1896cf1fa0dc7004ab2ece7fabeefa/37_u.jpg'
927
- }, {
928
- back: 'images/cube_2048/38/f7718cd658436653124c5c8e597ebb4e/38_b.jpg',
929
- down: 'images/cube_2048/38/f7718cd658436653124c5c8e597ebb4e/38_d.jpg',
930
- front: 'images/cube_2048/38/f7718cd658436653124c5c8e597ebb4e/38_f.jpg',
931
- index: 38,
932
- left: 'images/cube_2048/38/f7718cd658436653124c5c8e597ebb4e/38_l.jpg',
933
- right: 'images/cube_2048/38/f7718cd658436653124c5c8e597ebb4e/38_r.jpg',
934
- up: 'images/cube_2048/38/f7718cd658436653124c5c8e597ebb4e/38_u.jpg'
935
- }, {
936
- back: 'images/cube_2048/39/c66137f3e63720eeff4ae5ec77bfc229/39_b.jpg',
937
- down: 'images/cube_2048/39/c66137f3e63720eeff4ae5ec77bfc229/39_d.jpg',
938
- front: 'images/cube_2048/39/c66137f3e63720eeff4ae5ec77bfc229/39_f.jpg',
939
- index: 39,
940
- left: 'images/cube_2048/39/c66137f3e63720eeff4ae5ec77bfc229/39_l.jpg',
941
- right: 'images/cube_2048/39/c66137f3e63720eeff4ae5ec77bfc229/39_r.jpg',
942
- up: 'images/cube_2048/39/c66137f3e63720eeff4ae5ec77bfc229/39_u.jpg'
943
- }, {
944
- back: 'images/cube_2048/40/4e10a94fa60f67ff44047478eb6d8975/40_b.jpg',
945
- down: 'images/cube_2048/40/4e10a94fa60f67ff44047478eb6d8975/40_d.jpg',
946
- front: 'images/cube_2048/40/4e10a94fa60f67ff44047478eb6d8975/40_f.jpg',
947
- index: 40,
948
- left: 'images/cube_2048/40/4e10a94fa60f67ff44047478eb6d8975/40_l.jpg',
949
- right: 'images/cube_2048/40/4e10a94fa60f67ff44047478eb6d8975/40_r.jpg',
950
- up: 'images/cube_2048/40/4e10a94fa60f67ff44047478eb6d8975/40_u.jpg'
951
- }, {
952
- back: 'images/cube_2048/41/427f6589f87c2527620b574a87994d3d/41_b.jpg',
953
- down: 'images/cube_2048/41/427f6589f87c2527620b574a87994d3d/41_d.jpg',
954
- front: 'images/cube_2048/41/427f6589f87c2527620b574a87994d3d/41_f.jpg',
955
- index: 41,
956
- left: 'images/cube_2048/41/427f6589f87c2527620b574a87994d3d/41_l.jpg',
957
- right: 'images/cube_2048/41/427f6589f87c2527620b574a87994d3d/41_r.jpg',
958
- up: 'images/cube_2048/41/427f6589f87c2527620b574a87994d3d/41_u.jpg'
959
- }]
960
- },
961
- picture_url: 'https://vrlab-public.ljcdn.com/release/auto3dhd/1f96c930c0cb317bad4d20e95c6c0902/screenshot/1542078773_27/pc0_cqzPFsuV9.jpg',
962
- title_picture_url: 'https://vrlab-public.ljcdn.com/release/auto3dhd/1f96c930c0cb317bad4d20e95c6c0902/screenshot/1542078773_27/pc1_MrWosbwgs.jpg',
963
- vr_code: '80lo024DEgzanMj5BE',
964
- vr_type: 'reality'
965
- };
966
- exports.work = work;