cesium 0.24.1 → 0.25.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1139) hide show
  1. checksums.yaml +4 -4
  2. data/README.rdoc +2 -4
  3. data/app/assets/javascripts/Cesium.js +125 -2
  4. data/app/assets/javascripts/Core/AxisAlignedBoundingBox.js +3 -2
  5. data/app/assets/javascripts/Core/BoundingRectangle.js +6 -3
  6. data/app/assets/javascripts/Core/BoundingSphere.js +7 -7
  7. data/app/assets/javascripts/Core/BoxGeometry.js +14 -13
  8. data/app/assets/javascripts/Core/BoxOutlineGeometry.js +12 -10
  9. data/app/assets/javascripts/Core/Cartesian2.js +3 -3
  10. data/app/assets/javascripts/Core/Cartesian3.js +3 -3
  11. data/app/assets/javascripts/Core/Cartesian4.js +3 -3
  12. data/app/assets/javascripts/Core/Cartographic.js +6 -0
  13. data/app/assets/javascripts/Core/CatmullRomSpline.js +31 -35
  14. data/app/assets/javascripts/Core/CircleGeometry.js +6 -5
  15. data/app/assets/javascripts/Core/CircleOutlineGeometry.js +6 -5
  16. data/app/assets/javascripts/Core/Clock.js +7 -5
  17. data/app/assets/javascripts/Core/Color.js +25 -10
  18. data/app/assets/javascripts/Core/ColorGeometryInstanceAttribute.js +13 -9
  19. data/app/assets/javascripts/Core/ComponentDatatype.js +7 -5
  20. data/app/assets/javascripts/Core/CorridorGeometry.js +12 -5
  21. data/app/assets/javascripts/Core/CorridorOutlineGeometry.js +11 -4
  22. data/app/assets/javascripts/Core/CubicRealPolynomial.js +4 -0
  23. data/app/assets/javascripts/Core/CylinderGeometry.js +4 -6
  24. data/app/assets/javascripts/Core/CylinderOutlineGeometry.js +5 -7
  25. data/app/assets/javascripts/Core/EarthOrientationParameters.js +2 -2
  26. data/app/assets/javascripts/Core/EllipseGeometry.js +7 -10
  27. data/app/assets/javascripts/Core/EllipseOutlineGeometry.js +7 -10
  28. data/app/assets/javascripts/Core/Ellipsoid.js +24 -12
  29. data/app/assets/javascripts/Core/EllipsoidGeodesic.js +12 -0
  30. data/app/assets/javascripts/Core/EllipsoidGeometry.js +6 -5
  31. data/app/assets/javascripts/Core/EllipsoidOutlineGeometry.js +5 -5
  32. data/app/assets/javascripts/Core/EllipsoidTangentPlane.js +14 -1
  33. data/app/assets/javascripts/Core/EllipsoidalOccluder.js +19 -16
  34. data/app/assets/javascripts/Core/EncodedCartesian3.js +11 -7
  35. data/app/assets/javascripts/Core/Enumeration.js +2 -2
  36. data/app/assets/javascripts/Core/Event.js +8 -2
  37. data/app/assets/javascripts/Core/EventHelper.js +15 -3
  38. data/app/assets/javascripts/Core/Extent.js +13 -1
  39. data/app/assets/javascripts/Core/ExtentGeometry.js +10 -10
  40. data/app/assets/javascripts/Core/ExtentOutlineGeometry.js +12 -5
  41. data/app/assets/javascripts/Core/Fullscreen.js +2 -2
  42. data/app/assets/javascripts/Core/Geometry.js +12 -9
  43. data/app/assets/javascripts/Core/GeometryAttribute.js +15 -16
  44. data/app/assets/javascripts/Core/GeometryInstance.js +13 -11
  45. data/app/assets/javascripts/Core/GeometryInstanceAttribute.js +20 -21
  46. data/app/assets/javascripts/Core/GeometryPipeline.js +83 -66
  47. data/app/assets/javascripts/Core/HeightmapTessellator.js +3 -5
  48. data/app/assets/javascripts/Core/HermiteSpline.js +281 -131
  49. data/app/assets/javascripts/Core/IauOrientationAxes.js +1 -2
  50. data/app/assets/javascripts/Core/IndexDatatype.js +8 -4
  51. data/app/assets/javascripts/Core/IntersectionTests.js +21 -16
  52. data/app/assets/javascripts/Core/JulianDate.js +59 -36
  53. data/app/assets/javascripts/Core/LeapSecond.js +15 -11
  54. data/app/assets/javascripts/Core/LinearApproximation.js +7 -0
  55. data/app/assets/javascripts/Core/LinearSpline.js +23 -18
  56. data/app/assets/javascripts/Core/Math.js +8 -8
  57. data/app/assets/javascripts/Core/Matrix2.js +13 -13
  58. data/app/assets/javascripts/Core/Matrix3.js +28 -24
  59. data/app/assets/javascripts/Core/Matrix4.js +41 -41
  60. data/app/assets/javascripts/Core/NearFarScalar.js +4 -1
  61. data/app/assets/javascripts/Core/ObjectOrientedBoundingBox.js +10 -6
  62. data/app/assets/javascripts/Core/Occluder.js +26 -24
  63. data/app/assets/javascripts/Core/Plane.js +9 -6
  64. data/app/assets/javascripts/Core/PolygonGeometry.js +36 -32
  65. data/app/assets/javascripts/Core/PolygonOutlineGeometry.js +42 -32
  66. data/app/assets/javascripts/Core/PolygonPipeline.js +21 -15
  67. data/app/assets/javascripts/Core/PolylineGeometry.js +7 -8
  68. data/app/assets/javascripts/Core/PolylinePipeline.js +21 -14
  69. data/app/assets/javascripts/Core/PolylineVolumeGeometry.js +15 -8
  70. data/app/assets/javascripts/Core/PolylineVolumeGeometryLibrary.js +1 -2
  71. data/app/assets/javascripts/Core/PolylineVolumeOutlineGeometry.js +14 -7
  72. data/app/assets/javascripts/Core/QuadraticRealPolynomial.js +4 -0
  73. data/app/assets/javascripts/Core/QuarticRealPolynomial.js +4 -0
  74. data/app/assets/javascripts/Core/Quaternion.js +132 -11
  75. data/app/assets/javascripts/Core/QuaternionSpline.js +16 -14
  76. data/app/assets/javascripts/Core/Ray.js +3 -1
  77. data/app/assets/javascripts/Core/ScreenSpaceEventHandler.js +6 -0
  78. data/app/assets/javascripts/Core/Shapes.js +16 -15
  79. data/app/assets/javascripts/Core/ShowGeometryInstanceAttribute.js +10 -8
  80. data/app/assets/javascripts/Core/SimplePolylineGeometry.js +7 -6
  81. data/app/assets/javascripts/Core/SphereGeometry.js +3 -3
  82. data/app/assets/javascripts/Core/SphereOutlineGeometry.js +2 -2
  83. data/app/assets/javascripts/Core/Spherical.js +4 -0
  84. data/app/assets/javascripts/Core/Spline.js +10 -5
  85. data/app/assets/javascripts/Core/TaskProcessor.js +3 -3
  86. data/app/assets/javascripts/Core/TimeInterval.js +6 -3
  87. data/app/assets/javascripts/Core/TimeIntervalCollection.js +17 -0
  88. data/app/assets/javascripts/Core/Tipsify.js +11 -2
  89. data/app/assets/javascripts/Core/Transforms.js +20 -20
  90. data/app/assets/javascripts/Core/TridiagonalSystemSolver.js +8 -11
  91. data/app/assets/javascripts/Core/VertexFormat.js +1 -1
  92. data/app/assets/javascripts/Core/WallGeometry.js +19 -17
  93. data/app/assets/javascripts/Core/WallGeometryLibrary.js +4 -1
  94. data/app/assets/javascripts/Core/WallOutlineGeometry.js +19 -17
  95. data/app/assets/javascripts/Core/barycentricCoordinates.js +8 -5
  96. data/app/assets/javascripts/Core/binarySearch.js +3 -1
  97. data/app/assets/javascripts/Core/combine.js +1 -1
  98. data/app/assets/javascripts/Core/createGuid.js +1 -1
  99. data/app/assets/javascripts/Core/defaultValue.js +1 -1
  100. data/app/assets/javascripts/Core/defined.js +1 -1
  101. data/app/assets/javascripts/Core/destroyObject.js +1 -1
  102. data/app/assets/javascripts/Core/getFilenameFromUri.js +3 -1
  103. data/app/assets/javascripts/Core/isLeapYear.js +4 -1
  104. data/app/assets/javascripts/Core/jsonp.js +3 -1
  105. data/app/assets/javascripts/Core/loadArrayBuffer.js +1 -1
  106. data/app/assets/javascripts/Core/loadBlob.js +1 -1
  107. data/app/assets/javascripts/Core/loadImage.js +3 -1
  108. data/app/assets/javascripts/Core/loadImageViaBlob.js +1 -1
  109. data/app/assets/javascripts/Core/loadJson.js +3 -1
  110. data/app/assets/javascripts/Core/loadText.js +1 -1
  111. data/app/assets/javascripts/Core/loadWithXhr.js +4 -1
  112. data/app/assets/javascripts/Core/loadXML.js +2 -0
  113. data/app/assets/javascripts/Core/pointInsideTriangle.js +7 -8
  114. data/app/assets/javascripts/Core/requestAnimationFrame.js +1 -1
  115. data/app/assets/javascripts/Core/throttleRequestByServer.js +4 -4
  116. data/app/assets/javascripts/Core/wrapFunction.js +2 -0
  117. data/app/assets/javascripts/Core/writeTextToCanvas.js +2 -1
  118. data/app/assets/javascripts/DynamicScene/CompositeDynamicObjectCollection.js +17 -5
  119. data/app/assets/javascripts/DynamicScene/CompositeMaterialProperty.js +4 -0
  120. data/app/assets/javascripts/DynamicScene/CompositePositionProperty.js +2 -0
  121. data/app/assets/javascripts/DynamicScene/CompositeProperty.js +5 -3
  122. data/app/assets/javascripts/DynamicScene/ConstantPositionProperty.js +4 -1
  123. data/app/assets/javascripts/DynamicScene/ConstantProperty.js +5 -0
  124. data/app/assets/javascripts/DynamicScene/CzmlDataSource.js +84 -48
  125. data/app/assets/javascripts/DynamicScene/DataSource.js +19 -17
  126. data/app/assets/javascripts/DynamicScene/DataSourceCollection.js +5 -0
  127. data/app/assets/javascripts/DynamicScene/DataSourceDisplay.js +4 -0
  128. data/app/assets/javascripts/DynamicScene/DynamicBillboard.js +3 -0
  129. data/app/assets/javascripts/DynamicScene/DynamicBillboardVisualizer.js +6 -1
  130. data/app/assets/javascripts/DynamicScene/DynamicClock.js +23 -1
  131. data/app/assets/javascripts/DynamicScene/DynamicCone.js +3 -0
  132. data/app/assets/javascripts/DynamicScene/DynamicConeVisualizerUsingCustomSensor.js +7 -1
  133. data/app/assets/javascripts/DynamicScene/DynamicEllipse.js +3 -0
  134. data/app/assets/javascripts/DynamicScene/DynamicEllipsoid.js +3 -0
  135. data/app/assets/javascripts/DynamicScene/DynamicEllipsoidVisualizer.js +7 -1
  136. data/app/assets/javascripts/DynamicScene/DynamicLabel.js +3 -0
  137. data/app/assets/javascripts/DynamicScene/DynamicLabelVisualizer.js +7 -1
  138. data/app/assets/javascripts/DynamicScene/DynamicObject.js +21 -7
  139. data/app/assets/javascripts/DynamicScene/DynamicObjectCollection.js +17 -0
  140. data/app/assets/javascripts/DynamicScene/DynamicObjectView.js +14 -15
  141. data/app/assets/javascripts/DynamicScene/DynamicPath.js +3 -0
  142. data/app/assets/javascripts/DynamicScene/DynamicPathVisualizer.js +6 -1
  143. data/app/assets/javascripts/DynamicScene/DynamicPoint.js +3 -0
  144. data/app/assets/javascripts/DynamicScene/DynamicPointVisualizer.js +7 -1
  145. data/app/assets/javascripts/DynamicScene/DynamicPolygon.js +3 -0
  146. data/app/assets/javascripts/DynamicScene/DynamicPolygonVisualizer.js +7 -1
  147. data/app/assets/javascripts/DynamicScene/DynamicPolyline.js +3 -0
  148. data/app/assets/javascripts/DynamicScene/DynamicPolylineVisualizer.js +7 -1
  149. data/app/assets/javascripts/DynamicScene/DynamicPyramid.js +3 -0
  150. data/app/assets/javascripts/DynamicScene/DynamicPyramidVisualizer.js +7 -1
  151. data/app/assets/javascripts/DynamicScene/DynamicVector.js +3 -0
  152. data/app/assets/javascripts/DynamicScene/DynamicVectorVisualizer.js +7 -1
  153. data/app/assets/javascripts/DynamicScene/GeoJsonDataSource.js +83 -20
  154. data/app/assets/javascripts/DynamicScene/ReferenceProperty.js +9 -1
  155. data/app/assets/javascripts/DynamicScene/SampledPositionProperty.js +2 -0
  156. data/app/assets/javascripts/DynamicScene/SampledProperty.js +24 -14
  157. data/app/assets/javascripts/DynamicScene/TimeIntervalCollectionPositionProperty.js +2 -0
  158. data/app/assets/javascripts/DynamicScene/TimeIntervalCollectionProperty.js +10 -8
  159. data/app/assets/javascripts/Renderer/Buffer.js +6 -4
  160. data/app/assets/javascripts/Renderer/Context.js +86 -34
  161. data/app/assets/javascripts/Renderer/CubeMap.js +7 -5
  162. data/app/assets/javascripts/Renderer/CubeMapFace.js +10 -19
  163. data/app/assets/javascripts/Renderer/Framebuffer.js +178 -188
  164. data/app/assets/javascripts/Renderer/PickFramebuffer.js +2 -2
  165. data/app/assets/javascripts/Renderer/RenderState.js +12 -32
  166. data/app/assets/javascripts/Renderer/ShaderProgram.js +10 -10
  167. data/app/assets/javascripts/Renderer/Texture.js +20 -31
  168. data/app/assets/javascripts/Renderer/TextureAtlas.js +10 -8
  169. data/app/assets/javascripts/Renderer/TextureAtlasBuilder.js +7 -3
  170. data/app/assets/javascripts/Renderer/VertexArray.js +8 -7
  171. data/app/assets/javascripts/Renderer/VertexArrayFacade.js +4 -6
  172. data/app/assets/javascripts/Renderer/createShaderSource.js +1 -1
  173. data/app/assets/javascripts/Renderer/loadCubeMap.js +3 -2
  174. data/app/assets/javascripts/Scene/AnimationCollection.js +85 -30
  175. data/app/assets/javascripts/Scene/ArcGisImageServerTerrainProvider.js +2 -0
  176. data/app/assets/javascripts/Scene/ArcGisMapServerImageryProvider.js +27 -1
  177. data/app/assets/javascripts/Scene/Billboard.js +46 -15
  178. data/app/assets/javascripts/Scene/BillboardCollection.js +51 -45
  179. data/app/assets/javascripts/Scene/BingMapsImageryProvider.js +28 -2
  180. data/app/assets/javascripts/Scene/Camera.js +13 -5
  181. data/app/assets/javascripts/Scene/CameraController.js +74 -13
  182. data/app/assets/javascripts/Scene/CameraEventAggregator.js +21 -3
  183. data/app/assets/javascripts/Scene/CameraFlightPath.js +13 -34
  184. data/app/assets/javascripts/Scene/CentralBody.js +5 -5
  185. data/app/assets/javascripts/Scene/CentralBodySurface.js +4 -0
  186. data/app/assets/javascripts/Scene/CentralBodySurfaceShaderSet.js +3 -3
  187. data/app/assets/javascripts/Scene/CesiumTerrainProvider.js +2 -0
  188. data/app/assets/javascripts/Scene/CompositePrimitive.js +14 -8
  189. data/app/assets/javascripts/Scene/Credit.js +4 -1
  190. data/app/assets/javascripts/Scene/CreditDisplay.js +10 -1
  191. data/app/assets/javascripts/Scene/CullingVolume.js +2 -0
  192. data/app/assets/javascripts/Scene/CustomSensorVolume.js +12 -11
  193. data/app/assets/javascripts/Scene/DebugAppearance.js +4 -3
  194. data/app/assets/javascripts/Scene/DebugModelMatrixPrimitive.js +1 -1
  195. data/app/assets/javascripts/Scene/EllipsoidPrimitive.js +20 -18
  196. data/app/assets/javascripts/Scene/EllipsoidSurfaceAppearance.js +6 -6
  197. data/app/assets/javascripts/Scene/ExtentPrimitive.js +7 -7
  198. data/app/assets/javascripts/Scene/GeographicTilingScheme.js +2 -0
  199. data/app/assets/javascripts/Scene/GoogleEarthImageryProvider.js +36 -1
  200. data/app/assets/javascripts/Scene/HeightmapTerrainData.js +10 -3
  201. data/app/assets/javascripts/Scene/ImageryLayer.js +9 -5
  202. data/app/assets/javascripts/Scene/ImageryLayerCollection.js +20 -6
  203. data/app/assets/javascripts/Scene/Label.js +42 -9
  204. data/app/assets/javascripts/Scene/LabelCollection.js +17 -15
  205. data/app/assets/javascripts/Scene/Material.js +10 -227
  206. data/app/assets/javascripts/Scene/MaterialAppearance.js +6 -6
  207. data/app/assets/javascripts/Scene/Moon.js +1 -1
  208. data/app/assets/javascripts/Scene/OpenStreetMapImageryProvider.js +38 -2
  209. data/app/assets/javascripts/Scene/OrthographicFrustum.js +15 -18
  210. data/app/assets/javascripts/Scene/PerInstanceColorAppearance.js +17 -17
  211. data/app/assets/javascripts/Scene/PerformanceDisplay.js +45 -131
  212. data/app/assets/javascripts/Scene/PerspectiveFrustum.js +5 -5
  213. data/app/assets/javascripts/Scene/PerspectiveOffCenterFrustum.js +5 -5
  214. data/app/assets/javascripts/Scene/Polygon.js +31 -23
  215. data/app/assets/javascripts/Scene/Polyline.js +12 -3
  216. data/app/assets/javascripts/Scene/PolylineCollection.js +32 -30
  217. data/app/assets/javascripts/Scene/PolylineColorAppearance.js +8 -8
  218. data/app/assets/javascripts/Scene/PolylineMaterialAppearance.js +8 -8
  219. data/app/assets/javascripts/Scene/Primitive.js +65 -60
  220. data/app/assets/javascripts/Scene/PrimitivePipeline.js +12 -9
  221. data/app/assets/javascripts/Scene/RectangularPyramidSensorVolume.js +6 -4
  222. data/app/assets/javascripts/Scene/Scene.js +61 -10
  223. data/app/assets/javascripts/Scene/SceneTransforms.js +10 -5
  224. data/app/assets/javascripts/Scene/SceneTransitioner.js +9 -1
  225. data/app/assets/javascripts/Scene/ScreenSpaceCameraController.js +31 -7
  226. data/app/assets/javascripts/Scene/SensorVolumeCollection.js +2 -0
  227. data/app/assets/javascripts/Scene/SingleTileImageryProvider.js +24 -1
  228. data/app/assets/javascripts/Scene/SkyAtmosphere.js +2 -2
  229. data/app/assets/javascripts/Scene/SkyBox.js +7 -5
  230. data/app/assets/javascripts/Scene/Sun.js +7 -7
  231. data/app/assets/javascripts/Scene/SunPostProcess.js +57 -47
  232. data/app/assets/javascripts/Scene/TerrainProvider.js +3 -3
  233. data/app/assets/javascripts/Scene/TexturePool.js +2 -0
  234. data/app/assets/javascripts/Scene/Tile.js +36 -25
  235. data/app/assets/javascripts/Scene/TileMapServiceImageryProvider.js +55 -9
  236. data/app/assets/javascripts/Scene/TileTerrain.js +5 -2
  237. data/app/assets/javascripts/Scene/VRTheWorldTerrainProvider.js +1 -1
  238. data/app/assets/javascripts/Scene/ViewportQuad.js +12 -12
  239. data/app/assets/javascripts/Scene/WebMapServiceImageryProvider.js +27 -2
  240. data/app/assets/javascripts/Scene/createTangentSpaceDebugPrimitive.js +4 -3
  241. data/app/assets/javascripts/Scene/sampleTerrain.js +7 -5
  242. data/app/assets/javascripts/Shaders/Builtin/CzmBuiltins.js +1 -5
  243. data/app/assets/javascripts/ThirdParty/Tween.js +111 -26
  244. data/app/assets/javascripts/Widgets/Animation/Animation.js +2 -3
  245. data/app/assets/javascripts/Widgets/Animation/AnimationViewModel.js +10 -3
  246. data/app/assets/javascripts/Widgets/BaseLayerPicker/BaseLayerPicker.js +2 -1
  247. data/app/assets/javascripts/Widgets/BaseLayerPicker/BaseLayerPickerViewModel.js +2 -0
  248. data/app/assets/javascripts/Widgets/BaseLayerPicker/ImageryProviderViewModel.js +5 -6
  249. data/app/assets/javascripts/Widgets/CesiumWidget/CesiumWidget.js +2 -0
  250. data/app/assets/javascripts/Widgets/FullscreenButton/FullscreenButton.js +3 -0
  251. data/app/assets/javascripts/Widgets/FullscreenButton/FullscreenButtonViewModel.js +3 -0
  252. data/app/assets/javascripts/Widgets/Geocoder/Geocoder.js +2 -1
  253. data/app/assets/javascripts/Widgets/Geocoder/GeocoderViewModel.js +35 -21
  254. data/app/assets/javascripts/Widgets/HomeButton/HomeButton.js +2 -0
  255. data/app/assets/javascripts/Widgets/HomeButton/HomeButtonViewModel.js +5 -0
  256. data/app/assets/javascripts/Widgets/SceneModePicker/SceneModePicker.js +2 -0
  257. data/app/assets/javascripts/Widgets/SceneModePicker/SceneModePickerViewModel.js +2 -0
  258. data/app/assets/javascripts/Widgets/Timeline/Timeline.js +6 -1
  259. data/app/assets/javascripts/Widgets/ToggleButtonViewModel.js +4 -2
  260. data/app/assets/javascripts/Widgets/Viewer/Viewer.js +38 -11
  261. data/app/assets/javascripts/Widgets/Viewer/viewerDragDropMixin.js +5 -0
  262. data/app/assets/javascripts/Widgets/Viewer/viewerDynamicObjectMixin.js +29 -45
  263. data/app/assets/javascripts/Widgets/createCommand.js +5 -1
  264. data/app/assets/javascripts/Widgets/getElement.js +4 -0
  265. data/app/assets/javascripts/Workers/cesiumWorkerBootstrapper.js +1 -1
  266. data/app/assets/javascripts/Workers/combineGeometry.js +356 -391
  267. data/app/assets/javascripts/Workers/createBoxGeometry.js +371 -409
  268. data/app/assets/javascripts/Workers/createBoxOutlineGeometry.js +368 -405
  269. data/app/assets/javascripts/Workers/createCircleGeometry.js +531 -458
  270. data/app/assets/javascripts/Workers/createCircleOutlineGeometry.js +497 -421
  271. data/app/assets/javascripts/Workers/createCorridorGeometry.js +648 -556
  272. data/app/assets/javascripts/Workers/createCorridorOutlineGeometry.js +646 -554
  273. data/app/assets/javascripts/Workers/createCylinderGeometry.js +361 -400
  274. data/app/assets/javascripts/Workers/createCylinderOutlineGeometry.js +361 -400
  275. data/app/assets/javascripts/Workers/createEllipseGeometry.js +525 -451
  276. data/app/assets/javascripts/Workers/createEllipseOutlineGeometry.js +491 -414
  277. data/app/assets/javascripts/Workers/createEllipsoidGeometry.js +363 -399
  278. data/app/assets/javascripts/Workers/createEllipsoidOutlineGeometry.js +361 -398
  279. data/app/assets/javascripts/Workers/createExtentGeometry.js +552 -473
  280. data/app/assets/javascripts/Workers/createExtentOutlineGeometry.js +392 -420
  281. data/app/assets/javascripts/Workers/createPolygonGeometry.js +707 -629
  282. data/app/assets/javascripts/Workers/createPolygonOutlineGeometry.js +578 -612
  283. data/app/assets/javascripts/Workers/createPolylineGeometry.js +395 -432
  284. data/app/assets/javascripts/Workers/createPolylineVolumeGeometry.js +683 -600
  285. data/app/assets/javascripts/Workers/createPolylineVolumeOutlineGeometry.js +681 -598
  286. data/app/assets/javascripts/Workers/createSimplePolylineGeometry.js +363 -399
  287. data/app/assets/javascripts/Workers/createSphereGeometry.js +366 -402
  288. data/app/assets/javascripts/Workers/createSphereOutlineGeometry.js +363 -400
  289. data/app/assets/javascripts/Workers/createTaskProcessorWorker.js +1 -1
  290. data/app/assets/javascripts/Workers/createVerticesFromHeightmap.js +157 -162
  291. data/app/assets/javascripts/Workers/createWallGeometry.js +557 -590
  292. data/app/assets/javascripts/Workers/createWallOutlineGeometry.js +556 -589
  293. data/app/assets/javascripts/Workers/taskDispatcher.js +2 -2
  294. data/lib/cesium/version.rb +1 -1
  295. data/test/dummy/config/initializers/better_errors.rb +1 -0
  296. data/test/dummy/log/development.log +6906 -0
  297. data/test/dummy/tmp/cache/assets/B99/0B0/sprockets%2F4723632036683061b3298399d52922e7 +0 -0
  298. data/test/dummy/tmp/cache/assets/BF5/780/sprockets%2F4972cb4661342668d3594133711f29d2 +0 -0
  299. data/test/dummy/tmp/cache/assets/BF5/FE0/sprockets%2F368a904259d19129785a545b0f620238 +0 -0
  300. data/test/dummy/tmp/cache/assets/BF8/BC0/sprockets%2F1982805b53487d15554f20955019b8c4 +0 -0
  301. data/test/dummy/tmp/cache/assets/C12/030/sprockets%2Fbd84b00d783150a219825433401a7946 +0 -0
  302. data/test/dummy/tmp/cache/assets/C12/F80/sprockets%2F9356a00b5159422da062270884e23a29 +0 -0
  303. data/test/dummy/tmp/cache/assets/C1E/5C0/sprockets%2F2277f02712e633f06102744168f8f35d +0 -0
  304. data/test/dummy/tmp/cache/assets/C21/2F0/sprockets%2F542b776b2358128506142733e2f7bc94 +0 -0
  305. data/test/dummy/tmp/cache/assets/C23/080/sprockets%2F7953320c0848d5564133365a6c3d728d +0 -0
  306. data/test/dummy/tmp/cache/assets/C26/280/sprockets%2F9860ce60e03164c35b8039e072376784 +0 -0
  307. data/test/dummy/tmp/cache/assets/C26/5B0/sprockets%2F55b830337d0462859671b7e5447ed430 +0 -0
  308. data/test/dummy/tmp/cache/assets/C27/DA0/sprockets%2Fe49200d07769d24f54f721d890142818 +0 -0
  309. data/test/dummy/tmp/cache/assets/C29/170/sprockets%2F02826284e867237657439d3ce475a0b3 +0 -0
  310. data/test/dummy/tmp/cache/assets/C2D/8E0/sprockets%2F64b8f949c8611a847315410698207fc3 +0 -0
  311. data/test/dummy/tmp/cache/assets/C31/9B0/sprockets%2F91243839e47880702db90f07f449d509 +0 -0
  312. data/test/dummy/tmp/cache/assets/C40/040/sprockets%2F755e3952d9331b86782d4a7478a59299 +0 -0
  313. data/test/dummy/tmp/cache/assets/C41/C50/sprockets%2F97252d94663e85679cfc447910e79622 +0 -0
  314. data/test/dummy/tmp/cache/assets/C42/440/sprockets%2F1b618402da380cb405d971458a874033 +0 -0
  315. data/test/dummy/tmp/cache/assets/C44/870/sprockets%2Fc7607e52811e723312c83d096c611c32 +0 -0
  316. data/test/dummy/tmp/cache/assets/C46/770/sprockets%2F9b6c82d0454ab5ba8727173860060324 +0 -0
  317. data/test/dummy/tmp/cache/assets/C48/360/sprockets%2Fc966013651008025255f5b53b1d63f9e +0 -0
  318. data/test/dummy/tmp/cache/assets/C4A/020/sprockets%2F162d504e77459f0304b964139300cfe3 +0 -0
  319. data/test/dummy/tmp/cache/assets/C4A/2B0/sprockets%2F821c1d08482a9b936b661a56444551b3 +0 -0
  320. data/test/dummy/tmp/cache/assets/C4B/100/sprockets%2F68d50de95c6555c15507523610f4c240 +0 -0
  321. data/test/dummy/tmp/cache/assets/C50/660/sprockets%2F23aa94586275206f62159b3f0380fc74 +0 -0
  322. data/test/dummy/tmp/cache/assets/C52/CE0/sprockets%2F6a90b1d4e55589bc930a916842407308 +0 -0
  323. data/test/dummy/tmp/cache/assets/C53/040/sprockets%2F52411d26c4863636c7ae5b5090690f94 +0 -0
  324. data/test/dummy/tmp/cache/assets/C53/660/sprockets%2F536301e85c8568fc601c0264d34935d6 +0 -0
  325. data/test/dummy/tmp/cache/assets/C54/B80/sprockets%2F3d600e58a215f47e00d92e5697298233 +0 -0
  326. data/test/dummy/tmp/cache/assets/C55/050/sprockets%2Fce172473f4850e2954423d79a57e0082 +0 -0
  327. data/test/dummy/tmp/cache/assets/C56/5C0/sprockets%2F3383988301b0378ef1127572a59ee07d +0 -0
  328. data/test/dummy/tmp/cache/assets/C57/D10/sprockets%2F784e21cb5b634a598629115ef4685213 +0 -0
  329. data/test/dummy/tmp/cache/assets/C59/810/sprockets%2Fc37183f61d9511d324983656cd9375a1 +0 -0
  330. data/test/dummy/tmp/cache/assets/C5D/C90/sprockets%2Fc95a68422035a73f646f74e74767134c +0 -0
  331. data/test/dummy/tmp/cache/assets/C5E/0C0/sprockets%2F0700cd92993b55978435e474c733c9d0 +0 -0
  332. data/test/dummy/tmp/cache/assets/C60/1B0/sprockets%2Faf8b450372646883cc98c1478472a744 +0 -0
  333. data/test/dummy/tmp/cache/assets/C61/D10/sprockets%2F99f1eb6583e8c569a6070750064d0649 +0 -0
  334. data/test/dummy/tmp/cache/assets/C63/070/sprockets%2F8e770283d268526610e99264922dce9b +0 -0
  335. data/test/dummy/tmp/cache/assets/C64/730/sprockets%2F78fd706ba991f21a399070866616c297 +0 -0
  336. data/test/dummy/tmp/cache/assets/C65/0E0/sprockets%2F8303e4555c14f5f62cd2979665f50578 +0 -0
  337. data/test/dummy/tmp/cache/assets/C67/100/sprockets%2F3990873e02881d599f547c5d76622ba5 +0 -0
  338. data/test/dummy/tmp/cache/assets/C69/DC0/sprockets%2F99a7cf31e7d92983436407940c83e384 +0 -0
  339. data/test/dummy/tmp/cache/assets/C6A/BE0/sprockets%2F1dab667239484e74156d59e5884d1299 +0 -0
  340. data/test/dummy/tmp/cache/assets/C6B/120/sprockets%2Fa41f14414541d5f11a64216297c7d0c3 +0 -0
  341. data/test/dummy/tmp/cache/assets/C6C/E20/sprockets%2Fa47597474b5a3359d9933b9099f34b84 +0 -0
  342. data/test/dummy/tmp/cache/assets/C6C/E30/sprockets%2F566fe333c6901634240a26ebda413044 +0 -0
  343. data/test/dummy/tmp/cache/assets/C70/600/sprockets%2Fa190260891222cefb27e01037c26e592 +0 -0
  344. data/test/dummy/tmp/cache/assets/C70/D70/sprockets%2F2e438313a1edf3a1538c2348911a3194 +0 -0
  345. data/test/dummy/tmp/cache/assets/C73/0F0/sprockets%2F8a6a50d9b866140c720b6a48307c4116 +0 -0
  346. data/test/dummy/tmp/cache/assets/C75/A30/sprockets%2F70433b035563751f91da2c42849c3eb1 +0 -0
  347. data/test/dummy/tmp/cache/assets/C76/020/sprockets%2F93a743240510b9fc229172560fe0e5d4 +0 -0
  348. data/test/dummy/tmp/cache/assets/C76/620/sprockets%2F632c9212c090a66b2278ff03d1037a98 +0 -0
  349. data/test/dummy/tmp/cache/assets/C76/B20/sprockets%2F00e497b5db44cc01854869442bc31091 +0 -0
  350. data/test/dummy/tmp/cache/assets/C76/F10/sprockets%2F536e031c5d9a257b602d38f8711480a2 +0 -0
  351. data/test/dummy/tmp/cache/assets/C79/2A0/sprockets%2Fdbff93f30738954d250021029a8705a3 +0 -0
  352. data/test/dummy/tmp/cache/assets/C79/CA0/sprockets%2F6c457040c003bb7fe76cd91327372572 +0 -0
  353. data/test/dummy/tmp/cache/assets/C7C/7C0/sprockets%2F951d4a02d8b2ce148765e618081a8036 +0 -0
  354. data/test/dummy/tmp/cache/assets/C7C/810/sprockets%2F8c911307ea50fb1f75e855507300e780 +0 -0
  355. data/test/dummy/tmp/cache/assets/C7E/200/sprockets%2F21b0b364a5b1018b18f894c6e8655682 +0 -0
  356. data/test/dummy/tmp/cache/assets/C80/780/sprockets%2F49930c35001a30c38745b89a6a86cf74 +0 -0
  357. data/test/dummy/tmp/cache/assets/C82/060/sprockets%2Fb043f48276a50489714f9ec04525e26a +0 -0
  358. data/test/dummy/tmp/cache/assets/C82/580/sprockets%2F8118f4526088ba8fd441f20317475d6b +0 -0
  359. data/test/dummy/tmp/cache/assets/C83/A50/sprockets%2F26b151f7490286ff7059ff9a411e1027 +0 -0
  360. data/test/dummy/tmp/cache/assets/C84/A30/sprockets%2F4867b0b9b390b58a539162663f95a11d +0 -0
  361. data/test/dummy/tmp/cache/assets/C85/310/sprockets%2Fc638d86c720815e5b635e0a3646e2186 +0 -0
  362. data/test/dummy/tmp/cache/assets/C85/A90/sprockets%2Fc1f8ee195823c02e7b7c623493141937 +0 -0
  363. data/test/dummy/tmp/cache/assets/C86/030/sprockets%2F0ad25c896165036167b94387675bcdd1 +0 -0
  364. data/test/dummy/tmp/cache/assets/C86/230/sprockets%2F4454c38e9e8bb905a7b1351b76394830 +0 -0
  365. data/test/dummy/tmp/cache/assets/C87/1B0/sprockets%2F58524f16545fa54ea39c3c1270d06799 +0 -0
  366. data/test/dummy/tmp/cache/assets/C88/400/sprockets%2F9454b598601cfa56142892fc3f11e267 +0 -0
  367. data/test/dummy/tmp/cache/assets/C88/500/sprockets%2F4922887ab2a8fe01664747b36094b17f +0 -0
  368. data/test/dummy/tmp/cache/assets/C88/E50/sprockets%2F02cd2a2814dd575e95685636198ab572 +0 -0
  369. data/test/dummy/tmp/cache/assets/C8B/A30/sprockets%2Fe20153c26552232703d0f4a5a60b10ed +0 -0
  370. data/test/dummy/tmp/cache/assets/C8C/ED0/sprockets%2F43ea33764c6de9a90766696891d1421a +0 -0
  371. data/test/dummy/tmp/cache/assets/C8D/C30/sprockets%2Fb8b7a83d530275d303f1769879f60f34 +0 -0
  372. data/test/dummy/tmp/cache/assets/C8D/FC0/sprockets%2Fab1b1b654d968822069892e844f5244f +0 -0
  373. data/test/dummy/tmp/cache/assets/C8E/1A0/sprockets%2F7937090f77385164f68c0ee252b26be5 +0 -0
  374. data/test/dummy/tmp/cache/assets/C8E/450/sprockets%2F5fa08396255656fa8151e3796bf902a7 +0 -0
  375. data/test/dummy/tmp/cache/assets/C8E/810/sprockets%2F3e40187995c1803db884c434d95ca657 +0 -0
  376. data/test/dummy/tmp/cache/assets/C8E/BA0/sprockets%2F08f8e8332b29f19e64082789d34b6e10 +0 -0
  377. data/test/dummy/tmp/cache/assets/C8E/D10/sprockets%2F925a7d498e00228a891b7835bf3787b1 +0 -0
  378. data/test/dummy/tmp/cache/assets/C8E/E40/sprockets%2F96aaf9af5e7906347880902610773bc5 +0 -0
  379. data/test/dummy/tmp/cache/assets/C8F/030/sprockets%2F6e7f990a153258258b23f435e85b583d +0 -0
  380. data/test/dummy/tmp/cache/assets/C90/DC0/sprockets%2Fd540859f390d384194ad013e88a099f7 +0 -0
  381. data/test/dummy/tmp/cache/assets/C91/F00/sprockets%2F0f611f4f95811990472ff1b6f95383d5 +0 -0
  382. data/test/dummy/tmp/cache/assets/C92/E60/sprockets%2Fa80a146215a040d03e312a796c0b95f2 +0 -0
  383. data/test/dummy/tmp/cache/assets/C93/F70/sprockets%2F65f6452a7e17925ac0894c3e1858874c +0 -0
  384. data/test/dummy/tmp/cache/assets/C94/200/sprockets%2F8dae686ee6012f59a55568f381753237 +0 -0
  385. data/test/dummy/tmp/cache/assets/C94/230/sprockets%2Ff1065a9c342c30d071c501513a608e7a +0 -0
  386. data/test/dummy/tmp/cache/assets/C96/2C0/sprockets%2Fe4683318365884fbd295708ffdd76411 +0 -0
  387. data/test/dummy/tmp/cache/assets/C96/C30/sprockets%2F05c3e0fdab78193100597ca21732b240 +0 -0
  388. data/test/dummy/tmp/cache/assets/C97/EA0/sprockets%2F5cf03181a14067fc4a5ae8220d360218 +0 -0
  389. data/test/dummy/tmp/cache/assets/C98/410/sprockets%2F87851f95936d3c7c5c00f267539c158f +0 -0
  390. data/test/dummy/tmp/cache/assets/C98/D30/sprockets%2F3f2411651caa9b4fd0833085b001f490 +0 -0
  391. data/test/dummy/tmp/cache/assets/C9B/D70/sprockets%2F3673a307810246b3d9e4ca84d3a8000a +0 -0
  392. data/test/dummy/tmp/cache/assets/C9C/580/sprockets%2Ff2350c8af961d9861684a79b18f45669 +0 -0
  393. data/test/dummy/tmp/cache/assets/C9D/CA0/sprockets%2Fd6488368e96de6905676c74fb79b3210 +0 -0
  394. data/test/dummy/tmp/cache/assets/C9F/CE0/sprockets%2F56383454ba44300671223dd6ab4b7ed3 +0 -0
  395. data/test/dummy/tmp/cache/assets/CA0/400/sprockets%2F416eb009b505cf50a4088253ba48268a +0 -0
  396. data/test/dummy/tmp/cache/assets/CA2/4E0/sprockets%2F064662810df01b94c2434af6f90161af +0 -0
  397. data/test/dummy/tmp/cache/assets/CA3/E30/sprockets%2F2bc81b3b8b3ac52590515856f421605d +0 -0
  398. data/test/dummy/tmp/cache/assets/CA4/0A0/sprockets%2F482164b83a43ac07c4e351f2a936247b +0 -0
  399. data/test/dummy/tmp/cache/assets/CA5/1A0/sprockets%2Fb02357f6d5905e5500c7fc529af10243 +0 -0
  400. data/test/dummy/tmp/cache/assets/CA5/2F0/sprockets%2F54df4c2621764801d17a342673c6eac2 +0 -0
  401. data/test/dummy/tmp/cache/assets/CA5/F30/sprockets%2Fb2f70423bf51f566d201679bd037170e +0 -0
  402. data/test/dummy/tmp/cache/assets/CA6/AC0/sprockets%2F27c15c84305f4b0062cf363c75c067c6 +0 -0
  403. data/test/dummy/tmp/cache/assets/CA7/E00/sprockets%2F6bc096e2551c03a3c27cf1667721608d +0 -0
  404. data/test/dummy/tmp/cache/assets/CA8/080/sprockets%2Fad2824627f815e1154d19e03b35f44a5 +0 -0
  405. data/test/dummy/tmp/cache/assets/CA8/2F0/sprockets%2F912149fc7423810b329a7f2cc6d82a32 +0 -0
  406. data/test/dummy/tmp/cache/assets/CA8/BF0/sprockets%2Fe911b490684958767bd3c0203411bbdb +0 -0
  407. data/test/dummy/tmp/cache/assets/CA9/5A0/sprockets%2F8282351dd11504a68cbc8500b7786cf2 +0 -0
  408. data/test/dummy/tmp/cache/assets/CA9/E20/sprockets%2F1ca84c82be52603a0c947256a38a0598 +0 -0
  409. data/test/dummy/tmp/cache/assets/CAA/3C0/sprockets%2F75ce813900f222ce7892711f61db04d3 +0 -0
  410. data/test/dummy/tmp/cache/assets/CAA/400/sprockets%2F5c330e413aa8e6769050215b5366c7ef +0 -0
  411. data/test/dummy/tmp/cache/assets/CAA/9F0/sprockets%2Fb4132c4d2b7f819be30755173373b9c3 +0 -0
  412. data/test/dummy/tmp/cache/assets/CAA/D90/sprockets%2Fd477a5c2046351a0c462bb945e3954e5 +0 -0
  413. data/test/dummy/tmp/cache/assets/CAB/C30/sprockets%2F161e910a8e74f95b2333dd133e2b5557 +0 -0
  414. data/test/dummy/tmp/cache/assets/CAD/540/sprockets%2F6cd6077d2d3b9603d4135c97108ad580 +0 -0
  415. data/test/dummy/tmp/cache/assets/CAD/CF0/sprockets%2F25811882cd57a31606348eb7b16f4f0d +0 -0
  416. data/test/dummy/tmp/cache/assets/CAE/220/sprockets%2Fc0b1580bb4a89220283613a991ef6f96 +0 -0
  417. data/test/dummy/tmp/cache/assets/CAE/400/sprockets%2F001d42e622970fc906953559dc55cce0 +0 -0
  418. data/test/dummy/tmp/cache/assets/CAF/AD0/sprockets%2Fec228a94364d0d686876d02550ed15c1 +0 -0
  419. data/test/dummy/tmp/cache/assets/CB0/4D0/sprockets%2Fc8d3b85d3b111031888d656507d9c54a +0 -0
  420. data/test/dummy/tmp/cache/assets/CB1/3A0/sprockets%2F22de41499517af8aa582914442e7f4a1 +0 -0
  421. data/test/dummy/tmp/cache/assets/CB1/D20/sprockets%2F3af266589b487d2511386a5c93bac801 +0 -0
  422. data/test/dummy/tmp/cache/assets/CB3/C00/sprockets%2F63c296a983bb460c9848035483be2cb2 +0 -0
  423. data/test/dummy/tmp/cache/assets/CB6/560/sprockets%2F59d6144728c7d2d07ee64502db56329c +0 -0
  424. data/test/dummy/tmp/cache/assets/CB6/980/sprockets%2F908752baca0860f89a1adb4963592925 +0 -0
  425. data/test/dummy/tmp/cache/assets/CB6/AA0/sprockets%2F56d5b3f736db575c715d50659511ba76 +0 -0
  426. data/test/dummy/tmp/cache/assets/CB6/C90/sprockets%2F7f9e00e1350735a928c44c7b3e57198a +0 -0
  427. data/test/dummy/tmp/cache/assets/CB7/020/sprockets%2F688c02f7952a69b4a5098921c01b87cb +0 -0
  428. data/test/dummy/tmp/cache/assets/CB7/140/sprockets%2F548af446b8c04062f6dc9335d3887d21 +0 -0
  429. data/test/dummy/tmp/cache/assets/CB7/180/sprockets%2F01772f15f958d4918f3143f1dda172d9 +0 -0
  430. data/test/dummy/tmp/cache/assets/CB7/1F0/sprockets%2F4197d93e3b348c16a25a531fd9f30498 +0 -0
  431. data/test/dummy/tmp/cache/assets/CB7/ED0/sprockets%2Ff8695d0f1536c18f414dfa467632323f +0 -0
  432. data/test/dummy/tmp/cache/assets/CB8/180/sprockets%2Fe66eae8997e04c4bf70531e166511662 +0 -0
  433. data/test/dummy/tmp/cache/assets/CB8/1A0/sprockets%2F31aa6a08d84e55500e99848f019a64f7 +0 -0
  434. data/test/dummy/tmp/cache/assets/CB8/3D0/sprockets%2F82660934f515fc61a144b9c9cd39c482 +0 -0
  435. data/test/dummy/tmp/cache/assets/CB8/5E0/sprockets%2F39ac9e81027348a7d3678c7b902a607d +0 -0
  436. data/test/dummy/tmp/cache/assets/CB8/840/sprockets%2F8c74fb265297f32a4fc87a213827b742 +0 -0
  437. data/test/dummy/tmp/cache/assets/CB8/B60/sprockets%2F181d3aa0c983e79f2f700259e1885b56 +0 -0
  438. data/test/dummy/tmp/cache/assets/CB8/EA0/sprockets%2F9e63d365e2159c725d111698cc04a7e7 +0 -0
  439. data/test/dummy/tmp/cache/assets/CB8/EF0/sprockets%2Ff47909056b54fbb653c60c2b89746b07 +0 -0
  440. data/test/dummy/tmp/cache/assets/CB9/0C0/sprockets%2F4e8172b657637124dc8887da053dc90d +0 -0
  441. data/test/dummy/tmp/cache/assets/CB9/D00/sprockets%2Fdec288179177920eb8ac005438fc9425 +0 -0
  442. data/test/dummy/tmp/cache/assets/CBA/470/sprockets%2F4f40cdd502a8495759245e785f4b10e8 +0 -0
  443. data/test/dummy/tmp/cache/assets/CBB/AC0/sprockets%2F7d43158c74b6a517d68d8e3141657cd6 +0 -0
  444. data/test/dummy/tmp/cache/assets/CBC/620/sprockets%2Fa222028f7794f7e9c619a390b389f0d3 +0 -0
  445. data/test/dummy/tmp/cache/assets/CBC/670/sprockets%2Fed21a216241599e0adb837666f64f679 +0 -0
  446. data/test/dummy/tmp/cache/assets/CBC/6C0/sprockets%2F464439bf5a0e28d80594ee09a9509f51 +0 -0
  447. data/test/dummy/tmp/cache/assets/CBE/F20/sprockets%2F7610efc00f29935606275944978fbabf +0 -0
  448. data/test/dummy/tmp/cache/assets/CBF/3A0/sprockets%2Fc7b6a2891626c77607ea2881dc84d475 +0 -0
  449. data/test/dummy/tmp/cache/assets/CBF/8B0/sprockets%2F5c98534d57c1e7f7d2926173d27e4d14 +0 -0
  450. data/test/dummy/tmp/cache/assets/CC0/170/sprockets%2F458478f2faf8559d5008ca28c64232f7 +0 -0
  451. data/test/dummy/tmp/cache/assets/CC0/640/sprockets%2Fd0118b2031c44248f899dc8f66784c9e +0 -0
  452. data/test/dummy/tmp/cache/assets/CC0/6D0/sprockets%2F5e75696d7832c695f40e7b1fd3d31183 +0 -0
  453. data/test/dummy/tmp/cache/assets/CC0/E60/sprockets%2F9731b0739ec7356b2e484cb427d6955f +0 -0
  454. data/test/dummy/tmp/cache/assets/CC1/280/sprockets%2Fec6dd36652375a17476b9e50274fd884 +0 -0
  455. data/test/dummy/tmp/cache/assets/CC1/F60/sprockets%2F426b3cae945f45e921e6698c24153d98 +0 -0
  456. data/test/dummy/tmp/cache/assets/CC2/4A0/sprockets%2F3879518df43c51792d5f7108a68d17be +0 -0
  457. data/test/dummy/tmp/cache/assets/CC3/B20/sprockets%2Fb3c85f734d6995079665c32cb16d5f63 +0 -0
  458. data/test/dummy/tmp/cache/assets/CC3/D80/sprockets%2F02802a4b1c372f0f60a7de1c34252f61 +0 -0
  459. data/test/dummy/tmp/cache/assets/CC4/760/sprockets%2F775571eb5b67e74f93b19ae786a16903 +0 -0
  460. data/test/dummy/tmp/cache/assets/CC4/B80/sprockets%2F5b090557c9468f93cc1ab77898ba2629 +0 -0
  461. data/test/dummy/tmp/cache/assets/CC5/EE0/sprockets%2F4d843268a36e2f306b869e077f157ff7 +0 -0
  462. data/test/dummy/tmp/cache/assets/CC7/0B0/sprockets%2Fa26009e31f9e68672f4fc7f873909a64 +0 -0
  463. data/test/dummy/tmp/cache/assets/CC8/550/sprockets%2F570b1a4a422604f361169db666caaa52 +0 -0
  464. data/test/dummy/tmp/cache/assets/CC8/B90/sprockets%2F5d9845c9282886a459f148b3f0d95bc3 +0 -0
  465. data/test/dummy/tmp/cache/assets/CCC/B80/sprockets%2F55f5d38df94594621ea86f96c18171e7 +0 -0
  466. data/test/dummy/tmp/cache/assets/CCC/F50/sprockets%2Fe277e38f225f8781944a34897d7ef3c1 +0 -0
  467. data/test/dummy/tmp/cache/assets/CCD/9B0/sprockets%2F0b3845e705c1a2c20c80b56c9c8a2246 +0 -0
  468. data/test/dummy/tmp/cache/assets/CCE/390/sprockets%2Feb62012223bcb36429cd139d360eb567 +0 -0
  469. data/test/dummy/tmp/cache/assets/CCE/B90/sprockets%2F582c396edb7919e3448f3792b7a8627e +0 -0
  470. data/test/dummy/tmp/cache/assets/CCF/F90/sprockets%2F5829cbee03489d953e8a7f842925776b +0 -0
  471. data/test/dummy/tmp/cache/assets/CD0/4B0/sprockets%2Ff96040176e767aa2118dc2d16a4b413c +0 -0
  472. data/test/dummy/tmp/cache/assets/CD0/990/sprockets%2F3027964ce732931bb70c158aa61ab08d +0 -0
  473. data/test/dummy/tmp/cache/assets/CD2/5C0/sprockets%2F17ae7026f1ea272517ff23191fca0185 +0 -0
  474. data/test/dummy/tmp/cache/assets/CD2/C10/sprockets%2F854f3baa4316e8f290a5161d3a35508a +0 -0
  475. data/test/dummy/tmp/cache/assets/CD2/DD0/sprockets%2F467c5a1fc9b5b71b044a8130f6045c27 +0 -0
  476. data/test/dummy/tmp/cache/assets/CD3/250/sprockets%2F9982c13eacaf46622739beab50120614 +0 -0
  477. data/test/dummy/tmp/cache/assets/CD3/DB0/sprockets%2F38ec8b4912b23f2b31322570d56c9c2b +0 -0
  478. data/test/dummy/tmp/cache/assets/CD4/760/sprockets%2F17016417b655023f2a67d7d583fadb2b +0 -0
  479. data/test/dummy/tmp/cache/assets/CD5/5E0/sprockets%2F664b99d990cc66f797b55427fa64848b +0 -0
  480. data/test/dummy/tmp/cache/assets/CD6/010/sprockets%2F4d78a2a73773d53077d96c4ca0b0d150 +0 -0
  481. data/test/dummy/tmp/cache/assets/CD7/1C0/sprockets%2F7da0653006165e7cfd74ec5104f0573d +0 -0
  482. data/test/dummy/tmp/cache/assets/CD8/C00/sprockets%2F9090b24116705be9a907d1db3b66a65e +0 -0
  483. data/test/dummy/tmp/cache/assets/CD8/D40/sprockets%2F73570572f17300ebf2dda1ef2635149e +0 -0
  484. data/test/dummy/tmp/cache/assets/CD8/DD0/sprockets%2F7b4bb389373d86c1a13508d75c1071db +0 -0
  485. data/test/dummy/tmp/cache/assets/CD9/970/sprockets%2F136161482305ce48be8cb039cba47f64 +0 -0
  486. data/test/dummy/tmp/cache/assets/CD9/9B0/sprockets%2F1682bc0003ad36c529918c9b68272afc +0 -0
  487. data/test/dummy/tmp/cache/assets/CD9/B20/sprockets%2F65698070c3bce81f5ee4eb101722b741 +0 -0
  488. data/test/dummy/tmp/cache/assets/CD9/B80/sprockets%2Fb0b1f25c9374d2569a655d2a1dd25357 +0 -0
  489. data/test/dummy/tmp/cache/assets/CD9/D90/sprockets%2F87979893cfde1b28afc60797a9948345 +0 -0
  490. data/test/dummy/tmp/cache/assets/CDA/100/sprockets%2Fb7e25fba039892f8213535e03aea6092 +0 -0
  491. data/test/dummy/tmp/cache/assets/CDA/400/sprockets%2F529ea92c26a3ef31a4c1250ec7095882 +0 -0
  492. data/test/dummy/tmp/cache/assets/CDB/060/sprockets%2F59609411fe82f2c303bc2f8c7d045e14 +0 -0
  493. data/test/dummy/tmp/cache/assets/CDB/630/sprockets%2Fc48aca3d09504ff1811d9234c8267f50 +0 -0
  494. data/test/dummy/tmp/cache/assets/CDB/F40/sprockets%2F2e6f666e74290aebb31116b0f913492e +0 -0
  495. data/test/dummy/tmp/cache/assets/CDC/CE0/sprockets%2Fadf5a20fd1595b883ac11518595364b4 +0 -0
  496. data/test/dummy/tmp/cache/assets/CDC/F40/sprockets%2Fc4533fdc840bf49b110953cc54e37265 +0 -0
  497. data/test/dummy/tmp/cache/assets/CDD/4D0/sprockets%2F0f6b3e82dd3d95341ee015499e3072b3 +0 -0
  498. data/test/dummy/tmp/cache/assets/CDD/950/sprockets%2F50953bbf520730dfc834765c7b2b8b62 +0 -0
  499. data/test/dummy/tmp/cache/assets/CDE/380/sprockets%2F1a7df686a9a25e3130f825db1b541867 +0 -0
  500. data/test/dummy/tmp/cache/assets/CDE/FE0/sprockets%2F73622e63d431f8250cd57842fc0bec83 +0 -0
  501. data/test/dummy/tmp/cache/assets/CDF/710/sprockets%2F16d775d6707a066df80d10cd1528ff33 +0 -0
  502. data/test/dummy/tmp/cache/assets/CDF/CA0/sprockets%2F3d5b2c400b7877c15ec29575d95b613b +0 -0
  503. data/test/dummy/tmp/cache/assets/CE0/2C0/sprockets%2F6b717c9263b7ba46f0074858023dfa5e +0 -0
  504. data/test/dummy/tmp/cache/assets/CE0/420/sprockets%2F5b3a1508216cb6b968313beae256f788 +0 -0
  505. data/test/dummy/tmp/cache/assets/CE0/4A0/sprockets%2F15600c7f628be37a11543a8e73c9ab89 +0 -0
  506. data/test/dummy/tmp/cache/assets/CE1/A00/sprockets%2F168b4bf7364dfd883a5930302e0f554c +0 -0
  507. data/test/dummy/tmp/cache/assets/CE2/A30/sprockets%2Fd830d0d39e53a3a844891a252e864d9a +0 -0
  508. data/test/dummy/tmp/cache/assets/CE3/240/sprockets%2F018ba37f3cc68a07d752729e44e1790e +0 -0
  509. data/test/dummy/tmp/cache/assets/CE4/260/sprockets%2F4144597dde60f756c9a533ee270ba742 +0 -0
  510. data/test/dummy/tmp/cache/assets/CE4/F60/sprockets%2Fbc3490162e3489bf88aab055d19397f0 +0 -0
  511. data/test/dummy/tmp/cache/assets/CE5/0C0/sprockets%2F08f216db06418a882f888d5db6c4a119 +0 -0
  512. data/test/dummy/tmp/cache/assets/CE5/820/sprockets%2Fd5837a90d9d83d7208a14905e1f0f63d +0 -0
  513. data/test/dummy/tmp/cache/assets/CE5/A80/sprockets%2Ff284835027dd09004e65c8c7fcf4137d +0 -0
  514. data/test/dummy/tmp/cache/assets/CE5/F10/sprockets%2Fe9cf045465025d8527c83c3b93625fca +0 -0
  515. data/test/dummy/tmp/cache/assets/CE5/F80/sprockets%2F411e28ad08572cd67fcf1901569c45c8 +0 -0
  516. data/test/dummy/tmp/cache/assets/CE5/F90/sprockets%2F31557450886bf9c124f2fdb42704ce8e +0 -0
  517. data/test/dummy/tmp/cache/assets/CE6/320/sprockets%2Fb0787a644a740c56eee3dd435676327d +0 -0
  518. data/test/dummy/tmp/cache/assets/CE6/4A0/sprockets%2F9c04b8b8df7217a708732da4982a5f61 +0 -0
  519. data/test/dummy/tmp/cache/assets/CE6/600/sprockets%2Feb2a1f47171172f95668f6eaaa691933 +0 -0
  520. data/test/dummy/tmp/cache/assets/CE7/650/sprockets%2F834b60044436456eefb9ce5cf7144d38 +0 -0
  521. data/test/dummy/tmp/cache/assets/CE7/970/sprockets%2Fc89cf760b663827c5e771b93d107b2c2 +0 -0
  522. data/test/dummy/tmp/cache/assets/CE7/A40/sprockets%2F2974c4aef7a04f06738c8f6a2066e292 +0 -0
  523. data/test/dummy/tmp/cache/assets/CE7/C70/sprockets%2F8627e999f207ce7214e0ab06afe86412 +0 -0
  524. data/test/dummy/tmp/cache/assets/CE8/AA0/sprockets%2Fd569f5f91016b77401782ef3b42de6a6 +0 -0
  525. data/test/dummy/tmp/cache/assets/CE8/C90/sprockets%2Fb58b83d1bc902887bc247af8336556c4 +0 -0
  526. data/test/dummy/tmp/cache/assets/CE8/DC0/sprockets%2F49324064376deb60c942b7d85a3e7d9b +0 -0
  527. data/test/dummy/tmp/cache/assets/CE9/2D0/sprockets%2F0b878e7b11d378531e0a5d085e8e9d28 +0 -0
  528. data/test/dummy/tmp/cache/assets/CE9/700/sprockets%2Fa5a19cf16c351d647a668199842ef3b5 +0 -0
  529. data/test/dummy/tmp/cache/assets/CE9/D60/sprockets%2F4652a196a6e10ac52969547e909d8cad +0 -0
  530. data/test/dummy/tmp/cache/assets/CE9/F40/sprockets%2Fc23323fb2ef44ade3104929589f694e6 +0 -0
  531. data/test/dummy/tmp/cache/assets/CEA/6D0/sprockets%2F1da842257a051a9e871c739d29b7d77f +0 -0
  532. data/test/dummy/tmp/cache/assets/CEA/860/sprockets%2F198736e2441a36cecc857814e7dda932 +0 -0
  533. data/test/dummy/tmp/cache/assets/CEB/0A0/sprockets%2Fa19152c9838b60787bad54bf0f5f6448 +0 -0
  534. data/test/dummy/tmp/cache/assets/CEB/B70/sprockets%2F139d9789a1a5e456ca4f796db15c5450 +0 -0
  535. data/test/dummy/tmp/cache/assets/CEB/B80/sprockets%2Fbd5b638965aac89832c75292e6c1435c +0 -0
  536. data/test/dummy/tmp/cache/assets/CEC/030/sprockets%2F15d996d59f6c9ce6c21f52604b903c71 +0 -0
  537. data/test/dummy/tmp/cache/assets/CEC/B30/sprockets%2F7cf9a1c683f008354d7837ea11439f6f +0 -0
  538. data/test/dummy/tmp/cache/assets/CED/500/sprockets%2F23db1088d6beb9cff9245e1648555294 +0 -0
  539. data/test/dummy/tmp/cache/assets/CED/6F0/sprockets%2F17947555632d86e915cf6ccb16a545fb +0 -0
  540. data/test/dummy/tmp/cache/assets/CED/730/sprockets%2Ffd2399e766d1a513490bd481898b2eb5 +0 -0
  541. data/test/dummy/tmp/cache/assets/CEE/490/sprockets%2Fb74aec392e126b756bc86972964923db +0 -0
  542. data/test/dummy/tmp/cache/assets/CEE/C90/sprockets%2Fc66d1d80067892e2b17e3666f8255eec +0 -0
  543. data/test/dummy/tmp/cache/assets/CEE/E80/sprockets%2Fad1e70a7b3529ccf694793554539c57c +0 -0
  544. data/test/dummy/tmp/cache/assets/CEF/160/sprockets%2F74caa14e02046241cad519b5c36c20a6 +0 -0
  545. data/test/dummy/tmp/cache/assets/CEF/4E0/sprockets%2Fb8ba5861e53326dbfa469947916dd464 +0 -0
  546. data/test/dummy/tmp/cache/assets/CEF/B60/sprockets%2Fb4101a16cca2590452bb141f093b8f1d +0 -0
  547. data/test/dummy/tmp/cache/assets/CEF/EF0/sprockets%2F3ba938d6ffe14f978911f3ec00356269 +0 -0
  548. data/test/dummy/tmp/cache/assets/CEF/F00/sprockets%2F8ac77338a1dc57bb32999653c561e74e +0 -0
  549. data/test/dummy/tmp/cache/assets/CF0/950/sprockets%2Fd08f99c34c161881adb05d342e8984f9 +0 -0
  550. data/test/dummy/tmp/cache/assets/CF1/000/sprockets%2Fa779ae7d9f80d3098529264b91dd405d +0 -0
  551. data/test/dummy/tmp/cache/assets/CF1/5B0/sprockets%2F46e4886602bb924fc5c638865b6bf4f2 +0 -0
  552. data/test/dummy/tmp/cache/assets/CF1/FC0/sprockets%2F33121681479e8f584ea40f68df55f6bd +0 -0
  553. data/test/dummy/tmp/cache/assets/CF2/D50/sprockets%2Ff2a473f4e818e9762ea649a24fa77076 +0 -0
  554. data/test/dummy/tmp/cache/assets/CF4/7C0/sprockets%2Ff17cd218fc062a2279f957409f97d86b +0 -0
  555. data/test/dummy/tmp/cache/assets/CF5/2E0/sprockets%2F14513ab2f3a0311abd083e70c99bd293 +0 -0
  556. data/test/dummy/tmp/cache/assets/CF5/5C0/sprockets%2F64a4190014fe00d17e708fc02dfc2a32 +0 -0
  557. data/test/dummy/tmp/cache/assets/CF6/4E0/sprockets%2Ff9c27df89c8173d41850b9c40e766a85 +0 -0
  558. data/test/dummy/tmp/cache/assets/CF6/B00/sprockets%2F97db464ddd7439e97bb4708f65170d37 +0 -0
  559. data/test/dummy/tmp/cache/assets/CF8/130/sprockets%2Fd519234d99322fc8c5e8d16d52e96d78 +0 -0
  560. data/test/dummy/tmp/cache/assets/CF9/B70/sprockets%2F8144ebf49f85b18c46d90b897239b56e +0 -0
  561. data/test/dummy/tmp/cache/assets/CF9/D30/sprockets%2F35b1d102792fb3cf6fd942010eab0247 +0 -0
  562. data/test/dummy/tmp/cache/assets/CFB/0C0/sprockets%2F75c05ecd0785f346b63ec7997f0a8859 +0 -0
  563. data/test/dummy/tmp/cache/assets/CFB/540/sprockets%2Fc40fe1438edc416788894df8b834f944 +0 -0
  564. data/test/dummy/tmp/cache/assets/CFB/600/sprockets%2F3c393f3e9d70bc95547ef56946227ee7 +0 -0
  565. data/test/dummy/tmp/cache/assets/CFC/580/sprockets%2Fccf1110c4053d3e7634551f70136defa +0 -0
  566. data/test/dummy/tmp/cache/assets/CFD/750/sprockets%2Ff86ed3e35003369a86787f9cb98de345 +0 -0
  567. data/test/dummy/tmp/cache/assets/CFD/EA0/sprockets%2Fe43051fb1f2752c010e292ccbc53399b +0 -0
  568. data/test/dummy/tmp/cache/assets/CFE/3B0/sprockets%2F12fa6cdb178a3bec72103380684da732 +0 -0
  569. data/test/dummy/tmp/cache/assets/CFF/DF0/sprockets%2F4b52ca2b9566ca010092d68cd21690ed +0 -0
  570. data/test/dummy/tmp/cache/assets/CFF/EC0/sprockets%2Ff4f149303aecd036f1f1a3245135d8b5 +0 -0
  571. data/test/dummy/tmp/cache/assets/CFF/FC0/sprockets%2Ff34d34ffdba26c9d04860c02d6412107 +0 -0
  572. data/test/dummy/tmp/cache/assets/D00/0D0/sprockets%2F604a7b3d306124a068dc6de2b7a8744a +0 -0
  573. data/test/dummy/tmp/cache/assets/D00/5D0/sprockets%2F02f5e8429793cb8b4b69d38f8a7395e9 +0 -0
  574. data/test/dummy/tmp/cache/assets/D00/690/sprockets%2F488324fb426a1e3cb3ca16488caf4004 +0 -0
  575. data/test/dummy/tmp/cache/assets/D00/F10/sprockets%2F168b7c79236d9aed9c68dc169a677287 +0 -0
  576. data/test/dummy/tmp/cache/assets/D01/210/sprockets%2F98094becbf17c66d1c25ba8421b43022 +0 -0
  577. data/test/dummy/tmp/cache/assets/D01/6F0/sprockets%2F740aff323f074082319acda2a34e781e +0 -0
  578. data/test/dummy/tmp/cache/assets/D01/710/sprockets%2Fc4b5b592d40620ba6f22c3fe611e4529 +0 -0
  579. data/test/dummy/tmp/cache/assets/D01/BF0/sprockets%2F7460a4a876b0a7613baf35383db1e45a +0 -0
  580. data/test/dummy/tmp/cache/assets/D02/320/sprockets%2F95d58a54f71758967c19cec8367ceb83 +0 -0
  581. data/test/dummy/tmp/cache/assets/D02/4C0/sprockets%2F6386d72b2c51c911a7fd84ba612430cc +0 -0
  582. data/test/dummy/tmp/cache/assets/D02/6E0/sprockets%2F886e897f07ee48ec4e9f640643440dd9 +0 -0
  583. data/test/dummy/tmp/cache/assets/D02/DF0/sprockets%2F61105bd3dc48cd91aad36068219137bf +0 -0
  584. data/test/dummy/tmp/cache/assets/D03/290/sprockets%2F2721f08b1d68fe8614cb5181bd500ac7 +0 -0
  585. data/test/dummy/tmp/cache/assets/D05/8A0/sprockets%2Fd1e45653c3a4190fb4dcc1b690781a55 +0 -0
  586. data/test/dummy/tmp/cache/assets/D06/3A0/sprockets%2Fa7fe0050b17a8652517c80d2be6c7e53 +0 -0
  587. data/test/dummy/tmp/cache/assets/D06/590/sprockets%2F19c899c20cf5d9b8629878e3add89708 +0 -0
  588. data/test/dummy/tmp/cache/assets/D06/A70/sprockets%2Ff5da4e04222a35db9d267255424bf5c6 +0 -0
  589. data/test/dummy/tmp/cache/assets/D07/7F0/sprockets%2F3fb0ed6b32aa83a6878d12a209c38824 +0 -0
  590. data/test/dummy/tmp/cache/assets/D07/BF0/sprockets%2F47962bb2378ffb6010aaa3c0238f6d66 +0 -0
  591. data/test/dummy/tmp/cache/assets/D07/C40/sprockets%2F995a361a4f2fa731412d29450fab6c4e +0 -0
  592. data/test/dummy/tmp/cache/assets/D08/170/sprockets%2Ff33de33cd10d81a6c5c5785f22c73235 +0 -0
  593. data/test/dummy/tmp/cache/assets/D08/670/sprockets%2F81413182cba11b4a7d7c899f4d7c33b2 +0 -0
  594. data/test/dummy/tmp/cache/assets/D09/0E0/sprockets%2F0e29193919038f14b1cc1a8fbfbd1861 +0 -0
  595. data/test/dummy/tmp/cache/assets/D09/7F0/sprockets%2Fa2d67c31222348f16a9812df26da3e8d +0 -0
  596. data/test/dummy/tmp/cache/assets/D09/E40/sprockets%2Fc2693927bc52084b4d2b89373aaa0ac9 +0 -0
  597. data/test/dummy/tmp/cache/assets/D0A/830/sprockets%2F3155dcf93a62cf601a0d48b2806b599b +0 -0
  598. data/test/dummy/tmp/cache/assets/D0A/830/sprockets%2F830cdfb33202453675d55d8de703fa2f +0 -0
  599. data/test/dummy/tmp/cache/assets/D0B/030/sprockets%2Fb21e08fc7a953c2a6924cc761428d71b +0 -0
  600. data/test/dummy/tmp/cache/assets/D0B/3E0/sprockets%2F66c11f02337c8851bfab67bbb3b94916 +0 -0
  601. data/test/dummy/tmp/cache/assets/D0B/860/sprockets%2F7efd9f55bd4a5e26019718ab2115c307 +0 -0
  602. data/test/dummy/tmp/cache/assets/D0B/8C0/sprockets%2F3905fe859d072dc46ce9140e0ba31f07 +0 -0
  603. data/test/dummy/tmp/cache/assets/D0B/A40/sprockets%2Fc66cc2480f4079cda1648e52d19b70c1 +0 -0
  604. data/test/dummy/tmp/cache/assets/D0B/E20/sprockets%2Ffabf936c2485109116fb25a3a277b28f +0 -0
  605. data/test/dummy/tmp/cache/assets/D0C/2E0/sprockets%2Fecb35ec370e250a63784c2f508b76a38 +0 -0
  606. data/test/dummy/tmp/cache/assets/D0C/9A0/sprockets%2F036b6fe78ba5c07955461a85baa7a344 +0 -0
  607. data/test/dummy/tmp/cache/assets/D0D/440/sprockets%2F4a4bdc15db50a07f384773aad9367746 +0 -0
  608. data/test/dummy/tmp/cache/assets/D0D/510/sprockets%2Ff56c3c9ffb168363a1f09712b0a456f2 +0 -0
  609. data/test/dummy/tmp/cache/assets/D0D/C00/sprockets%2F5781daf7b7c6765ab6910e75d5ba3102 +0 -0
  610. data/test/dummy/tmp/cache/assets/D0D/EC0/sprockets%2Fe64b6ea3470a7820f0f6b1955be345a8 +0 -0
  611. data/test/dummy/tmp/cache/assets/D0D/F70/sprockets%2F539c91e2874b82d2d0a2a8de60a5815d +0 -0
  612. data/test/dummy/tmp/cache/assets/D0E/010/sprockets%2F797b9e08c55a2106f8e2dace455710d0 +0 -0
  613. data/test/dummy/tmp/cache/assets/D0E/1C0/sprockets%2Fa677d9c320d86b48f73fc2b11651a08d +0 -0
  614. data/test/dummy/tmp/cache/assets/D0E/4E0/sprockets%2Fb2cdbc63ab95b474d109990759329a2a +0 -0
  615. data/test/dummy/tmp/cache/assets/D0E/690/sprockets%2F8a0ed53d600da2f2c788d1659ba66346 +0 -0
  616. data/test/dummy/tmp/cache/assets/D0E/E40/sprockets%2Fdc478cae3337db897210c13c9c711e82 +0 -0
  617. data/test/dummy/tmp/cache/assets/D0E/EA0/sprockets%2F1d36a1420cf4558fb3c793316ae89ca7 +0 -0
  618. data/test/dummy/tmp/cache/assets/D0F/0B0/sprockets%2Fe6c9fc316b319d1259c8eb19c5e30522 +0 -0
  619. data/test/dummy/tmp/cache/assets/D0F/210/sprockets%2F252e51920faf5ad7c1ad2f6c96679223 +0 -0
  620. data/test/dummy/tmp/cache/assets/D0F/560/sprockets%2Fbc6d28ba9257a963050c675a015d8d6f +0 -0
  621. data/test/dummy/tmp/cache/assets/D0F/590/sprockets%2F0602a50a4d729e9be6e2589d62d028bf +0 -0
  622. data/test/dummy/tmp/cache/assets/D0F/9E0/sprockets%2F1536c04e487ca1a768d90a68513c3cff +0 -0
  623. data/test/dummy/tmp/cache/assets/D0F/A30/sprockets%2F249470f4bb839f291f5fd4f180a21fc0 +0 -0
  624. data/test/dummy/tmp/cache/assets/D0F/B20/sprockets%2F0bcc3319d46d753c43f875a2c26983ac +0 -0
  625. data/test/dummy/tmp/cache/assets/D11/B80/sprockets%2F5afc83bc162794fd376f14d2d53922e0 +0 -0
  626. data/test/dummy/tmp/cache/assets/D11/F70/sprockets%2Fb440b99688b10ef67502aed36d1ee652 +0 -0
  627. data/test/dummy/tmp/cache/assets/D11/FC0/sprockets%2F9bd6c83d367423fe05ef6c3338143aa6 +0 -0
  628. data/test/dummy/tmp/cache/assets/D11/FD0/sprockets%2Fa7872e06fd015c19f48f4c350d63cc19 +0 -0
  629. data/test/dummy/tmp/cache/assets/D12/0A0/sprockets%2F7685a91229bc2b6196076ea7e1c4dec2 +0 -0
  630. data/test/dummy/tmp/cache/assets/D12/1C0/sprockets%2F5901cb9faf1725dd2e472ca2965b4287 +0 -0
  631. data/test/dummy/tmp/cache/assets/D12/BE0/sprockets%2Ff01aaa83ff0f19584cb671837a7d7444 +0 -0
  632. data/test/dummy/tmp/cache/assets/D13/520/sprockets%2F3316346df1f7f5ff0202f8d5b4742de7 +0 -0
  633. data/test/dummy/tmp/cache/assets/D13/690/sprockets%2F305c399e52a63447a7be45c4d5d3dd74 +0 -0
  634. data/test/dummy/tmp/cache/assets/D13/6B0/sprockets%2F0975ed2a9d299bf1c719b3b1137e581b +0 -0
  635. data/test/dummy/tmp/cache/assets/D14/340/sprockets%2F4d057c80e80694c2c4d637ecd538bc08 +0 -0
  636. data/test/dummy/tmp/cache/assets/D14/660/sprockets%2Fd0f1a527bb9b3979c856235aebe80671 +0 -0
  637. data/test/dummy/tmp/cache/assets/D14/7C0/sprockets%2F72562c9166a322a9ed1dee8d6139af63 +0 -0
  638. data/test/dummy/tmp/cache/assets/D14/BD0/sprockets%2Ffc2255112852fb55d96d41a92f8fb6b6 +0 -0
  639. data/test/dummy/tmp/cache/assets/D14/DA0/sprockets%2F54a7d7c2a544df07d57173cda79e9700 +0 -0
  640. data/test/dummy/tmp/cache/assets/D16/420/sprockets%2Fc1439b84cda5475e55f3d8da6071467c +0 -0
  641. data/test/dummy/tmp/cache/assets/D16/780/sprockets%2F6b4a1924545e380c0af7b66ea95f87f1 +0 -0
  642. data/test/dummy/tmp/cache/assets/D16/B50/sprockets%2Fd9b256e8b3e85a8422a1d4fc3674f840 +0 -0
  643. data/test/dummy/tmp/cache/assets/D17/350/sprockets%2F6f74d7451ad7e280399bc5fa4e24517b +0 -0
  644. data/test/dummy/tmp/cache/assets/D17/6C0/sprockets%2F69144d8b21e495ac17e4994fdfa3a803 +0 -0
  645. data/test/dummy/tmp/cache/assets/D17/ED0/sprockets%2F9f9aff2126b34dd922943d2d80d708f2 +0 -0
  646. data/test/dummy/tmp/cache/assets/D18/970/sprockets%2F48fd387e031a0a8e7b5d99fad7138622 +0 -0
  647. data/test/dummy/tmp/cache/assets/D19/680/sprockets%2Fcd3a545b89d274cfd328f4d341f96272 +0 -0
  648. data/test/dummy/tmp/cache/assets/D19/760/sprockets%2F6cb307be30e1d67f838e8d11a0678d89 +0 -0
  649. data/test/dummy/tmp/cache/assets/D19/AD0/sprockets%2F113bd6f12a1645dc5cc6a10bb3045b15 +0 -0
  650. data/test/dummy/tmp/cache/assets/D1B/210/sprockets%2F92ebfed0378e79e9bc22e628733d4042 +0 -0
  651. data/test/dummy/tmp/cache/assets/D1B/C80/sprockets%2F835147dfca8c918a99182e9e2e600f1c +0 -0
  652. data/test/dummy/tmp/cache/assets/D1D/950/sprockets%2Fe99f1e946187b20432f95c06e2aecf74 +0 -0
  653. data/test/dummy/tmp/cache/assets/D1E/360/sprockets%2F4a6a3690f7ffd0ee9f19758978b3a200 +0 -0
  654. data/test/dummy/tmp/cache/assets/D1F/5D0/sprockets%2Fce9e23d48e27f794d23915d707fb9b03 +0 -0
  655. data/test/dummy/tmp/cache/assets/D1F/5F0/sprockets%2Ff8cb248d9fc90758124cd284e17e3b66 +0 -0
  656. data/test/dummy/tmp/cache/assets/D1F/F40/sprockets%2F3d54ac9a79c06d572aa45ea947997f33 +0 -0
  657. data/test/dummy/tmp/cache/assets/D20/A50/sprockets%2F4783e2bd28795d2da95bb0e195d9735e +0 -0
  658. data/test/dummy/tmp/cache/assets/D20/B50/sprockets%2F0d38872e6d89d7e1f96aa655355adf13 +0 -0
  659. data/test/dummy/tmp/cache/assets/D20/F80/sprockets%2Fe23cdef878608fa07f8258026cab7586 +0 -0
  660. data/test/dummy/tmp/cache/assets/D21/030/sprockets%2Fef62cc74774cfc85293287c4e2c19c36 +0 -0
  661. data/test/dummy/tmp/cache/assets/D22/0B0/sprockets%2F9dfda36b032e59892637b875d7af392b +0 -0
  662. data/test/dummy/tmp/cache/assets/D22/2C0/sprockets%2Fe42d5d90d467a803999bdec116955f8b +0 -0
  663. data/test/dummy/tmp/cache/assets/D22/820/sprockets%2F1bc531079d5acc4c26b027b910b2af42 +0 -0
  664. data/test/dummy/tmp/cache/assets/D22/D40/sprockets%2Fc4121b103539f9c9fa321f05b1cb0a6b +0 -0
  665. data/test/dummy/tmp/cache/assets/D23/4B0/sprockets%2Fba03053a389e898f6eaaad18f4866887 +0 -0
  666. data/test/dummy/tmp/cache/assets/D23/610/sprockets%2F0e51cca080cc65e62e080941b232a1ed +0 -0
  667. data/test/dummy/tmp/cache/assets/D25/530/sprockets%2Ffd3a49a96f6efe7726b878d245f12065 +0 -0
  668. data/test/dummy/tmp/cache/assets/D25/C00/sprockets%2Ff63d097054df34bc660bdf98f7661b99 +0 -0
  669. data/test/dummy/tmp/cache/assets/D25/C40/sprockets%2F3ff335667987ab7d9ba79a7b38d362e1 +0 -0
  670. data/test/dummy/tmp/cache/assets/D27/410/sprockets%2F03eba8c67b23a029319bb02a3c149fd3 +0 -0
  671. data/test/dummy/tmp/cache/assets/D29/580/sprockets%2F99f041cf104ac642bb2efa208c4021e7 +0 -0
  672. data/test/dummy/tmp/cache/assets/D2A/E10/sprockets%2F2d2a1cfcc28a38330d30434fd8c1077c +0 -0
  673. data/test/dummy/tmp/cache/assets/D2B/4C0/sprockets%2Ff18e693a0ed61ad0b3175d87d00001cf +0 -0
  674. data/test/dummy/tmp/cache/assets/D2B/BC0/sprockets%2Fc0ce356c1046b2bfef184c53d7120a73 +0 -0
  675. data/test/dummy/tmp/cache/assets/D2C/830/sprockets%2F0bd01633acf234d4f7353765acea4b53 +0 -0
  676. data/test/dummy/tmp/cache/assets/D2D/E40/sprockets%2Faf21fa3d26ad3f68a23532178e20fb15 +0 -0
  677. data/test/dummy/tmp/cache/assets/D2E/420/sprockets%2F0104ec61ab293fdc679a13dc333e9b41 +0 -0
  678. data/test/dummy/tmp/cache/assets/D2E/7D0/sprockets%2Faab2ed88e135c8226c3833a1518a71ab +0 -0
  679. data/test/dummy/tmp/cache/assets/D2E/F80/sprockets%2Ffb5453932c4fa53cfd13941aa9cb4002 +0 -0
  680. data/test/dummy/tmp/cache/assets/D2F/100/sprockets%2F8c0286ee70744ca12c7c12a563de4b2a +0 -0
  681. data/test/dummy/tmp/cache/assets/D2F/770/sprockets%2F02fc9c6163ec87ca3301a8ed104a5d63 +0 -0
  682. data/test/dummy/tmp/cache/assets/D30/230/sprockets%2F579061565dcf87f3b5ef97de79c328f2 +0 -0
  683. data/test/dummy/tmp/cache/assets/D30/870/sprockets%2F4f18811a027c9fdb47bf1815ca43db02 +0 -0
  684. data/test/dummy/tmp/cache/assets/D30/9E0/sprockets%2F0d913be407e5e0c8732bc2c4ed6e2160 +0 -0
  685. data/test/dummy/tmp/cache/assets/D30/C80/sprockets%2F172b4da10359fb5a0921a44756d8cace +0 -0
  686. data/test/dummy/tmp/cache/assets/D32/A80/sprockets%2Fb12fb26042f73cf3b2796abc2836ee20 +0 -0
  687. data/test/dummy/tmp/cache/assets/D32/BF0/sprockets%2F2161effd39b16585e03d2fad60f1c214 +0 -0
  688. data/test/dummy/tmp/cache/assets/D33/6D0/sprockets%2Faea4e9f1253905c3c206be4163faf462 +0 -0
  689. data/test/dummy/tmp/cache/assets/D33/6E0/sprockets%2F8f8d9769a9279f9bbd345e4157eb09a8 +0 -0
  690. data/test/dummy/tmp/cache/assets/D33/AA0/sprockets%2Fe232a724938c4144db7ec47ca3a0b4b9 +0 -0
  691. data/test/dummy/tmp/cache/assets/D33/C40/sprockets%2Fd2a8aa388966c03ee534024ecd1a3e15 +0 -0
  692. data/test/dummy/tmp/cache/assets/D34/020/sprockets%2F99d101b09145af7ac80cdd219ee4730b +0 -0
  693. data/test/dummy/tmp/cache/assets/D34/A80/sprockets%2F2b056f9b8a31a05846a5b049509afeac +0 -0
  694. data/test/dummy/tmp/cache/assets/D35/610/sprockets%2F2c4b047e3902cacf87f03df334383c4b +0 -0
  695. data/test/dummy/tmp/cache/assets/D35/D70/sprockets%2F955ca2e2406809aaf6ef02600b5f48ca +0 -0
  696. data/test/dummy/tmp/cache/assets/D36/E70/sprockets%2F69b00a4118d012bf6d7cf293b5f316ff +0 -0
  697. data/test/dummy/tmp/cache/assets/D37/610/sprockets%2F65e66b2c8c223ac07c5c7ad5c5c99011 +0 -0
  698. data/test/dummy/tmp/cache/assets/D37/7C0/sprockets%2F03e1ffcecadd87170a077f207983f111 +0 -0
  699. data/test/dummy/tmp/cache/assets/D37/AA0/sprockets%2Fead2943534ac02460e7c273fa82a38fe +0 -0
  700. data/test/dummy/tmp/cache/assets/D37/B90/sprockets%2F17df9f1e2c50d81f1c5e2242594bfe00 +0 -0
  701. data/test/dummy/tmp/cache/assets/D38/2B0/sprockets%2Fda19dde8270c3f6a581064fb00ee4851 +0 -0
  702. data/test/dummy/tmp/cache/assets/D38/310/sprockets%2Fbb3da38718a4315ab86307c4e62a6fe6 +0 -0
  703. data/test/dummy/tmp/cache/assets/D38/920/sprockets%2F12627fb8c0f3cdf91ed7609a480b341a +0 -0
  704. data/test/dummy/tmp/cache/assets/D38/D70/sprockets%2Fb5f965be24b33aca394b5013de9216b9 +0 -0
  705. data/test/dummy/tmp/cache/assets/D39/260/sprockets%2F1469132dc4af5199b67b443b147aebfa +0 -0
  706. data/test/dummy/tmp/cache/assets/D39/3A0/sprockets%2F2e21042d01b594dd46e5a7b2bece9389 +0 -0
  707. data/test/dummy/tmp/cache/assets/D3A/150/sprockets%2Fd295f404f18a2cddf0ba955045f5262e +0 -0
  708. data/test/dummy/tmp/cache/assets/D3A/670/sprockets%2F0db6624d07920a5f4decb479718da33c +0 -0
  709. data/test/dummy/tmp/cache/assets/D3A/7B0/sprockets%2Ff812a5e25abeb03b136494656f3b79bc +0 -0
  710. data/test/dummy/tmp/cache/assets/D3A/A00/sprockets%2F1077cd94fef55fbb01ce529612180bd5 +0 -0
  711. data/test/dummy/tmp/cache/assets/D3A/ED0/sprockets%2F5ae1cf0266d63b8eb0647535ca93b63d +0 -0
  712. data/test/dummy/tmp/cache/assets/D3B/410/sprockets%2Fcb0aa9ea365367c16d61d078ea84a574 +0 -0
  713. data/test/dummy/tmp/cache/assets/D3B/4F0/sprockets%2F88643a0b64d5cf920c470f0ce8c731bd +0 -0
  714. data/test/dummy/tmp/cache/assets/D3B/5A0/sprockets%2Fb17614cedb4c7dc82b054074d586ed61 +0 -0
  715. data/test/dummy/tmp/cache/assets/D3B/5C0/sprockets%2Fc0fa5ecc2e5594ae08a368a85205c717 +0 -0
  716. data/test/dummy/tmp/cache/assets/D3C/640/sprockets%2F42e7a70bb8be9398385afb3c4742aa04 +0 -0
  717. data/test/dummy/tmp/cache/assets/D3C/910/sprockets%2F99239b29c69a5bcb92f42d621312adad +0 -0
  718. data/test/dummy/tmp/cache/assets/D3C/A50/sprockets%2F86d202b46c3d0224f5ff87deb4db3770 +0 -0
  719. data/test/dummy/tmp/cache/assets/D3D/120/sprockets%2F837fd0f36c315cc5ed6321a37c78f15a +0 -0
  720. data/test/dummy/tmp/cache/assets/D3D/3D0/sprockets%2F7f6184a495382b1a55fa1df1ebf8620c +0 -0
  721. data/test/dummy/tmp/cache/assets/D3D/410/sprockets%2Ff106679b8b4a3b97c6922fbd1305bc4d +0 -0
  722. data/test/dummy/tmp/cache/assets/D3D/A60/sprockets%2Fc1ddc173463642dde6a64d0ae5518c79 +0 -0
  723. data/test/dummy/tmp/cache/assets/D3D/CD0/sprockets%2F3595d1551bd608fcb3dc351a87beb169 +0 -0
  724. data/test/dummy/tmp/cache/assets/D3D/EE0/sprockets%2F51e79b33fba1c5353e77bb445a6b891b +0 -0
  725. data/test/dummy/tmp/cache/assets/D3E/3F0/sprockets%2F86979badf89dec3212225604aba2cd27 +0 -0
  726. data/test/dummy/tmp/cache/assets/D3E/940/sprockets%2F5ed82a03c1de5c34135b67ff053787ec +0 -0
  727. data/test/dummy/tmp/cache/assets/D3E/CF0/sprockets%2Ffdaaeb4c030471898b22f8c144f76b56 +0 -0
  728. data/test/dummy/tmp/cache/assets/D3F/050/sprockets%2Fab4aa96dbce1e6b359f2658118291d90 +0 -0
  729. data/test/dummy/tmp/cache/assets/D3F/1A0/sprockets%2Ffc3bb0a82945639473ca2c4029fe4e8b +0 -0
  730. data/test/dummy/tmp/cache/assets/D3F/350/sprockets%2Fc430fa77be69b17f1c9d6c01d667501f +0 -0
  731. data/test/dummy/tmp/cache/assets/D3F/6B0/sprockets%2Fd4c6072434f9fab0ef336571f108efb6 +0 -0
  732. data/test/dummy/tmp/cache/assets/D3F/760/sprockets%2Fd8f3b8c267409a532e9241a20fbb89dc +0 -0
  733. data/test/dummy/tmp/cache/assets/D3F/E10/sprockets%2Ff8492202733ea4a4f67065c95eec1beb +0 -0
  734. data/test/dummy/tmp/cache/assets/D3F/F10/sprockets%2Fb6dcc8900d3da7ed6329638ab624f154 +0 -0
  735. data/test/dummy/tmp/cache/assets/D40/3E0/sprockets%2Fd65537e1d1ddf27135ffea9a66305b54 +0 -0
  736. data/test/dummy/tmp/cache/assets/D40/D10/sprockets%2F7af151c9b6080d9285fe058ae6d40c4d +0 -0
  737. data/test/dummy/tmp/cache/assets/D41/770/sprockets%2F271c5f12457864bbb0c6646c9ebf1f3f +0 -0
  738. data/test/dummy/tmp/cache/assets/D41/8A0/sprockets%2Fbc7ce77806517ea173350e6a4d8c55db +0 -0
  739. data/test/dummy/tmp/cache/assets/D41/FE0/sprockets%2F2901ba969f333cc19393afd2f0fc7c64 +0 -0
  740. data/test/dummy/tmp/cache/assets/D42/2C0/sprockets%2F444a83e2c79ecc64112d294bb9b8d7a5 +0 -0
  741. data/test/dummy/tmp/cache/assets/D42/6A0/sprockets%2F9ac05a638ee7816b9b2fb17ea1c69613 +0 -0
  742. data/test/dummy/tmp/cache/assets/D42/850/sprockets%2F52825878ba78d155f3310c8adeeaeb36 +0 -0
  743. data/test/dummy/tmp/cache/assets/D42/CC0/sprockets%2Fb1e122d7cd85a9d14047daef46f93376 +0 -0
  744. data/test/dummy/tmp/cache/assets/D42/E60/sprockets%2Fb023ab90173979d4deb9c0b51ccd3999 +0 -0
  745. data/test/dummy/tmp/cache/assets/D43/6F0/sprockets%2F38649a8cba0b6c9788cb58f6e03da040 +0 -0
  746. data/test/dummy/tmp/cache/assets/D43/E90/sprockets%2F2351caee9e66f34809780d7a2dc2dc18 +0 -0
  747. data/test/dummy/tmp/cache/assets/D43/FE0/sprockets%2F5d585d195aa6c45453c7d8125fcb1dc8 +0 -0
  748. data/test/dummy/tmp/cache/assets/D44/6D0/sprockets%2F4d7032af47bfce2d4a8564830f8a6a96 +0 -0
  749. data/test/dummy/tmp/cache/assets/D44/8D0/sprockets%2F34631c40f7fc893e57a147dd2f6a3bc9 +0 -0
  750. data/test/dummy/tmp/cache/assets/D44/8D0/sprockets%2Fda4e88ae08a98a152b96ea113e58835c +0 -0
  751. data/test/dummy/tmp/cache/assets/D44/8E0/sprockets%2Fb841718bb1a07e7b757ff66d0e5cc582 +0 -0
  752. data/test/dummy/tmp/cache/assets/D45/3B0/sprockets%2Fd26b5a0d570ef57d06df6f032e9b8980 +0 -0
  753. data/test/dummy/tmp/cache/assets/D45/580/sprockets%2F14b96ba086d5c5a5874ba107d8e3fc97 +0 -0
  754. data/test/dummy/tmp/cache/assets/D45/9E0/sprockets%2F130c46284fa1f6c76972bedb871c1fe8 +0 -0
  755. data/test/dummy/tmp/cache/assets/D45/BC0/sprockets%2Feca16786e19e61e8223ae46b2c76c9d1 +0 -0
  756. data/test/dummy/tmp/cache/assets/D46/500/sprockets%2F8f1353b95c1ae2986739f51ad5b23feb +0 -0
  757. data/test/dummy/tmp/cache/assets/D46/8A0/sprockets%2F49683a7741a9baf859c3aa7ff32a417b +0 -0
  758. data/test/dummy/tmp/cache/assets/D46/930/sprockets%2F3f7e8c9b45f15625db37da7d7325dc05 +0 -0
  759. data/test/dummy/tmp/cache/assets/D46/C80/sprockets%2Ff4ba1c28702e084d8c375097c78aea9e +0 -0
  760. data/test/dummy/tmp/cache/assets/D47/2B0/sprockets%2Ff3d8c4ca1a44044d98395b36b770fcf9 +0 -0
  761. data/test/dummy/tmp/cache/assets/D47/670/sprockets%2F95284b12addf9c46e49d92031ace56d8 +0 -0
  762. data/test/dummy/tmp/cache/assets/D47/8F0/sprockets%2F1cc6e49382be4f74cbb97821ae1928c4 +0 -0
  763. data/test/dummy/tmp/cache/assets/D48/1D0/sprockets%2Fbff4201c0944eaf31a2f6a0110cbd224 +0 -0
  764. data/test/dummy/tmp/cache/assets/D48/250/sprockets%2F84991347702fd5edbb2ebb5515963ece +0 -0
  765. data/test/dummy/tmp/cache/assets/D48/2F0/sprockets%2F6b79e4839df89b4abb51c2c6105d15e8 +0 -0
  766. data/test/dummy/tmp/cache/assets/D48/960/sprockets%2F90e2c11ff8fd31e591b9fd39932631bf +0 -0
  767. data/test/dummy/tmp/cache/assets/D48/A60/sprockets%2Fa468fa273dd2ebf98c1e33c7c3985315 +0 -0
  768. data/test/dummy/tmp/cache/assets/D48/E50/sprockets%2F4c71469bc6ed82c37fdb5e44139bb583 +0 -0
  769. data/test/dummy/tmp/cache/assets/D49/730/sprockets%2F64dd3900972dee6569422fddf9c31b1f +0 -0
  770. data/test/dummy/tmp/cache/assets/D49/930/sprockets%2Ff36df49d02768e07adb86105b47b5f9b +0 -0
  771. data/test/dummy/tmp/cache/assets/D49/D60/sprockets%2F14760b8f0d27c9a774ec738f07bddd28 +0 -0
  772. data/test/dummy/tmp/cache/assets/D4A/DE0/sprockets%2F45bff385904356cf5b4852a8ef07e1fb +0 -0
  773. data/test/dummy/tmp/cache/assets/D4A/EA0/sprockets%2F2ffba57438b1dc0989932de09b6e6a28 +0 -0
  774. data/test/dummy/tmp/cache/assets/D4B/D30/sprockets%2F156bde6845eeb43deac29648d78513a7 +0 -0
  775. data/test/dummy/tmp/cache/assets/D4B/F70/sprockets%2Ff58e20f6e88702165bb9ca9f1e2d814f +0 -0
  776. data/test/dummy/tmp/cache/assets/D4C/520/sprockets%2Fb8550712b4897eedde1991cf2f65e14c +0 -0
  777. data/test/dummy/tmp/cache/assets/D4C/BD0/sprockets%2F4ac9d1aa903d4731edf18fe2b9589829 +0 -0
  778. data/test/dummy/tmp/cache/assets/D4C/C40/sprockets%2F2db0945ed98c864aed344686ae6e83a1 +0 -0
  779. data/test/dummy/tmp/cache/assets/D4E/3C0/sprockets%2F8b9a09f7df4b2a3f486cacd187521878 +0 -0
  780. data/test/dummy/tmp/cache/assets/D4E/4D0/sprockets%2F709e6ba42c7c9e3d94474b3cc9a67f26 +0 -0
  781. data/test/dummy/tmp/cache/assets/D4E/6C0/sprockets%2Fedd9cf282af0f00637e5273c8c3888b9 +0 -0
  782. data/test/dummy/tmp/cache/assets/D50/810/sprockets%2Fee536e389f63f834aece59d21801d36f +0 -0
  783. data/test/dummy/tmp/cache/assets/D50/D40/sprockets%2Fbe666f1ffdb0f91d930899161a069fe5 +0 -0
  784. data/test/dummy/tmp/cache/assets/D50/ED0/sprockets%2F5332ba66dc2dfa796617ee96ce9d9900 +0 -0
  785. data/test/dummy/tmp/cache/assets/D51/430/sprockets%2F7bf6ecc28263fac9f9fb429136695a53 +0 -0
  786. data/test/dummy/tmp/cache/assets/D51/9A0/sprockets%2Fff730a46d71c5a873e97fd15889c21de +0 -0
  787. data/test/dummy/tmp/cache/assets/D52/1E0/sprockets%2Ff944622d87bfe6f049ed4d538e823ad4 +0 -0
  788. data/test/dummy/tmp/cache/assets/D52/9D0/sprockets%2Fbb6de37d8349d9caa9b54427997e10b9 +0 -0
  789. data/test/dummy/tmp/cache/assets/D52/EB0/sprockets%2F845afe487827fd254911feb27fa9ff21 +0 -0
  790. data/test/dummy/tmp/cache/assets/D53/0C0/sprockets%2F1525e3864167f2cdbdf7e815f67f19df +0 -0
  791. data/test/dummy/tmp/cache/assets/D53/520/sprockets%2F0425319886a4f5c8945aa7ffd69fb6ae +0 -0
  792. data/test/dummy/tmp/cache/assets/D53/DF0/sprockets%2F4944df81f8eac8c68fc5a448135d91d5 +0 -0
  793. data/test/dummy/tmp/cache/assets/D54/0D0/sprockets%2F448752db3a53dd453db1b01de121ebd2 +0 -0
  794. data/test/dummy/tmp/cache/assets/D54/210/sprockets%2F685458463f9ac9566ebff2e93bbc920b +0 -0
  795. data/test/dummy/tmp/cache/assets/D54/D40/sprockets%2Fae94d636e834686618d7edea66bfd405 +0 -0
  796. data/test/dummy/tmp/cache/assets/D56/140/sprockets%2F20a89c927f3ff593ebf3349f31f39e9a +0 -0
  797. data/test/dummy/tmp/cache/assets/D56/EF0/sprockets%2F9841b7e3e5c96195e8aadd8f107c64f8 +0 -0
  798. data/test/dummy/tmp/cache/assets/D57/DF0/sprockets%2F8d06b94587d49e037e77f8afcb6802cf +0 -0
  799. data/test/dummy/tmp/cache/assets/D58/CD0/sprockets%2F866919a6d25cec7a729a3ee6299f1c6f +0 -0
  800. data/test/dummy/tmp/cache/assets/D59/070/sprockets%2F822cd47e69d40ba87f95181fdd698ed5 +0 -0
  801. data/test/dummy/tmp/cache/assets/D5A/2B0/sprockets%2Fd347f40bde5bbe0062904e3a6e51f01c +0 -0
  802. data/test/dummy/tmp/cache/assets/D5A/D80/sprockets%2F28dc9152e2ead49ae414a5b82d04a1a2 +0 -0
  803. data/test/dummy/tmp/cache/assets/D5D/120/sprockets%2F1d71e8cf1b3ca05ca8165a84a90bb615 +0 -0
  804. data/test/dummy/tmp/cache/assets/D5E/F90/sprockets%2F93645769a318ef58afdfdfe326891c6f +0 -0
  805. data/test/dummy/tmp/cache/assets/D5F/7F0/sprockets%2Fabbcc55042a82b42c900c09d59de4c29 +0 -0
  806. data/test/dummy/tmp/cache/assets/D5F/A30/sprockets%2F1b6a076e9dfac220107d3ec6b4a3b766 +0 -0
  807. data/test/dummy/tmp/cache/assets/D5F/C40/sprockets%2Fb898ec7d8f3bc1559821f8514e6d9cd9 +0 -0
  808. data/test/dummy/tmp/cache/assets/D60/020/sprockets%2Fbfae71323b4823d863b570f22ef20bcd +0 -0
  809. data/test/dummy/tmp/cache/assets/D60/2A0/sprockets%2Fcd5c12269b6c414bf722c6c2dc0e18c4 +0 -0
  810. data/test/dummy/tmp/cache/assets/D60/870/sprockets%2F0421b7f12e44d88ae2bf59a690ac2cb1 +0 -0
  811. data/test/dummy/tmp/cache/assets/D61/180/sprockets%2F8d15744bb332d6b8b1ffef2ce0315c04 +0 -0
  812. data/test/dummy/tmp/cache/assets/D62/140/sprockets%2F7e5a724c4c00951a0da7ec767ce19aa1 +0 -0
  813. data/test/dummy/tmp/cache/assets/D62/2E0/sprockets%2F51a06ddef9bd05b405fd605d37be3154 +0 -0
  814. data/test/dummy/tmp/cache/assets/D62/DC0/sprockets%2Fdc85fe987fbe94ab12319de36595c989 +0 -0
  815. data/test/dummy/tmp/cache/assets/D63/5F0/sprockets%2F22dfbdd7a227061033a9c7274eb4bf5f +0 -0
  816. data/test/dummy/tmp/cache/assets/D63/B00/sprockets%2F2672399dfcdd2b6b61536cab3d800bc1 +0 -0
  817. data/test/dummy/tmp/cache/assets/D64/670/sprockets%2F7dc8c0ad36d436eb56a0824a46e0eb08 +0 -0
  818. data/test/dummy/tmp/cache/assets/D64/B50/sprockets%2F7ac06eacb363b85744337c0ea88e2b0c +0 -0
  819. data/test/dummy/tmp/cache/assets/D65/110/sprockets%2F588eff440ed1b50144c701fddae3a581 +0 -0
  820. data/test/dummy/tmp/cache/assets/D65/990/sprockets%2Fa2965ca374a00aaceb747e60b654e2f8 +0 -0
  821. data/test/dummy/tmp/cache/assets/D65/B00/sprockets%2Fc4b6f0f4ca6e391e2f2460c751cf4e21 +0 -0
  822. data/test/dummy/tmp/cache/assets/D66/6C0/sprockets%2F1b63a7f0e3fb2a7f3124f198d0ff462b +0 -0
  823. data/test/dummy/tmp/cache/assets/D67/1F0/sprockets%2Fc5893f341b009ca2438e5a4e20fedca8 +0 -0
  824. data/test/dummy/tmp/cache/assets/D67/760/sprockets%2F10fa2be053931aee797b2ff1296ac9b2 +0 -0
  825. data/test/dummy/tmp/cache/assets/D67/8E0/sprockets%2Ffd0eaaf36da9805e6c4ec303534162f5 +0 -0
  826. data/test/dummy/tmp/cache/assets/D67/A60/sprockets%2Faa00971b7f5d4b45eb77d656a284a5aa +0 -0
  827. data/test/dummy/tmp/cache/assets/D67/B70/sprockets%2F93b435826e79fa4e5f6eaa001a7a11bf +0 -0
  828. data/test/dummy/tmp/cache/assets/D68/0C0/sprockets%2F6c628ddf1ba5c680e04ad54a476f163b +0 -0
  829. data/test/dummy/tmp/cache/assets/D68/210/sprockets%2Fdc284967860db06c2cb2e1da78bab156 +0 -0
  830. data/test/dummy/tmp/cache/assets/D68/D60/sprockets%2F098cf98a00a3af19813b1d219f2aa9ed +0 -0
  831. data/test/dummy/tmp/cache/assets/D69/490/sprockets%2Fec6b9dc7d26370cb16e31c8f051e3e07 +0 -0
  832. data/test/dummy/tmp/cache/assets/D69/C10/sprockets%2Ff6e71ec4a507e10c41cc544f83ce375b +0 -0
  833. data/test/dummy/tmp/cache/assets/D69/E70/sprockets%2Fda83e024ef0e845f27207dcc644b42ed +0 -0
  834. data/test/dummy/tmp/cache/assets/D6A/7A0/sprockets%2Fb9763eb93985c7ed8774a8276efe68af +0 -0
  835. data/test/dummy/tmp/cache/assets/D6B/200/sprockets%2F5d6139fdef36c3f5380b2a7c2c4fc332 +0 -0
  836. data/test/dummy/tmp/cache/assets/D6B/BA0/sprockets%2F8293eb343aead8dda54496532fb24fa1 +0 -0
  837. data/test/dummy/tmp/cache/assets/D6C/AD0/sprockets%2Fdabce05f6e4419832e20d6b7420fe9a7 +0 -0
  838. data/test/dummy/tmp/cache/assets/D6D/080/sprockets%2F3cc7b7355591babda1661e6c5e9f8c20 +0 -0
  839. data/test/dummy/tmp/cache/assets/D6D/0F0/sprockets%2Fd708026e8f50e44298c6aefb5ce31a0e +0 -0
  840. data/test/dummy/tmp/cache/assets/D6D/640/sprockets%2F3fbad42b446e631f6a9d574e2946aaf0 +0 -0
  841. data/test/dummy/tmp/cache/assets/D6D/7A0/sprockets%2Fff4be901f55528b85b2b1fc73ebc4352 +0 -0
  842. data/test/dummy/tmp/cache/assets/D6D/DF0/sprockets%2F395395c75fd86ea2c57e15c3ffaba000 +0 -0
  843. data/test/dummy/tmp/cache/assets/D6D/E80/sprockets%2F9ef00ee94e3b0eed7c4e45b342085d51 +0 -0
  844. data/test/dummy/tmp/cache/assets/D6D/FF0/sprockets%2F4265ef4aff8212bda7dd9ba6b1653284 +0 -0
  845. data/test/dummy/tmp/cache/assets/D6E/230/sprockets%2F057c37a11c8bee66c054e4fe181f3df6 +0 -0
  846. data/test/dummy/tmp/cache/assets/D6E/830/sprockets%2F4c3705df442d9dcf753b3c4b359c3c4c +0 -0
  847. data/test/dummy/tmp/cache/assets/D6E/940/sprockets%2Fb19f43bd8383eeb5e26a4d2b79f1240e +0 -0
  848. data/test/dummy/tmp/cache/assets/D6E/9F0/sprockets%2F15f61ad82d9ca6cce6a0e42b7249662f +0 -0
  849. data/test/dummy/tmp/cache/assets/D6E/B00/sprockets%2Fb3e0044ac96eca090d459eea85cd8680 +0 -0
  850. data/test/dummy/tmp/cache/assets/D6E/EE0/sprockets%2Fd74ff02ca9ebc91612c336ea92bb8096 +0 -0
  851. data/test/dummy/tmp/cache/assets/D6F/AB0/sprockets%2Fb9d2a198d05cec1f1f9e110318cdf929 +0 -0
  852. data/test/dummy/tmp/cache/assets/D70/D20/sprockets%2Fee58c6385d12ad1d59fae4c15604e6c4 +0 -0
  853. data/test/dummy/tmp/cache/assets/D70/F10/sprockets%2Fa842cc70f54f2d74026c40978f7cecba +0 -0
  854. data/test/dummy/tmp/cache/assets/D71/880/sprockets%2F93d1b5a9e73373de5c2183af65af6c5a +0 -0
  855. data/test/dummy/tmp/cache/assets/D71/960/sprockets%2Fb3cb7266cb89c158a8c5c5c72f1931bd +0 -0
  856. data/test/dummy/tmp/cache/assets/D71/CA0/sprockets%2F441e444a0921896e5ca39df6bba85daf +0 -0
  857. data/test/dummy/tmp/cache/assets/D71/FB0/sprockets%2Fefe86d7e9950c506bdad42050c6a1b87 +0 -0
  858. data/test/dummy/tmp/cache/assets/D72/C00/sprockets%2Fbcb0957c48f5623c9cd792f05cb0f40f +0 -0
  859. data/test/dummy/tmp/cache/assets/D73/500/sprockets%2F6bad7e877c436a3771db01b2a5fe6e59 +0 -0
  860. data/test/dummy/tmp/cache/assets/D73/6E0/sprockets%2F1f4defb0e469096950900f0ad9c3fde4 +0 -0
  861. data/test/dummy/tmp/cache/assets/D74/DD0/sprockets%2Fc48e8b854fb60fa9959ceaca2700372b +0 -0
  862. data/test/dummy/tmp/cache/assets/D75/9E0/sprockets%2F9f9fc7d65b86108de260fe6a4145dac0 +0 -0
  863. data/test/dummy/tmp/cache/assets/D76/030/sprockets%2F7e8689ec6a9f3754a4aa660e303cbf4a +0 -0
  864. data/test/dummy/tmp/cache/assets/D76/6D0/sprockets%2Fb26b1af7ea60d9acee387283707b5d88 +0 -0
  865. data/test/dummy/tmp/cache/assets/D76/CA0/sprockets%2F797920cdabaf2f8431968a34c2cbae79 +0 -0
  866. data/test/dummy/tmp/cache/assets/D77/7E0/sprockets%2F4c9f2e2409700f1a1df69b32cff97dc9 +0 -0
  867. data/test/dummy/tmp/cache/assets/D77/FF0/sprockets%2F126c2e2ca6f5e8477c9525f46cdba7d5 +0 -0
  868. data/test/dummy/tmp/cache/assets/D78/910/sprockets%2Fe87c3fc1c7f5b632bd6bc1785c56762c +0 -0
  869. data/test/dummy/tmp/cache/assets/D78/D60/sprockets%2Feb6b4ca6b29b6f82ea665a74e67d8621 +0 -0
  870. data/test/dummy/tmp/cache/assets/D78/DE0/sprockets%2F77704150a5a59b97997ebeeaa8d2aed2 +0 -0
  871. data/test/dummy/tmp/cache/assets/D78/F50/sprockets%2F8cf8a8daeffdd217346b122e60b75759 +0 -0
  872. data/test/dummy/tmp/cache/assets/D79/4D0/sprockets%2Fd9478c98121c5a4bfccf42c262d587fc +0 -0
  873. data/test/dummy/tmp/cache/assets/D79/E80/sprockets%2F7d329345d1b9f914c87fc5e07ea9ab4b +0 -0
  874. data/test/dummy/tmp/cache/assets/D7A/D90/sprockets%2F5e731a54c86bfbaa18ba9e489178cf64 +0 -0
  875. data/test/dummy/tmp/cache/assets/D7A/FB0/sprockets%2F9e8fb3308fa9954235fee90380a1cded +0 -0
  876. data/test/dummy/tmp/cache/assets/D7A/FC0/sprockets%2F3499c1cfa7502cc18809c9a562f4fdef +0 -0
  877. data/test/dummy/tmp/cache/assets/D7B/B80/sprockets%2Ffe86b74dfdb9aa20f54329927f8f143a +0 -0
  878. data/test/dummy/tmp/cache/assets/D7C/160/sprockets%2F6847e66cdafb094701f479a515ede5dd +0 -0
  879. data/test/dummy/tmp/cache/assets/D7C/620/sprockets%2Fa30b274099bbe2af59458e9f9e4d36fa +0 -0
  880. data/test/dummy/tmp/cache/assets/D7C/DF0/sprockets%2F916ee180cc9c6793b61f4f38abf45d6b +0 -0
  881. data/test/dummy/tmp/cache/assets/D7E/2A0/sprockets%2F1ce479f9423e748690a75abbabf8af84 +0 -0
  882. data/test/dummy/tmp/cache/assets/D7E/480/sprockets%2F3e9652479d8cb3fc7227f03de632eeee +0 -0
  883. data/test/dummy/tmp/cache/assets/D7F/A60/sprockets%2F5c683951503f673cceffa6ba76f38b8d +0 -0
  884. data/test/dummy/tmp/cache/assets/D80/3B0/sprockets%2Fd574f0ceb59e292506dc7dc2f99d6b91 +0 -0
  885. data/test/dummy/tmp/cache/assets/D81/120/sprockets%2F75c7f18e61fa042b776ce2e5c3ff786f +0 -0
  886. data/test/dummy/tmp/cache/assets/D81/E30/sprockets%2F0a996e938e0e40c5ed86c5b6fb2e95b7 +0 -0
  887. data/test/dummy/tmp/cache/assets/D84/0A0/sprockets%2F07fc0bfe2237a171b813aa147f3ced1a +0 -0
  888. data/test/dummy/tmp/cache/assets/D85/5A0/sprockets%2Fc2cbee1b5160e0e8b022933feb36ea30 +0 -0
  889. data/test/dummy/tmp/cache/assets/D87/6D0/sprockets%2F51df69aad9a6f892254deb9d4c1992f8 +0 -0
  890. data/test/dummy/tmp/cache/assets/D88/1B0/sprockets%2Fb5bb04fc812b607ce046a4b702be4c4f +0 -0
  891. data/test/dummy/tmp/cache/assets/D88/3A0/sprockets%2F0b5fb77a9bfae45c35513bd100f2bc42 +0 -0
  892. data/test/dummy/tmp/cache/assets/D88/7E0/sprockets%2Fe9fedb2c5be893a15939dc65f684196b +0 -0
  893. data/test/dummy/tmp/cache/assets/D8A/2C0/sprockets%2F6ec8da0142f240ce8a7e0b46aea363c1 +0 -0
  894. data/test/dummy/tmp/cache/assets/D8A/370/sprockets%2Fb4600d72a29aba7a39c2ec58aa04f18b +0 -0
  895. data/test/dummy/tmp/cache/assets/D8A/B90/sprockets%2F7506f75d60f93f9e8405ffb9cf85ddb2 +0 -0
  896. data/test/dummy/tmp/cache/assets/D8A/BF0/sprockets%2F1967ce66d464496a6fab44ff8be55ef6 +0 -0
  897. data/test/dummy/tmp/cache/assets/D8B/1B0/sprockets%2F199c350fee84b99097d56d624fded9db +0 -0
  898. data/test/dummy/tmp/cache/assets/D8C/9C0/sprockets%2F2e7c2cd86215800a37c4d4b1bf0bea5f +0 -0
  899. data/test/dummy/tmp/cache/assets/D8D/C50/sprockets%2Fa0229d30e2113dbf6d3cd51c5e82ee6c +0 -0
  900. data/test/dummy/tmp/cache/assets/D8E/3A0/sprockets%2Fd6744ef797ced49053db5c689e6b6f5c +0 -0
  901. data/test/dummy/tmp/cache/assets/D8E/910/sprockets%2Fbbf8e4c05ca721c1cd18c17902256ade +0 -0
  902. data/test/dummy/tmp/cache/assets/D8E/BF0/sprockets%2F48285c5acfe821822bac11d2fa01eed5 +0 -0
  903. data/test/dummy/tmp/cache/assets/D8F/4A0/sprockets%2Fec8facf81aea15d619953688978be79c +0 -0
  904. data/test/dummy/tmp/cache/assets/D8F/8A0/sprockets%2F5dfeb1f78f62586e3d97cb9e77758da0 +0 -0
  905. data/test/dummy/tmp/cache/assets/D8F/FD0/sprockets%2F9a0c31b639daef509bbd370b4c9c33a2 +0 -0
  906. data/test/dummy/tmp/cache/assets/D90/140/sprockets%2F04dbaff32222e81c40b9c76bfba8c822 +0 -0
  907. data/test/dummy/tmp/cache/assets/D90/2D0/sprockets%2Fac8aa858f328c72e90dff5de97c59939 +0 -0
  908. data/test/dummy/tmp/cache/assets/D91/6D0/sprockets%2Fba1b4327fa6a3b7b0c109974be38fca6 +0 -0
  909. data/test/dummy/tmp/cache/assets/D92/4A0/sprockets%2F3debefba0ccc221519757a1b9d1626a9 +0 -0
  910. data/test/dummy/tmp/cache/assets/D93/0F0/sprockets%2Fbae826e41e4d9c8365bc23eb610dea40 +0 -0
  911. data/test/dummy/tmp/cache/assets/D93/2D0/sprockets%2F5dbb88793dba1bd62e601518a3a0ef5b +0 -0
  912. data/test/dummy/tmp/cache/assets/D93/3B0/sprockets%2Fd0fb3bdcf317425a433a125c986b3dff +0 -0
  913. data/test/dummy/tmp/cache/assets/D94/1A0/sprockets%2Fb4748c092e8a4c127bcfacb06cdc2735 +0 -0
  914. data/test/dummy/tmp/cache/assets/D94/D60/sprockets%2F5a0610c5e0dccce88e9a265b338ad0e6 +0 -0
  915. data/test/dummy/tmp/cache/assets/D95/430/sprockets%2Fcf054ac65aa2c4b72d661fc32c898aa5 +0 -0
  916. data/test/dummy/tmp/cache/assets/D95/D80/sprockets%2Fa6f6a003a0dcffb962626bc8f0c9472a +0 -0
  917. data/test/dummy/tmp/cache/assets/D96/7F0/sprockets%2F94770fcba2138db68f5731401cfadfaa +0 -0
  918. data/test/dummy/tmp/cache/assets/D97/4C0/sprockets%2F4d4aea86610bc9652c70455a6beafc4d +0 -0
  919. data/test/dummy/tmp/cache/assets/D97/680/sprockets%2Fbcae9b5fae1163de31141bd7b94c7448 +0 -0
  920. data/test/dummy/tmp/cache/assets/D98/1C0/sprockets%2F913efc21f3e14eb091215dbcd8ce828c +0 -0
  921. data/test/dummy/tmp/cache/assets/D99/330/sprockets%2Ff01679ca9c88dd0a3eb6922b0b8f3bc0 +0 -0
  922. data/test/dummy/tmp/cache/assets/D99/350/sprockets%2Fcb131a36809adce854add7d63e24d4a9 +0 -0
  923. data/test/dummy/tmp/cache/assets/D9A/B20/sprockets%2Fcabbfbb982365500b12a89e74dfcb646 +0 -0
  924. data/test/dummy/tmp/cache/assets/D9A/C60/sprockets%2Fed48e38b0d8bb6771b5dab8ca01b5394 +0 -0
  925. data/test/dummy/tmp/cache/assets/D9B/320/sprockets%2F8eab74b32567819bb7b0a1dc86ca44de +0 -0
  926. data/test/dummy/tmp/cache/assets/D9D/270/sprockets%2Fd46b30b7f25ca462cf19febb667c74e0 +0 -0
  927. data/test/dummy/tmp/cache/assets/D9D/430/sprockets%2F41f9ffe403aca5202a7cbd6ad59954b9 +0 -0
  928. data/test/dummy/tmp/cache/assets/D9F/200/sprockets%2F22deb3ee0d99f7b2b283df5382e1ae81 +0 -0
  929. data/test/dummy/tmp/cache/assets/D9F/6B0/sprockets%2F99e382158c248d70b4aebaeeab09d2e5 +0 -0
  930. data/test/dummy/tmp/cache/assets/D9F/6F0/sprockets%2Fff261c15e6b97bf57e372f0de1ad571a +0 -0
  931. data/test/dummy/tmp/cache/assets/DA0/1B0/sprockets%2F71e2cd8803aac9fb0bb4c47593cf17e8 +0 -0
  932. data/test/dummy/tmp/cache/assets/DA1/530/sprockets%2F88a8bb9debb752ba06f07909db83e02d +0 -0
  933. data/test/dummy/tmp/cache/assets/DA1/5D0/sprockets%2F5b78aef3109b5cc056d7457aa6c7f6ad +0 -0
  934. data/test/dummy/tmp/cache/assets/DA1/670/sprockets%2Fabaa4bc9bf51726806c4673ed4b939dd +0 -0
  935. data/test/dummy/tmp/cache/assets/DA1/710/sprockets%2Fcc28e7b96a94b2a571877b147fdecaa0 +0 -0
  936. data/test/dummy/tmp/cache/assets/DA1/F70/sprockets%2F3c4fc2ac1fcbca813776da7660f86f19 +0 -0
  937. data/test/dummy/tmp/cache/assets/DA2/9A0/sprockets%2F4bd1c9899ece1257adec0c553fc087b2 +0 -0
  938. data/test/dummy/tmp/cache/assets/DA3/270/sprockets%2F44364fac7f6bd98fd42fc4252a0b68fa +0 -0
  939. data/test/dummy/tmp/cache/assets/DA4/6B0/sprockets%2F76963040dbedfa3ae66bb7b68e290e5e +0 -0
  940. data/test/dummy/tmp/cache/assets/DA4/C30/sprockets%2Fd975dbd6bfda841e878d810a42512fbe +0 -0
  941. data/test/dummy/tmp/cache/assets/DA5/0E0/sprockets%2Fe61590dc98f1e532ea20e296c5fce7bd +0 -0
  942. data/test/dummy/tmp/cache/assets/DA5/830/sprockets%2Fefce0b2d75e80d1d17b6db8598841ed2 +0 -0
  943. data/test/dummy/tmp/cache/assets/DA5/920/sprockets%2F17fef15ed3d8c1147570663a93efedea +0 -0
  944. data/test/dummy/tmp/cache/assets/DA6/420/sprockets%2F27f13ec97d9f72f8f4c0dba16ac66a09 +0 -0
  945. data/test/dummy/tmp/cache/assets/DA6/CD0/sprockets%2Fc70b7f4eecae952495d975f1d931bca1 +0 -0
  946. data/test/dummy/tmp/cache/assets/DA8/070/sprockets%2F296661df51c2ff0feab92f6e2e4915ed +0 -0
  947. data/test/dummy/tmp/cache/assets/DA9/4D0/sprockets%2Fe6c7d5acb7d976ad446d1d79c62503fc +0 -0
  948. data/test/dummy/tmp/cache/assets/DA9/C20/sprockets%2Ff74b8a618cb8cfe2f5b92964b5f622ab +0 -0
  949. data/test/dummy/tmp/cache/assets/DAB/920/sprockets%2F047a9da6b427dd9d7093799fad63aceb +0 -0
  950. data/test/dummy/tmp/cache/assets/DAB/B00/sprockets%2F5286678a74e7bcc66e0d3c7c7d2db5fb +0 -0
  951. data/test/dummy/tmp/cache/assets/DAB/F50/sprockets%2F18c6d0d546ef662f2388efc86b4eac4c +0 -0
  952. data/test/dummy/tmp/cache/assets/DAC/810/sprockets%2F1ab32c2c71bb26df53ec2323cf223bcb +0 -0
  953. data/test/dummy/tmp/cache/assets/DAD/4A0/sprockets%2Fd5eeb3e15f9d38b73edd7f0174c36e49 +0 -0
  954. data/test/dummy/tmp/cache/assets/DAD/5C0/sprockets%2F96f23affbee06df4d7380ee39a0d7882 +0 -0
  955. data/test/dummy/tmp/cache/assets/DAD/EE0/sprockets%2F2ffa838ad7292c4885e6a1b494dfe8ab +0 -0
  956. data/test/dummy/tmp/cache/assets/DAD/F50/sprockets%2Ffb5d30410312dc6dc5246da0ca5bfb1d +0 -0
  957. data/test/dummy/tmp/cache/assets/DAE/6F0/sprockets%2F8089f2cadd8367c9581a2caf7b3a7e7f +0 -0
  958. data/test/dummy/tmp/cache/assets/DAF/F00/sprockets%2Fa2be30c90a2711cc8c2aa26bbaa09b97 +0 -0
  959. data/test/dummy/tmp/cache/assets/DB0/BF0/sprockets%2F52e4cdf37aa489ff6c138dedf036588d +0 -0
  960. data/test/dummy/tmp/cache/assets/DB1/6D0/sprockets%2Fd7990d5c07f95d0ee1cb9d5e6e5b818c +0 -0
  961. data/test/dummy/tmp/cache/assets/DB1/C80/sprockets%2Fa2d1a10a3cc780fd30127b2be96ddfa2 +0 -0
  962. data/test/dummy/tmp/cache/assets/DB2/1F0/sprockets%2Fca6346c5717c1efd6fae57773f94ee8a +0 -0
  963. data/test/dummy/tmp/cache/assets/DB2/480/sprockets%2Fa249ccdcac57daf829713de88e3629f8 +0 -0
  964. data/test/dummy/tmp/cache/assets/DB2/850/sprockets%2F9d6e12a0e28cc9ded4e859613cf75f6e +0 -0
  965. data/test/dummy/tmp/cache/assets/DB3/D90/sprockets%2Fbe688e19f9d8787de8ec0006acde4a09 +0 -0
  966. data/test/dummy/tmp/cache/assets/DB4/AE0/sprockets%2Fbf38fcc4a48947bef2a2e37c95947ee4 +0 -0
  967. data/test/dummy/tmp/cache/assets/DB5/B90/sprockets%2Fc8101a824bdab56d3eb5ae001ce5d85a +0 -0
  968. data/test/dummy/tmp/cache/assets/DB5/E20/sprockets%2Ff5fb95e43209af088c7dd96e2893acfd +0 -0
  969. data/test/dummy/tmp/cache/assets/DB5/FA0/sprockets%2Fe59881d2c83e9f94c821bc4ea5e7d4fd +0 -0
  970. data/test/dummy/tmp/cache/assets/DB6/710/sprockets%2Ff53e9d96ae4808ad0f9e09ab4ef78f80 +0 -0
  971. data/test/dummy/tmp/cache/assets/DB6/8F0/sprockets%2Fb242c82a350bc6f50358da8ac0ebca6b +0 -0
  972. data/test/dummy/tmp/cache/assets/DB7/0A0/sprockets%2F53d8d17b9898dfb37acce79bfc41655e +0 -0
  973. data/test/dummy/tmp/cache/assets/DB7/670/sprockets%2F14afe7f2ff7c6a35f6f5dd27e95593f4 +0 -0
  974. data/test/dummy/tmp/cache/assets/DB8/680/sprockets%2F3f30bdb482b12f9312d512dbbdefa3c6 +0 -0
  975. data/test/dummy/tmp/cache/assets/DB8/780/sprockets%2F293e460dfaf0bb2cb2e3b744e04d22eb +0 -0
  976. data/test/dummy/tmp/cache/assets/DB9/620/sprockets%2F6f7ce966193908fe7a87bde7fe1f1c1d +0 -0
  977. data/test/dummy/tmp/cache/assets/DBB/7D0/sprockets%2Fdd2e01f5a1c3dd20e2b5bd758a24e47c +0 -0
  978. data/test/dummy/tmp/cache/assets/DBD/080/sprockets%2F039ace5986a3cbf4cca0b0a753bc71a6 +0 -0
  979. data/test/dummy/tmp/cache/assets/DBE/8E0/sprockets%2Fdba8d36e4a4d9c0cb7ea1434ba7e1091 +0 -0
  980. data/test/dummy/tmp/cache/assets/DC0/CB0/sprockets%2Fdd26802f0ecb845eecd6f013ac3be046 +0 -0
  981. data/test/dummy/tmp/cache/assets/DC1/790/sprockets%2Fa3dedcf234a05755b75f34ba9230eebc +0 -0
  982. data/test/dummy/tmp/cache/assets/DC3/7E0/sprockets%2Fe45adb8409222cdd8d5b8a3ad9bb23c3 +0 -0
  983. data/test/dummy/tmp/cache/assets/DC4/600/sprockets%2Fa0794a1ac15dbb57b803dbdce2069ff7 +0 -0
  984. data/test/dummy/tmp/cache/assets/DC4/8D0/sprockets%2Feca7e66a696f39f90e4bd9ef794449ce +0 -0
  985. data/test/dummy/tmp/cache/assets/DC5/500/sprockets%2F25ac94fa819bdb1fad28f4420fd4b90a +0 -0
  986. data/test/dummy/tmp/cache/assets/DC5/660/sprockets%2F637431e1c8fffeaafc23f021bd49fa06 +0 -0
  987. data/test/dummy/tmp/cache/assets/DC6/2C0/sprockets%2Fcf90f72308e31b4d3da7881bb4eadf2a +0 -0
  988. data/test/dummy/tmp/cache/assets/DC6/7C0/sprockets%2Fb408df7a822c70a0924e0cdf6c8fe2ca +0 -0
  989. data/test/dummy/tmp/cache/assets/DC6/E10/sprockets%2Fe6e39c030d68abc49573c0f0aa6cb7fa +0 -0
  990. data/test/dummy/tmp/cache/assets/DC7/7B0/sprockets%2Fed2848328f2a1dce5a85ba3d5cb3a08f +0 -0
  991. data/test/dummy/tmp/cache/assets/DC9/7D0/sprockets%2F0a990ca7fd23339b974fcb0d5ecbe51b +0 -0
  992. data/test/dummy/tmp/cache/assets/DCA/020/sprockets%2Fcb51f5b40a4416eedf63486ccd0f1d8f +0 -0
  993. data/test/dummy/tmp/cache/assets/DCA/480/sprockets%2Fce2f69455c89a3117ecebb42c0e2fa2f +0 -0
  994. data/test/dummy/tmp/cache/assets/DCB/290/sprockets%2F6d23665c4ac5dab13d57ed99ab48cdb1 +0 -0
  995. data/test/dummy/tmp/cache/assets/DCB/330/sprockets%2F22d6adfe7b8aa0f460fad284a7fb7374 +0 -0
  996. data/test/dummy/tmp/cache/assets/DCB/D80/sprockets%2Febb778f78eae8e09af0f4002a23d5d2b +0 -0
  997. data/test/dummy/tmp/cache/assets/DCC/C00/sprockets%2F92bc0032cdd1d38fffccaa6879a619b5 +0 -0
  998. data/test/dummy/tmp/cache/assets/DCC/F40/sprockets%2Fdc3342c548fc7d3c4f4e27732b5acfea +0 -0
  999. data/test/dummy/tmp/cache/assets/DCD/390/sprockets%2Fdcd461b67aec99b76eea270a9ad2c046 +0 -0
  1000. data/test/dummy/tmp/cache/assets/DCD/740/sprockets%2Fc80244c564e19eada1cdddf5f6d0d962 +0 -0
  1001. data/test/dummy/tmp/cache/assets/DCD/8D0/sprockets%2Fbf36f09be83b4d0986ad23ea4d1f32df +0 -0
  1002. data/test/dummy/tmp/cache/assets/DCD/CC0/sprockets%2Fe03ede3c44cb227a99f3cd71e5b4c47d +0 -0
  1003. data/test/dummy/tmp/cache/assets/DCE/1C0/sprockets%2F58cc5eb1cb2a47c8067c940caecf449d +0 -0
  1004. data/test/dummy/tmp/cache/assets/DCE/8C0/sprockets%2Fc158975fbd6211be45d30dee9a8cca4d +0 -0
  1005. data/test/dummy/tmp/cache/assets/DCE/BA0/sprockets%2F57c5ecddc82aa706b1e64691a8a5bcc9 +0 -0
  1006. data/test/dummy/tmp/cache/assets/DCF/900/sprockets%2Fb4dc2a3c5d5822e5cc13ee7098e9ec2e +0 -0
  1007. data/test/dummy/tmp/cache/assets/DCF/C50/sprockets%2Fb21aa9edc8f4b48b196eb625ede25f42 +0 -0
  1008. data/test/dummy/tmp/cache/assets/DCF/E20/sprockets%2Fd24ee80741a60bd4db8f59b784e3ccda +0 -0
  1009. data/test/dummy/tmp/cache/assets/DD0/220/sprockets%2Fb658b3e8db3e47d0da67a3becde17375 +0 -0
  1010. data/test/dummy/tmp/cache/assets/DD1/150/sprockets%2F7ebeb5cbe309be7f60c047b5ed9c7604 +0 -0
  1011. data/test/dummy/tmp/cache/assets/DD1/4A0/sprockets%2Fd1fd81d46b69d255ebc7ab7f3f96a03a +0 -0
  1012. data/test/dummy/tmp/cache/assets/DD2/D90/sprockets%2Facc08ab37871b8576bfcb992aedaf228 +0 -0
  1013. data/test/dummy/tmp/cache/assets/DD5/3E0/sprockets%2F7190b9a5ea395d5b4c49fb66abedf26c +0 -0
  1014. data/test/dummy/tmp/cache/assets/DD6/240/sprockets%2Fd493a33ef4e37bda3f0f58778cfabc81 +0 -0
  1015. data/test/dummy/tmp/cache/assets/DD6/3E0/sprockets%2F886b6fcf1fe02327f797bdf023ae2ece +0 -0
  1016. data/test/dummy/tmp/cache/assets/DD6/B70/sprockets%2F0e7a0e3c9a36b1fcf3179e347e9f7fad +0 -0
  1017. data/test/dummy/tmp/cache/assets/DD7/5C0/sprockets%2F3ffcd3a6bf1ff82c11e3996b461ef7d4 +0 -0
  1018. data/test/dummy/tmp/cache/assets/DD7/600/sprockets%2Fcc47edff1a4a983589bb45bce09533ed +0 -0
  1019. data/test/dummy/tmp/cache/assets/DD9/530/sprockets%2Fe9cbd5b6d7b21568cfb4f7990c7b50eb +0 -0
  1020. data/test/dummy/tmp/cache/assets/DD9/AA0/sprockets%2Ff96cdb075b4fc5b6eabb92832f6ad758 +0 -0
  1021. data/test/dummy/tmp/cache/assets/DDA/DD0/sprockets%2Fa38de1f37e66b69841acb54dafa767fd +0 -0
  1022. data/test/dummy/tmp/cache/assets/DDB/140/sprockets%2F7815fdf1a6a74db4fca71ff6537ced67 +0 -0
  1023. data/test/dummy/tmp/cache/assets/DDC/AD0/sprockets%2Fec9bbacc8283e9bbee2f115395b19f89 +0 -0
  1024. data/test/dummy/tmp/cache/assets/DDD/E10/sprockets%2Fd7292f5eb3a7b1f583efbf05aef567d9 +0 -0
  1025. data/test/dummy/tmp/cache/assets/DDE/450/sprockets%2Fdc1aabe992a97f95a43ce5d8364ff9d1 +0 -0
  1026. data/test/dummy/tmp/cache/assets/DDE/C00/sprockets%2Ffb5947d8ea5a7d6c08c71b3c9d7a88cb +0 -0
  1027. data/test/dummy/tmp/cache/assets/DDF/070/sprockets%2Ffe4d825f88eadf5580f2db2f45c3df28 +0 -0
  1028. data/test/dummy/tmp/cache/assets/DDF/3F0/sprockets%2F06db623ed4f5ff5f487dbcade39f9516 +0 -0
  1029. data/test/dummy/tmp/cache/assets/DE0/640/sprockets%2Fc98e6e5b9c79facfc4bbce3564076f23 +0 -0
  1030. data/test/dummy/tmp/cache/assets/DE0/FB0/sprockets%2F369e344b6dbe8c3c22f896cba9cfc66f +0 -0
  1031. data/test/dummy/tmp/cache/assets/DE1/040/sprockets%2F198a17bea76fa82f54caaf8f9479ace6 +0 -0
  1032. data/test/dummy/tmp/cache/assets/DE1/470/sprockets%2Fa462020f67b203bacddafe3f1aa28a5f +0 -0
  1033. data/test/dummy/tmp/cache/assets/DE7/3B0/sprockets%2F55fc91edc7ee6e5f818993cbddb6b707 +0 -0
  1034. data/test/dummy/tmp/cache/assets/DE7/550/sprockets%2Ffff04b0980f1fbe9ece54cd8ca779867 +0 -0
  1035. data/test/dummy/tmp/cache/assets/DE8/600/sprockets%2F0ae37b3d2eaa3dd72acae269621d33ce +0 -0
  1036. data/test/dummy/tmp/cache/assets/DE8/980/sprockets%2Fea9daa72d1acd0886cc064d0ea6c4a30 +0 -0
  1037. data/test/dummy/tmp/cache/assets/DEA/BE0/sprockets%2Ffbe80a372f9f7ffe2de288e969dfb504 +0 -0
  1038. data/test/dummy/tmp/cache/assets/DEC/3E0/sprockets%2Fce67e335653a9bf4d7ab6f88efd97f2f +0 -0
  1039. data/test/dummy/tmp/cache/assets/DEF/9D0/sprockets%2Faeefda7b5cf4db4b272db1e1462a1187 +0 -0
  1040. data/test/dummy/tmp/cache/assets/DEF/FD0/sprockets%2F7bc9eed2e2f88956c62fdbafd67c5895 +0 -0
  1041. data/test/dummy/tmp/cache/assets/DF2/FD0/sprockets%2F17be3faad7b9c73d25ea4cd063ac244f +0 -0
  1042. data/test/dummy/tmp/cache/assets/DF4/610/sprockets%2Fc7e36bac8572aeba8c6a1edd601822bf +0 -0
  1043. data/test/dummy/tmp/cache/assets/DF5/0C0/sprockets%2Faf8105cfdb7ceae04b099c4a2f654ce1 +0 -0
  1044. data/test/dummy/tmp/cache/assets/DF6/350/sprockets%2F3ae6e69b8a4b3ba62af4e31faa8eb382 +0 -0
  1045. data/test/dummy/tmp/cache/assets/DF7/7B0/sprockets%2F1acc6cb5b0fefc7a4c759d0435f048dc +0 -0
  1046. data/test/dummy/tmp/cache/assets/DF8/570/sprockets%2Fd956ef1a15caba08edb2fc63c569f20d +0 -0
  1047. data/test/dummy/tmp/cache/assets/DF9/800/sprockets%2Fe8a32d7fd3aa2a28bb15afe4a70b99f7 +0 -0
  1048. data/test/dummy/tmp/cache/assets/DFB/030/sprockets%2F5d0ebb03017d6de57cd82defc92d5fc3 +0 -0
  1049. data/test/dummy/tmp/cache/assets/DFB/EA0/sprockets%2Fdef5d6e8216d65afcb1823fe1fc2fd10 +0 -0
  1050. data/test/dummy/tmp/cache/assets/DFC/140/sprockets%2F12db5c0eacf95d8aedc97278adc82b22 +0 -0
  1051. data/test/dummy/tmp/cache/assets/DFD/040/sprockets%2Fc8b4b89a581fb9cd5799ab2aa2db00fc +0 -0
  1052. data/test/dummy/tmp/cache/assets/DFD/340/sprockets%2Fdfdc89a3cdea6f028b1e6625ba1ec557 +0 -0
  1053. data/test/dummy/tmp/cache/assets/DFF/560/sprockets%2F5c1cedb5538de9d0c4dc9fdb62554fa1 +0 -0
  1054. data/test/dummy/tmp/cache/assets/E00/000/sprockets%2Faadaab3c3a4494929aed53991fe7fb2f +0 -0
  1055. data/test/dummy/tmp/cache/assets/E00/1D0/sprockets%2Faaca2cc7dd29a5fb785d9187a0dfe706 +0 -0
  1056. data/test/dummy/tmp/cache/assets/E01/C90/sprockets%2Ffcf9a89d63f392fcd214aa16eb8aac27 +0 -0
  1057. data/test/dummy/tmp/cache/assets/E02/DA0/sprockets%2F9829dec75de6c2a52fdc20d428d2edae +0 -0
  1058. data/test/dummy/tmp/cache/assets/E02/FD0/sprockets%2F3b854b1f189aea494b8d7cbb8bba57bf +0 -0
  1059. data/test/dummy/tmp/cache/assets/E04/860/sprockets%2F972757dbdbdfabfeac8ecb8a15520793 +0 -0
  1060. data/test/dummy/tmp/cache/assets/E05/A70/sprockets%2F7a4daf48a8b7fba4f7bd770048b37fbf +0 -0
  1061. data/test/dummy/tmp/cache/assets/E05/C60/sprockets%2F45fe2fbedb88e452a2572f5d17f4cddc +0 -0
  1062. data/test/dummy/tmp/cache/assets/E07/5B0/sprockets%2F75fdbfc0584a9cb9dda6428a66dec4b5 +0 -0
  1063. data/test/dummy/tmp/cache/assets/E07/FD0/sprockets%2F2b98add7bf753973c33fe3b83bdb7abf +0 -0
  1064. data/test/dummy/tmp/cache/assets/E08/190/sprockets%2F62e3a4fe79c95fd19bc2e1b1f1e9cc9c +0 -0
  1065. data/test/dummy/tmp/cache/assets/E09/EE0/sprockets%2F3a991c15e3b2bb3a1a61f1cad0babc5d +0 -0
  1066. data/test/dummy/tmp/cache/assets/E0A/220/sprockets%2Feb18cd8c9ffabeb80289b3377c0f5be7 +0 -0
  1067. data/test/dummy/tmp/cache/assets/E0B/630/sprockets%2Ffdb75d730b1863ee6ec9cc8fb9614eda +0 -0
  1068. data/test/dummy/tmp/cache/assets/E0B/9C0/sprockets%2F056c4cfcff64c6e7d884bfc5df9a6a30 +0 -0
  1069. data/test/dummy/tmp/cache/assets/E0C/810/sprockets%2Fe74897a12cedd8efea5a559354bd5bfc +0 -0
  1070. data/test/dummy/tmp/cache/assets/E0F/B40/sprockets%2Ff5dfabed7f563e53d4735ef9c4b7a0e9 +0 -0
  1071. data/test/dummy/tmp/cache/assets/E11/DA0/sprockets%2Fe190d6d51f5a7a4d99cb6fcee9aef818 +0 -0
  1072. data/test/dummy/tmp/cache/assets/E14/D30/sprockets%2F0bca399bfd75c35a4fbd11a0c0a80ead +0 -0
  1073. data/test/dummy/tmp/cache/assets/E18/C50/sprockets%2Feda3e89b32d809eedd64f8c9d9f25b9b +0 -0
  1074. data/test/dummy/tmp/cache/assets/E1E/DE0/sprockets%2F84b3baefc2c0a8c2c9c0a92eacc3557b +0 -0
  1075. data/test/dummy/tmp/cache/assets/E1F/5E0/sprockets%2Fedacf71afed14b1da329d30fcaf84091 +0 -0
  1076. data/test/dummy/tmp/cache/assets/E20/290/sprockets%2F7b6ebbec5fd3e30a80daa70d28e0a7d5 +0 -0
  1077. data/test/dummy/tmp/cache/assets/E20/4D0/sprockets%2Ffe257ca0acf9ab234c0f034d9bfbc27e +0 -0
  1078. data/test/dummy/tmp/cache/assets/E20/CA0/sprockets%2Faea8014e4b1beb3df35fa1391d8dba9e +0 -0
  1079. data/test/dummy/tmp/cache/assets/E21/330/sprockets%2F816aead61cd3e240f2bbe1e78da1fdb7 +0 -0
  1080. data/test/dummy/tmp/cache/assets/E23/E70/sprockets%2Fce13ae5e7f8e00fc6ea913d6b64bbaa3 +0 -0
  1081. data/test/dummy/tmp/cache/assets/E2A/8C0/sprockets%2F89ff6c07d31f18fbac3accf30be90f2c +0 -0
  1082. data/test/dummy/tmp/cache/assets/E2C/EA0/sprockets%2Fcb15d5ff97502cc7dfe8a2e06ab16efb +0 -0
  1083. data/test/dummy/tmp/cache/assets/E2D/630/sprockets%2F95b2fe9ec24a6321c9aebcc3b7c53dfe +0 -0
  1084. data/test/dummy/tmp/cache/assets/E2E/240/sprockets%2F7c5f9d08e0f93caa0049bcee85aedd4a +0 -0
  1085. data/test/dummy/tmp/cache/assets/E2E/350/sprockets%2F3cfe1f5fa9fc1bb53eba0fdc9527d087 +0 -0
  1086. data/test/dummy/tmp/cache/assets/E30/4D0/sprockets%2Fe9fae8bbab01dfe66e3c0c74f4694ea3 +0 -0
  1087. data/test/dummy/tmp/cache/assets/E30/C50/sprockets%2Fdaad6c4c7b1429f8de49d81fac6ad18b +0 -0
  1088. data/test/dummy/tmp/cache/assets/E32/970/sprockets%2F89fd1565e9aef5c1227eabc3aaeca8c8 +0 -0
  1089. data/test/dummy/tmp/cache/assets/E33/970/sprockets%2Fb54d7ff3c7bc1b147dbae6c739fb7dc6 +0 -0
  1090. data/test/dummy/tmp/cache/assets/E36/230/sprockets%2F56aec75c7f17ef3509d4cadcf2e6fc3d +0 -0
  1091. data/test/dummy/tmp/cache/assets/E37/6B0/sprockets%2Fce49aa1fbe8185b07e78cf9b9eee22ab +0 -0
  1092. data/test/dummy/tmp/cache/assets/E3B/D00/sprockets%2Fd449bd8f327cb66deda93ffa0f2e39ed +0 -0
  1093. data/test/dummy/tmp/cache/assets/E3C/680/sprockets%2Fd057ba99f8cc7b032da8ed9e8c0dff7c +0 -0
  1094. data/test/dummy/tmp/cache/assets/E43/920/sprockets%2F5cad0e4ea31f4ce054cbccc73aec3d31 +0 -0
  1095. data/test/dummy/tmp/cache/assets/E4E/F40/sprockets%2F73440bdc546d14ab9b83aab4acfbedde +0 -0
  1096. data/test/dummy/tmp/cache/assets/E53/340/sprockets%2Fbad75d3d5f8eba9ceada05fa125a642f +0 -0
  1097. data/test/dummy/tmp/cache/assets/E54/0F0/sprockets%2Fddbe86c2b19c9b2c5d0bca8e248a1fcb +0 -0
  1098. data/test/dummy/tmp/cache/assets/E55/340/sprockets%2Faaeaef87c1531a051fcdb8def54f4c1f +0 -0
  1099. data/test/dummy/tmp/cache/assets/E55/410/sprockets%2Fe82a167aefed53aba0ffe873cb2f6b1a +0 -0
  1100. data/test/dummy/tmp/cache/assets/E5E/CA0/sprockets%2Fdf31d095f37e9abda2e4ddb3e0e6fcb9 +0 -0
  1101. data/test/dummy/tmp/cache/assets/E65/760/sprockets%2F57acbaa97ded591947d4d8d0aeedae7a +0 -0
  1102. data/test/dummy/tmp/cache/assets/E66/100/sprockets%2Fbce3d69de5812a78af6ceab6e9af3bc6 +0 -0
  1103. data/test/dummy/tmp/cache/assets/E6A/DD0/sprockets%2F6d1ea6da8ef4bec8e67f21bfe7f5ff30 +0 -0
  1104. data/test/dummy/tmp/cache/assets/E87/890/sprockets%2Fe44c7a1cdfb3ced088e6ba57cfd06aae +0 -0
  1105. data/test/dummy/tmp/cache/assets/E89/BE0/sprockets%2F9bfc41fee1adbc5e0ab3e58eafb550f9 +0 -0
  1106. data/test/dummy/tmp/cache/assets/E8D/460/sprockets%2Fec62e7d4edfe3b7fb190bcb21fe9bec3 +0 -0
  1107. data/test/dummy/tmp/cache/assets/EA4/CD0/sprockets%2F7d06cdaa883a75feeeedbd6f2e89dff6 +0 -0
  1108. data/test/dummy/tmp/cache/assets/EBA/D30/sprockets%2Fcfde65adb22944ecb804edd2faebe5ec +0 -0
  1109. data/test/dummy/tmp/cache/assets/ECD/BA0/sprockets%2Ff7a898dcfdfabd5c346afffdfe70fb06 +0 -0
  1110. data/test/dummy/tmp/data/meta_request/2bfb497341d406ebe76964de10415b91.json +1 -0
  1111. data/test/dummy/tmp/data/meta_request/98a03c30c6ee1370bf427323edb09e2d.json +1 -0
  1112. data/test/dummy/tmp/data/meta_request/d0be476cf82087eab92f538be2ea225d.json +1 -0
  1113. data/test/dummy/tmp/data/meta_request/ee8fc9395ae6b00a840b4a8383104cfe.json +1 -0
  1114. metadata +113 -40
  1115. data/app/assets/javascripts/Shaders/Builtin/Functions/cellular.glsl +0 -77
  1116. data/app/assets/javascripts/Shaders/Builtin/Functions/cellular.js +0 -90
  1117. data/app/assets/javascripts/Shaders/Builtin/Functions/snoise.glsl +0 -282
  1118. data/app/assets/javascripts/Shaders/Builtin/Functions/snoise.js +0 -299
  1119. data/app/assets/javascripts/Shaders/Materials/AsphaltMaterial.glsl +0 -25
  1120. data/app/assets/javascripts/Shaders/Materials/AsphaltMaterial.js +0 -31
  1121. data/app/assets/javascripts/Shaders/Materials/BlobMaterial.glsl +0 -18
  1122. data/app/assets/javascripts/Shaders/Materials/BlobMaterial.js +0 -23
  1123. data/app/assets/javascripts/Shaders/Materials/BrickMaterial.glsl +0 -42
  1124. data/app/assets/javascripts/Shaders/Materials/BrickMaterial.js +0 -47
  1125. data/app/assets/javascripts/Shaders/Materials/CementMaterial.glsl +0 -19
  1126. data/app/assets/javascripts/Shaders/Materials/CementMaterial.js +0 -24
  1127. data/app/assets/javascripts/Shaders/Materials/ErosionMaterial.glsl +0 -23
  1128. data/app/assets/javascripts/Shaders/Materials/ErosionMaterial.js +0 -29
  1129. data/app/assets/javascripts/Shaders/Materials/FacetMaterial.glsl +0 -18
  1130. data/app/assets/javascripts/Shaders/Materials/FacetMaterial.js +0 -24
  1131. data/app/assets/javascripts/Shaders/Materials/GrassMaterial.glsl +0 -28
  1132. data/app/assets/javascripts/Shaders/Materials/GrassMaterial.js +0 -33
  1133. data/app/assets/javascripts/Shaders/Materials/TieDyeMaterial.glsl +0 -17
  1134. data/app/assets/javascripts/Shaders/Materials/TieDyeMaterial.js +0 -23
  1135. data/app/assets/javascripts/Shaders/Materials/WoodMaterial.glsl +0 -36
  1136. data/app/assets/javascripts/Shaders/Materials/WoodMaterial.js +0 -41
  1137. data/app/assets/javascripts/Widgets/Observable.js +0 -32
  1138. data/app/assets/javascripts/Workers/Workers.profile.js +0 -8
  1139. data/app/assets/javascripts/Workers/package.json +0 -6
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Cesium - https://github.com/AnalyticalGraphicsInc/cesium
3
3
  *
4
- * Copyright 2011-2013 Cesium Contributors
4
+ * Copyright 2011-2014 Cesium Contributors
5
5
  *
6
6
  * Licensed under the Apache License, Version 2.0 (the "License");
7
7
  * you may not use this file except in compliance with the License.
@@ -31,7 +31,7 @@ define('Core/defined',[],function() {
31
31
  * @exports defined
32
32
  *
33
33
  * @example
34
- * if (defined(positions)) {
34
+ * if (Cesium.defined(positions)) {
35
35
  * doSomething();
36
36
  * } else {
37
37
  * doSomethingElse();
@@ -80,7 +80,7 @@ define('Core/defaultValue',[
80
80
  * @exports defaultValue
81
81
  *
82
82
  * @example
83
- * param = defaultValue(param, 'default');
83
+ * param = Cesium.defaultValue(param, 'default');
84
84
  */
85
85
  var defaultValue = function(a, b) {
86
86
  if (a !== undefined) {
@@ -364,11 +364,11 @@ define('Core/Cartesian3',[
364
364
  * @example
365
365
  * // Create a Cartesian3 with (1.0, 2.0, 3.0)
366
366
  * var v = [1.0, 2.0, 3.0];
367
- * var p = Cartesian3.fromArray(v);
367
+ * var p = Cesium.Cartesian3.fromArray(v);
368
368
  *
369
369
  * // Create a Cartesian3 with (1.0, 2.0, 3.0) using an offset into an array
370
370
  * var v2 = [0.0, 0.0, 1.0, 2.0, 3.0];
371
- * var p2 = Cartesian3.fromArray(v2, 2);
371
+ * var p2 = Cesium.Cartesian3.fromArray(v2, 2);
372
372
  */
373
373
  Cartesian3.fromArray = Cartesian3.unpack;
374
374
 
@@ -512,7 +512,7 @@ define('Core/Cartesian3',[
512
512
  *
513
513
  * @example
514
514
  * // Returns 1.0
515
- * var d = Cartesian3.distance(new Cartesian3(1.0, 0.0, 0.0), new Cartesian3(2.0, 0.0, 0.0));
515
+ * var d = Cesium.Cartesian3.distance(new Cesium.Cartesian3(1.0, 0.0, 0.0), new Cesium.Cartesian3(2.0, 0.0, 0.0));
516
516
  */
517
517
  Cartesian3.distance = function(left, right) {
518
518
  if (!defined(left) || !defined(right)) {
@@ -1201,11 +1201,11 @@ define('Core/Cartesian4',[
1201
1201
  * @example
1202
1202
  * // Create a Cartesian4 with (1.0, 2.0, 3.0, 4.0)
1203
1203
  * var v = [1.0, 2.0, 3.0, 4.0];
1204
- * var p = Cartesian4.fromArray(v);
1204
+ * var p = Cesium.Cartesian4.fromArray(v);
1205
1205
  *
1206
1206
  * // Create a Cartesian4 with (1.0, 2.0, 3.0, 4.0) using an offset into an array
1207
1207
  * var v2 = [0.0, 0.0, 1.0, 2.0, 3.0, 4.0];
1208
- * var p2 = Cartesian4.fromArray(v2, 2);
1208
+ * var p2 = Cesium.Cartesian4.fromArray(v2, 2);
1209
1209
  */
1210
1210
  Cartesian4.fromArray = Cartesian4.unpack;
1211
1211
 
@@ -1352,7 +1352,7 @@ define('Core/Cartesian4',[
1352
1352
  *
1353
1353
  * @example
1354
1354
  * // Returns 1.0
1355
- * var d = Cartesian4.distance(new Cartesian4(1.0, 0.0, 0.0, 0.0), new Cartesian4(2.0, 0.0, 0.0, 0.0));
1355
+ * var d = Cesium.Cartesian4.distance(new Cesium.Cartesian4(1.0, 0.0, 0.0, 0.0), new Cesium.Cartesian4(2.0, 0.0, 0.0, 0.0));
1356
1356
  */
1357
1357
  Cartesian4.distance = function(left, right) {
1358
1358
  if (!defined(left) || !defined(right)) {
@@ -2429,7 +2429,7 @@ define('Core/Math',[
2429
2429
  *
2430
2430
  * @example
2431
2431
  * // Convert 270 degrees to -90 degrees longitude
2432
- * var longitude = CesiumMath.convertLongitudeRange(CesiumMath.toRadians(270.0));
2432
+ * var longitude = Cesium.Math.convertLongitudeRange(Cesium.Math.toRadians(270.0));
2433
2433
  */
2434
2434
  CesiumMath.convertLongitudeRange = function(angle) {
2435
2435
  var twoPi = CesiumMath.TWO_PI;
@@ -2502,7 +2502,7 @@ define('Core/Math',[
2502
2502
  *
2503
2503
  * @example
2504
2504
  * //Compute 7!, which is equal to 5040
2505
- * var computedFactorial = CesiumMath.factorial(7);
2505
+ * var computedFactorial = Cesium.Math.factorial(7);
2506
2506
  *
2507
2507
  * @exception {DeveloperError} A number greater than or equal to 0 is required.
2508
2508
  */
@@ -2533,8 +2533,8 @@ define('Core/Math',[
2533
2533
  * @returns {Number} The incremented number.
2534
2534
  *
2535
2535
  * @example
2536
- * var n = CesiumMath.incrementWrap(5, 10, 0); // returns 6
2537
- * var n = CesiumMath.incrementWrap(10, 10, 0); // returns 0
2536
+ * var n = Cesium.Math.incrementWrap(5, 10, 0); // returns 6
2537
+ * var n = Cesium.Math.incrementWrap(10, 10, 0); // returns 0
2538
2538
  *
2539
2539
  * @exception {DeveloperError} Maximum value must be greater than minimum value.
2540
2540
  */
@@ -2564,8 +2564,8 @@ define('Core/Math',[
2564
2564
  * @exception {DeveloperError} A number greater than or equal to 0 is required.
2565
2565
  *
2566
2566
  * @example
2567
- * var t = CesiumMath.isPowerOfTwo(16); // true
2568
- * var f = CesiumMath.isPowerOfTwo(20); // false
2567
+ * var t = Cesium.Math.isPowerOfTwo(16); // true
2568
+ * var f = Cesium.Math.isPowerOfTwo(20); // false
2569
2569
  */
2570
2570
  CesiumMath.isPowerOfTwo = function(n) {
2571
2571
  if (typeof n !== 'number' || n < 0) {
@@ -2587,8 +2587,8 @@ define('Core/Math',[
2587
2587
  * @exception {DeveloperError} A number greater than or equal to 0 is required.
2588
2588
  *
2589
2589
  * @example
2590
- * var n = CesiumMath.nextPowerOfTwo(29); // 32
2591
- * var m = CesiumMath.nextPowerOfTwo(32); // 32
2590
+ * var n = Cesium.Math.nextPowerOfTwo(29); // 32
2591
+ * var m = Cesium.Math.nextPowerOfTwo(32); // 32
2592
2592
  */
2593
2593
  CesiumMath.nextPowerOfTwo = function(n) {
2594
2594
  if (typeof n !== 'number' || n < 0) {
@@ -2788,9 +2788,10 @@ define('Core/Cartographic',[
2788
2788
  * @exception {DeveloperError} epsilon is required and must be a number.
2789
2789
  */
2790
2790
  Cartographic.equalsEpsilon = function(left, right, epsilon) {
2791
- if (typeof epsilon !== 'number') {
2791
+ if (typeof epsilon !== 'number') {
2792
2792
  throw new DeveloperError('epsilon is required and must be a number.');
2793
2793
  }
2794
+
2794
2795
  return (left === right) ||
2795
2796
  ((defined(left)) &&
2796
2797
  (defined(right)) &&
@@ -2809,9 +2810,10 @@ define('Core/Cartographic',[
2809
2810
  * @exception {DeveloperError} cartographic is required.
2810
2811
  */
2811
2812
  Cartographic.toString = function(cartographic) {
2812
- if (!defined(cartographic)) {
2813
+ if (!defined(cartographic)) {
2813
2814
  throw new DeveloperError('cartographic is required');
2814
2815
  }
2816
+
2815
2817
  return '(' + cartographic.longitude + ', ' + cartographic.latitude + ', ' + cartographic.height + ')';
2816
2818
  };
2817
2819
 
@@ -2919,10 +2921,10 @@ define('Core/Ellipsoid',[
2919
2921
  y = defaultValue(y, 0.0);
2920
2922
  z = defaultValue(z, 0.0);
2921
2923
 
2922
- if (x < 0.0 || y < 0.0 || z < 0.0) {
2924
+ if (x < 0.0 || y < 0.0 || z < 0.0) {
2923
2925
  throw new DeveloperError('All radii components must be greater than or equal to zero.');
2924
2926
  }
2925
-
2927
+
2926
2928
  this._radii = new Cartesian3(x, y, z);
2927
2929
 
2928
2930
  this._radiiSquared = new Cartesian3(x * x,
@@ -3110,10 +3112,10 @@ define('Core/Ellipsoid',[
3110
3112
  * @exception {DeveloperError} cartographic is required.
3111
3113
  */
3112
3114
  Ellipsoid.prototype.geodeticSurfaceNormalCartographic = function(cartographic, result) {
3113
- if (!defined(cartographic)) {
3115
+ if (!defined(cartographic)) {
3114
3116
  throw new DeveloperError('cartographic is required.');
3115
3117
  }
3116
-
3118
+
3117
3119
  var longitude = cartographic.longitude;
3118
3120
  var latitude = cartographic.latitude;
3119
3121
  var cosLatitude = Math.cos(latitude);
@@ -3161,8 +3163,8 @@ define('Core/Ellipsoid',[
3161
3163
  *
3162
3164
  * @example
3163
3165
  * //Create a Cartographic and determine it's Cartesian representation on a WGS84 ellipsoid.
3164
- * var position = new Cartographic(Math.toRadians(21), Math.toRadians(78), 5000);
3165
- * var cartesianPosition = Ellipsoid.WGS84.cartographicToCartesian(position);
3166
+ * var position = new Cesium.Cartographic(Cesium.Math.toRadians(21), Cesium.Math.toRadians(78), 5000);
3167
+ * var cartesianPosition = Cesium.Ellipsoid.WGS84.cartographicToCartesian(position);
3166
3168
  */
3167
3169
  Ellipsoid.prototype.cartographicToCartesian = function(cartographic, result) {
3168
3170
  //`cartographic is required` is thrown from geodeticSurfaceNormalCartographic.
@@ -3188,16 +3190,16 @@ define('Core/Ellipsoid',[
3188
3190
  *
3189
3191
  * @example
3190
3192
  * //Convert an array of Cartographics and determine their Cartesian representation on a WGS84 ellipsoid.
3191
- * var positions = [new Cartographic(Math.toRadians(21), Math.toRadians(78), 0),
3192
- * new Cartographic(Math.toRadians(21.321), Math.toRadians(78.123), 100),
3193
- * new Cartographic(Math.toRadians(21.645), Math.toRadians(78.456), 250)
3194
- * var cartesianPositions = Ellipsoid.WGS84.cartographicArrayToCartesianArray(positions);
3193
+ * var positions = [new Cesium.Cartographic(Cesium.Math.toRadians(21), Cesium.Math.toRadians(78), 0),
3194
+ * new Cesium.Cartographic(Cesium.Math.toRadians(21.321), Cesium.Math.toRadians(78.123), 100),
3195
+ * new Cesium.Cartographic(Cesium.Math.toRadians(21.645), Cesium.Math.toRadians(78.456), 250)
3196
+ * var cartesianPositions = Cesium.Ellipsoid.WGS84.cartographicArrayToCartesianArray(positions);
3195
3197
  */
3196
3198
  Ellipsoid.prototype.cartographicArrayToCartesianArray = function(cartographics, result) {
3197
- if (!defined(cartographics)) {
3199
+ if (!defined(cartographics)) {
3198
3200
  throw new DeveloperError('cartographics is required.');
3199
3201
  }
3200
-
3202
+
3201
3203
  var length = cartographics.length;
3202
3204
  if (!defined(result)) {
3203
3205
  result = new Array(length);
@@ -3227,8 +3229,8 @@ define('Core/Ellipsoid',[
3227
3229
  *
3228
3230
  * @example
3229
3231
  * //Create a Cartesian and determine it's Cartographic representation on a WGS84 ellipsoid.
3230
- * var position = new Cartesian(17832.12, 83234.52, 952313.73);
3231
- * var cartographicPosition = Ellipsoid.WGS84.cartesianToCartographic(position);
3232
+ * var position = new Cesium.Cartesian(17832.12, 83234.52, 952313.73);
3233
+ * var cartographicPosition = Cesium.Ellipsoid.WGS84.cartesianToCartographic(position);
3232
3234
  */
3233
3235
  Ellipsoid.prototype.cartesianToCartographic = function(cartesian, result) {
3234
3236
  //`cartesian is required.` is thrown from scaleToGeodeticSurface
@@ -3266,16 +3268,16 @@ define('Core/Ellipsoid',[
3266
3268
  *
3267
3269
  * @example
3268
3270
  * //Create an array of Cartesians and determine their Cartographic representation on a WGS84 ellipsoid.
3269
- * var positions = [new Cartesian(17832.12, 83234.52, 952313.73),
3270
- * new Cartesian(17832.13, 83234.53, 952313.73),
3271
- * new Cartesian(17832.14, 83234.54, 952313.73)]
3272
- * var cartographicPositions = Ellipsoid.WGS84.cartesianArrayToCartographicArray(positions);
3271
+ * var positions = [new Cesium.Cartesian(17832.12, 83234.52, 952313.73),
3272
+ * new Cesium.Cartesian(17832.13, 83234.53, 952313.73),
3273
+ * new Cesium.Cartesian(17832.14, 83234.54, 952313.73)]
3274
+ * var cartographicPositions = Cesium.Ellipsoid.WGS84.cartesianArrayToCartographicArray(positions);
3273
3275
  */
3274
3276
  Ellipsoid.prototype.cartesianArrayToCartographicArray = function(cartesians, result) {
3275
- if (!defined(cartesians)) {
3277
+ if (!defined(cartesians)) {
3276
3278
  throw new DeveloperError('cartesians is required.');
3277
3279
  }
3278
-
3280
+
3279
3281
  var length = cartesians.length;
3280
3282
  if (!defined(result)) {
3281
3283
  result = new Array(length);
@@ -3304,10 +3306,10 @@ define('Core/Ellipsoid',[
3304
3306
  * @exception {DeveloperError} cartesian is required.
3305
3307
  */
3306
3308
  Ellipsoid.prototype.scaleToGeodeticSurface = function(cartesian, result) {
3307
- if (!defined(cartesian)) {
3309
+ if (!defined(cartesian)) {
3308
3310
  throw new DeveloperError('cartesian is required.');
3309
3311
  }
3310
-
3312
+
3311
3313
  var positionX = cartesian.x;
3312
3314
  var positionY = cartesian.y;
3313
3315
  var positionZ = cartesian.z;
@@ -3408,10 +3410,10 @@ define('Core/Ellipsoid',[
3408
3410
  * @exception {DeveloperError} cartesian is required.
3409
3411
  */
3410
3412
  Ellipsoid.prototype.scaleToGeocentricSurface = function(cartesian, result) {
3411
- if (!defined(cartesian)) {
3413
+ if (!defined(cartesian)) {
3412
3414
  throw new DeveloperError('cartesian is required.');
3413
3415
  }
3414
-
3416
+
3415
3417
  var positionX = cartesian.x;
3416
3418
  var positionY = cartesian.y;
3417
3419
  var positionZ = cartesian.z;
@@ -3610,8 +3612,8 @@ define('Core/Enumeration',['./defined'], function(defined) {
3610
3612
  * @example
3611
3613
  * // Create an object with two enumerations.
3612
3614
  * var filter = {
3613
- * NEAREST : new Enumeration(0x2600, 'NEAREST'),
3614
- * LINEAR : new Enumeration(0x2601, 'LINEAR')
3615
+ * NEAREST : new Cesium.Enumeration(0x2600, 'NEAREST'),
3616
+ * LINEAR : new Cesium.Enumeration(0x2601, 'LINEAR')
3615
3617
  * };
3616
3618
  */
3617
3619
  var Enumeration = function(value, name, properties) {
@@ -3840,11 +3842,11 @@ define('Core/Matrix3',[
3840
3842
  * // [1.0, 2.0, 3.0]
3841
3843
  *
3842
3844
  * var v = [1.0, 1.0, 1.0, 2.0, 2.0, 2.0, 3.0, 3.0, 3.0];
3843
- * var m = Matrix3.fromArray(v);
3845
+ * var m = Cesium.Matrix3.fromArray(v);
3844
3846
  *
3845
3847
  * // Create same Matrix3 with using an offset into an array
3846
3848
  * var v2 = [0.0, 0.0, 1.0, 1.0, 1.0, 2.0, 2.0, 2.0, 3.0, 3.0, 3.0];
3847
- * var m2 = Matrix3.fromArray(v2, 2);
3849
+ * var m2 = Cesium.Matrix3.fromArray(v2, 2);
3848
3850
  */
3849
3851
  Matrix3.fromArray = function(array, startingIndex, result) {
3850
3852
  if (!defined(array)) {
@@ -3990,7 +3992,7 @@ define('Core/Matrix3',[
3990
3992
  * // [7.0, 0.0, 0.0]
3991
3993
  * // [0.0, 8.0, 0.0]
3992
3994
  * // [0.0, 0.0, 9.0]
3993
- * var m = Matrix3.fromScale(new Cartesian3(7.0, 8.0, 9.0));
3995
+ * var m = Cesium.Matrix3.fromScale(new Cesium.Cartesian3(7.0, 8.0, 9.0));
3994
3996
  */
3995
3997
  Matrix3.fromScale = function(scale, result) {
3996
3998
  if (!defined(scale)) {
@@ -4031,7 +4033,7 @@ define('Core/Matrix3',[
4031
4033
  * // [2.0, 0.0, 0.0]
4032
4034
  * // [0.0, 2.0, 0.0]
4033
4035
  * // [0.0, 0.0, 2.0]
4034
- * var m = Matrix3.fromUniformScale(2.0);
4036
+ * var m = Cesium.Matrix3.fromUniformScale(2.0);
4035
4037
  */
4036
4038
  Matrix3.fromUniformScale = function(scale, result) {
4037
4039
  if (typeof scale !== 'number') {
@@ -4069,9 +4071,9 @@ define('Core/Matrix3',[
4069
4071
  *
4070
4072
  * @example
4071
4073
  * // Rotate a point 45 degrees counterclockwise around the x-axis.
4072
- * var p = new Cartesian3(5, 6, 7);
4073
- * var m = Matrix3.fromRotationX(CesiumMath.toRadians(45.0));
4074
- * var rotated = Matrix3.multiplyByVector(m, p);
4074
+ * var p = new Cesium.Cartesian3(5, 6, 7);
4075
+ * var m = Cesium.Matrix3.fromRotationX(Cesium.Math.toRadians(45.0));
4076
+ * var rotated = Cesium.Matrix3.multiplyByVector(m, p);
4075
4077
  */
4076
4078
  Matrix3.fromRotationX = function(angle, result) {
4077
4079
  if (!defined(angle)) {
@@ -4113,9 +4115,9 @@ define('Core/Matrix3',[
4113
4115
  *
4114
4116
  * @example
4115
4117
  * // Rotate a point 45 degrees counterclockwise around the y-axis.
4116
- * var p = new Cartesian3(5, 6, 7);
4117
- * var m = Matrix3.fromRotationY(CesiumMath.toRadians(45.0));
4118
- * var rotated = Matrix3.multiplyByVector(m, p);
4118
+ * var p = new Cesium.Cartesian3(5, 6, 7);
4119
+ * var m = Cesium.Matrix3.fromRotationY(Cesium.Math.toRadians(45.0));
4120
+ * var rotated = Cesium.Matrix3.multiplyByVector(m, p);
4119
4121
  */
4120
4122
  Matrix3.fromRotationY = function(angle, result) {
4121
4123
  if (!defined(angle)) {
@@ -4157,9 +4159,9 @@ define('Core/Matrix3',[
4157
4159
  *
4158
4160
  * @example
4159
4161
  * // Rotate a point 45 degrees counterclockwise around the z-axis.
4160
- * var p = new Cartesian3(5, 6, 7);
4161
- * var m = Matrix3.fromRotationZ(CesiumMath.toRadians(45.0));
4162
- * var rotated = Matrix3.multiplyByVector(m, p);
4162
+ * var p = new Cesium.Cartesian3(5, 6, 7);
4163
+ * var m = Cesium.Matrix3.fromRotationZ(Cesium.Math.toRadians(45.0));
4164
+ * var rotated = Cesium.Matrix3.multiplyByVector(m, p);
4163
4165
  */
4164
4166
  Matrix3.fromRotationZ = function(angle, result) {
4165
4167
  if (!defined(angle)) {
@@ -4232,8 +4234,8 @@ define('Core/Matrix3',[
4232
4234
  * @exception {DeveloperError} column is required and must be 0, 1, or 2.
4233
4235
  *
4234
4236
  * @example
4235
- * var myMatrix = new Matrix3();
4236
- * var column1Row0Index = Matrix3.getElementIndex(1, 0);
4237
+ * var myMatrix = new Cesium.Matrix3();
4238
+ * var column1Row0Index = Cesium.Matrix3.getElementIndex(1, 0);
4237
4239
  * var column1Row0 = myMatrix[column1Row0Index]
4238
4240
  * myMatrix[column1Row0Index] = 10.0;
4239
4241
  */
@@ -4690,18 +4692,18 @@ define('Core/Matrix3',[
4690
4692
  * @example
4691
4693
  * var a = //... symetric matrix
4692
4694
  * var result = {
4693
- * unitary : new Matrix3(),
4694
- * diagonal : new Matrix3()
4695
+ * unitary : new Cesium.Matrix3(),
4696
+ * diagonal : new Cesium.Matrix3()
4695
4697
  * };
4696
- * Matrix3.getEigenDecomposition(a, result);
4698
+ * Cesium.Matrix3.getEigenDecomposition(a, result);
4697
4699
  *
4698
- * var unitaryTranspose = Matrix3.transpose(result.unitary);
4699
- * var b = Matrix.multiply(result.unitary, result.diagonal);
4700
- * Matrix3.multiply(b, unitaryTranspose, b); // b is now equal to a
4700
+ * var unitaryTranspose = Cesium.Matrix3.transpose(result.unitary);
4701
+ * var b = Cesium.Matrix3.multiply(result.unitary, result.diagonal);
4702
+ * Cesium.Matrix3.multiply(b, unitaryTranspose, b); // b is now equal to a
4701
4703
  *
4702
- * var lambda = Matrix3.getColumn(result.diagonal, 0).x; // first eigenvalue
4703
- * var v = Matrix3.getColumn(result.unitary, 0); // first eigenvector
4704
- * var c = Cartesian3.multiplyByScalar(v, lambda); // equal to Matrix3.multiplyByVector(a, v)
4704
+ * var lambda = Cesium.Matrix3.getColumn(result.diagonal, 0).x; // first eigenvalue
4705
+ * var v = Cesium.Matrix3.getColumn(result.unitary, 0); // first eigenvector
4706
+ * var c = Cesium.Cartesian3.multiplyByScalar(v, lambda); // equal to Cesium.Matrix3.multiplyByVector(a, v)
4705
4707
  */
4706
4708
  Matrix3.getEigenDecomposition = function(matrix, result) {
4707
4709
  if (!defined(matrix)) {
@@ -4785,10 +4787,10 @@ define('Core/Matrix3',[
4785
4787
  * @exception {DeveloperError} matrix is required.
4786
4788
  */
4787
4789
  Matrix3.determinant = function(matrix) {
4788
- if (!defined(matrix)) {
4790
+ if (!defined(matrix)) {
4789
4791
  throw new DeveloperError('matrix is required');
4790
4792
  }
4791
-
4793
+
4792
4794
  var m11 = matrix[0];
4793
4795
  var m21 = matrix[3];
4794
4796
  var m31 = matrix[6];
@@ -4814,10 +4816,10 @@ define('Core/Matrix3',[
4814
4816
  * @exception {DeveloperError} matrix is not invertible.
4815
4817
  */
4816
4818
  Matrix3.inverse = function(matrix, result) {
4817
- if (!defined(matrix)) {
4819
+ if (!defined(matrix)) {
4818
4820
  throw new DeveloperError('matrix is required');
4819
4821
  }
4820
-
4822
+
4821
4823
  var m11 = matrix[0];
4822
4824
  var m21 = matrix[1];
4823
4825
  var m31 = matrix[2];
@@ -5214,11 +5216,11 @@ define('Core/Matrix4',[
5214
5216
  * // [1.0, 2.0, 3.0, 4.0]
5215
5217
  *
5216
5218
  * var v = [1.0, 1.0, 1.0, 1.0, 2.0, 2.0, 2.0, 2.0, 3.0, 3.0, 3.0, 3.0, 4.0, 4.0, 4.0, 4.0];
5217
- * var m = Matrix4.fromArray(v);
5219
+ * var m = Cesium.Matrix4.fromArray(v);
5218
5220
  *
5219
5221
  * // Create same Matrix4 with using an offset into an array
5220
5222
  * var v2 = [0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 2.0, 2.0, 2.0, 2.0, 3.0, 3.0, 3.0, 3.0, 4.0, 4.0, 4.0, 4.0];
5221
- * var m2 = Matrix4.fromArray(v2, 2);
5223
+ * var m2 = Cesium.Matrix4.fromArray(v2, 2);
5222
5224
  */
5223
5225
  Matrix4.fromArray = function(array, startingIndex, result) {
5224
5226
  if (!defined(array)) {
@@ -5376,10 +5378,10 @@ define('Core/Matrix4',[
5376
5378
  * @exception {DeveloperError} scale is required.
5377
5379
  *
5378
5380
  * @example
5379
- * result = Matrix4.fromTranslationQuaternionRotationScale(
5380
- * new Cartesian3(1.0, 2.0, 3.0), // translation
5381
- * Quaternion.IDENTITY, // rotation
5382
- * new Cartesian3(7.0, 8.0, 9.0), // scale
5381
+ * result = Cesium.Matrix4.fromTranslationQuaternionRotationScale(
5382
+ * new Cesium.Cartesian3(1.0, 2.0, 3.0), // translation
5383
+ * Cesium.Quaternion.IDENTITY, // rotation
5384
+ * new Cesium.Cartesian3(7.0, 8.0, 9.0), // scale
5383
5385
  * result);
5384
5386
  */
5385
5387
  Matrix4.fromTranslationQuaternionRotationScale = function(translation, rotation, scale, result) {
@@ -5476,7 +5478,7 @@ define('Core/Matrix4',[
5476
5478
  * // [0.0, 8.0, 0.0, 0.0]
5477
5479
  * // [0.0, 0.0, 9.0, 0.0]
5478
5480
  * // [0.0, 0.0, 0.0, 1.0]
5479
- * var m = Matrix4.fromScale(new Cartesian3(7.0, 8.0, 9.0));
5481
+ * var m = Cesium.Matrix4.fromScale(new Cartesian3(7.0, 8.0, 9.0));
5480
5482
  */
5481
5483
  Matrix4.fromScale = function(scale, result) {
5482
5484
  if (!defined(scale)) {
@@ -5526,7 +5528,7 @@ define('Core/Matrix4',[
5526
5528
  * // [0.0, 2.0, 0.0, 0.0]
5527
5529
  * // [0.0, 0.0, 2.0, 0.0]
5528
5530
  * // [0.0, 0.0, 0.0, 1.0]
5529
- * var m = Matrix4.fromScale(2.0);
5531
+ * var m = Cesium.Matrix4.fromScale(2.0);
5530
5532
  */
5531
5533
  Matrix4.fromUniformScale = function(scale, result) {
5532
5534
  if (typeof scale !== 'number') {
@@ -5959,7 +5961,7 @@ define('Core/Matrix4',[
5959
5961
  *
5960
5962
  * @example
5961
5963
  * // Example 1. Create viewport transformation using an explicit viewport and depth range.
5962
- * var m = Matrix4.computeViewportTransformation({
5964
+ * var m = Cesium.Matrix4.computeViewportTransformation({
5963
5965
  * x : 0.0,
5964
5966
  * y : 0.0,
5965
5967
  * width : 1024.0,
@@ -5967,7 +5969,7 @@ define('Core/Matrix4',[
5967
5969
  * }, 0.0, 1.0);
5968
5970
  *
5969
5971
  * // Example 2. Create viewport transformation using the context's viewport.
5970
- * var m = Matrix4.computeViewportTransformation(context.getViewport());
5972
+ * var m = Cesium.Matrix4.computeViewportTransformation(context.getViewport());
5971
5973
  */
5972
5974
  Matrix4.computeViewportTransformation = function(viewport, nearDepthRange, farDepthRange, result) {
5973
5975
  viewport = defaultValue(viewport, defaultValue.EMPTY_OBJECT);
@@ -6032,7 +6034,7 @@ define('Core/Matrix4',[
6032
6034
  * // [11.0, 15.0, 19.0, 23.0]
6033
6035
  * // [12.0, 16.0, 20.0, 24.0]
6034
6036
  * // [13.0, 17.0, 21.0, 25.0]
6035
- * var a = Matrix4.toArray(m);
6037
+ * var a = Cesium.Matrix4.toArray(m);
6036
6038
  *
6037
6039
  * // m remains the same
6038
6040
  * //creates a = [10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0, 25.0]
@@ -6080,8 +6082,8 @@ define('Core/Matrix4',[
6080
6082
  * @exception {DeveloperError} column is required and must be 0, 1, 2, or 3.
6081
6083
  *
6082
6084
  * @example
6083
- * var myMatrix = new Matrix4();
6084
- * var column1Row0Index = Matrix4.getElementIndex(1, 0);
6085
+ * var myMatrix = new Cesium.Matrix4();
6086
+ * var column1Row0Index = Cesium.Matrix4.getElementIndex(1, 0);
6085
6087
  * var column1Row0 = myMatrix[column1Row0Index]
6086
6088
  * myMatrix[column1Row0Index] = 10.0;
6087
6089
  */
@@ -6118,11 +6120,11 @@ define('Core/Matrix4',[
6118
6120
  * // [22.0, 23.0, 24.0, 25.0]
6119
6121
  *
6120
6122
  * //Example 1: Creates an instance of Cartesian
6121
- * var a = Matrix4.getColumn(m, 2);
6123
+ * var a = Cesium.Matrix4.getColumn(m, 2);
6122
6124
  *
6123
6125
  * //Example 2: Sets values for Cartesian instance
6124
- * var a = new Cartesian4();
6125
- * Matrix4.getColumn(m, 2, a);
6126
+ * var a = new Cesium.Cartesian4();
6127
+ * Cesium.Matrix4.getColumn(m, 2, a);
6126
6128
  *
6127
6129
  * // a.x = 12.0; a.y = 16.0; a.z = 20.0; a.w = 24.0;
6128
6130
  *
@@ -6175,7 +6177,7 @@ define('Core/Matrix4',[
6175
6177
  * // [18.0, 19.0, 20.0, 21.0]
6176
6178
  * // [22.0, 23.0, 24.0, 25.0]
6177
6179
  *
6178
- * var a = Matrix4.setColumn(m, 2, new Cartesian4(99.0, 98.0, 97.0, 96.0));
6180
+ * var a = Cesium.Matrix4.setColumn(m, 2, new Cartesian4(99.0, 98.0, 97.0, 96.0));
6179
6181
  *
6180
6182
  * // m remains the same
6181
6183
  * // a = [10.0, 11.0, 99.0, 13.0]
@@ -6226,11 +6228,11 @@ define('Core/Matrix4',[
6226
6228
  * // [22.0, 23.0, 24.0, 25.0]
6227
6229
  *
6228
6230
  * //Example 1: Returns an instance of Cartesian
6229
- * var a = Matrix4.getRow(m, 2);
6231
+ * var a = Cesium.Matrix4.getRow(m, 2);
6230
6232
  *
6231
6233
  * //Example 1: Sets values for a Cartesian instance
6232
6234
  * var a = new Cartesian4();
6233
- * Matrix4.getRow(m, 2, a);
6235
+ * Cesium.Matrix4.getRow(m, 2, a);
6234
6236
  *
6235
6237
  * // a.x = 18.0; a.y = 19.0; a.z = 20.0; a.w = 21.0;
6236
6238
  */
@@ -6281,7 +6283,7 @@ define('Core/Matrix4',[
6281
6283
  * // [18.0, 19.0, 20.0, 21.0]
6282
6284
  * // [22.0, 23.0, 24.0, 25.0]
6283
6285
  *
6284
- * var a = Matrix4.setRow(m, 2, new Cartesian4(99.0, 98.0, 97.0, 96.0));
6286
+ * var a = Cesium.Matrix4.setRow(m, 2, new Cartesian4(99.0, 98.0, 97.0, 96.0));
6285
6287
  *
6286
6288
  * // m remains the same
6287
6289
  * // a = [10.0, 11.0, 12.0, 13.0]
@@ -6427,9 +6429,9 @@ define('Core/Matrix4',[
6427
6429
  * @exception {DeveloperError} right is required.
6428
6430
  *
6429
6431
  * @example
6430
- * var m1 = new Matrix4(1.0, 6.0, 7.0, 0.0, 2.0, 5.0, 8.0, 0.0, 3.0, 4.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0];
6431
- * var m2 = Transforms.eastNorthUpToFixedFrame(new Cartesian3(1.0, 1.0, 1.0));
6432
- * var m3 = Matrix4.multiplyTransformation(m1, m2);
6432
+ * var m1 = new Cesium.Matrix4(1.0, 6.0, 7.0, 0.0, 2.0, 5.0, 8.0, 0.0, 3.0, 4.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0];
6433
+ * var m2 = Cesium.Transforms.eastNorthUpToFixedFrame(new Cesium.Cartesian3(1.0, 1.0, 1.0));
6434
+ * var m3 = Cesium.Matrix4.multiplyTransformation(m1, m2);
6433
6435
  */
6434
6436
  Matrix4.multiplyTransformation = function(left, right, result) {
6435
6437
  if (!defined(left)) {
@@ -6525,8 +6527,8 @@ define('Core/Matrix4',[
6525
6527
  * @see Matrix4#fromTranslation
6526
6528
  *
6527
6529
  * @example
6528
- * // Instead of Matrix4.multiply(m, Matrix4.fromTranslation(position), m);
6529
- * Matrix4.multiplyByTranslation(m, position, m);
6530
+ * // Instead of Matrix4.multiply(m, Cesium.Matrix4.fromTranslation(position), m);
6531
+ * Cesium.Matrix4.multiplyByTranslation(m, position, m);
6530
6532
  */
6531
6533
  Matrix4.multiplyByTranslation = function(matrix, translation, result) {
6532
6534
  if (!defined(matrix)) {
@@ -6592,8 +6594,8 @@ define('Core/Matrix4',[
6592
6594
  * @see Matrix4#multiplyByScale
6593
6595
  *
6594
6596
  * @example
6595
- * // Instead of Matrix4.multiply(m, Matrix4.fromUniformScale(scale), m);
6596
- * Matrix4.multiplyByUniformScale(m, scale, m);
6597
+ * // Instead of Matrix4.multiply(m, Cesium.Matrix4.fromUniformScale(scale), m);
6598
+ * Cesium.Matrix4.multiplyByUniformScale(m, scale, m);
6597
6599
  */
6598
6600
  Matrix4.multiplyByUniformScale = function(matrix, scale, result) {
6599
6601
  if (typeof scale !== 'number') {
@@ -6626,8 +6628,8 @@ define('Core/Matrix4',[
6626
6628
  * @see Matrix4#multiplyByUniformScale
6627
6629
  *
6628
6630
  * @example
6629
- * // Instead of Matrix4.multiply(m, Matrix4.fromScale(scale), m);
6630
- * Matrix4.multiplyByUniformScale(m, scale, m);
6631
+ * // Instead of Matrix4.multiply(m, Cesium.Matrix4.fromScale(scale), m);
6632
+ * Cesium.Matrix4.multiplyByUniformScale(m, scale, m);
6631
6633
  */
6632
6634
  Matrix4.multiplyByScale = function(matrix, scale, result) {
6633
6635
  if (!defined(matrix)) {
@@ -6727,11 +6729,11 @@ define('Core/Matrix4',[
6727
6729
  * @exception {DeveloperError} matrix is required.
6728
6730
  *
6729
6731
  * @example
6730
- * Cartesian3 p = new Cartesian3(1.0, 2.0, 3.0);
6731
- * Matrix4.multiplyByPointAsVector(matrix, p, result);
6732
+ * var p = new Cesium.Cartesian3(1.0, 2.0, 3.0);
6733
+ * Cesium.Matrix4.multiplyByPointAsVector(matrix, p, result);
6732
6734
  * // A shortcut for
6733
6735
  * // Cartesian3 p = ...
6734
- * // Matrix4.multiplyByVector(matrix, new Cartesian4(p.x, p.y, p.z, 0.0), result);
6736
+ * // Cesium.Matrix4.multiplyByVector(matrix, new Cesium.Cartesian4(p.x, p.y, p.z, 0.0), result);
6735
6737
  */
6736
6738
  Matrix4.multiplyByPointAsVector = function(matrix, cartesian, result) {
6737
6739
  if (!defined(matrix)) {
@@ -6772,8 +6774,8 @@ define('Core/Matrix4',[
6772
6774
  * @exception {DeveloperError} matrix is required.
6773
6775
  *
6774
6776
  * @example
6775
- * Cartesian3 p = new Cartesian3(1.0, 2.0, 3.0);
6776
- * Matrix4.multiplyByPoint(matrix, p, result);
6777
+ * var p = new Cesium.Cartesian3(1.0, 2.0, 3.0);
6778
+ * Cesium.Matrix4.multiplyByPoint(matrix, p, result);
6777
6779
  */
6778
6780
  Matrix4.multiplyByPoint = function(matrix, cartesian, result) {
6779
6781
  if (!defined(matrix)) {
@@ -6820,7 +6822,7 @@ define('Core/Matrix4',[
6820
6822
  * // [18.0, 19.0, 20.0, 21.0]
6821
6823
  * // [22.0, 23.0, 24.0, 25.0]
6822
6824
  *
6823
- * var a = Matrix4.multiplyByScalar(m, -2);
6825
+ * var a = Cesium.Matrix4.multiplyByScalar(m, -2);
6824
6826
  *
6825
6827
  * // m remains the same
6826
6828
  * // a = [-20.0, -22.0, -24.0, -26.0]
@@ -6879,7 +6881,7 @@ define('Core/Matrix4',[
6879
6881
  * // [18.0, 19.0, 20.0, 21.0]
6880
6882
  * // [22.0, 23.0, 24.0, 25.0]
6881
6883
  *
6882
- * var a = Matrix4.negate(m);
6884
+ * var a = Cesium.Matrix4.negate(m);
6883
6885
  *
6884
6886
  * // m remains the same
6885
6887
  * // a = [-10.0, -11.0, -12.0, -13.0]
@@ -6935,7 +6937,7 @@ define('Core/Matrix4',[
6935
6937
  * // [18.0, 19.0, 20.0, 21.0]
6936
6938
  * // [22.0, 23.0, 24.0, 25.0]
6937
6939
  *
6938
- * var a = Matrix4.negate(m);
6940
+ * var a = Cesium.Matrix4.negate(m);
6939
6941
  *
6940
6942
  * // m remains the same
6941
6943
  * // a = [10.0, 14.0, 18.0, 22.0]
@@ -7047,7 +7049,7 @@ define('Core/Matrix4',[
7047
7049
  * // [12.0, 16.0, 20.0, 24.0]
7048
7050
  * // [13.0, 17.0, 21.0, 25.0]
7049
7051
  *
7050
- * if(Matrix4.equals(a,b)) {
7052
+ * if(Cesium.Matrix4.equals(a,b)) {
7051
7053
  * console.log("Both matrices are equal");
7052
7054
  * } else {
7053
7055
  * console.log("They are not equal");
@@ -7104,7 +7106,7 @@ define('Core/Matrix4',[
7104
7106
  * // [12.0, 16.0, 20.0, 24.0]
7105
7107
  * // [13.0, 17.0, 21.0, 25.0]
7106
7108
  *
7107
- * if(Matrix4.equalsEpsilon(a,b,0.1)){
7109
+ * if(Cesium.Matrix4.equalsEpsilon(a,b,0.1)){
7108
7110
  * console.log("Difference between both the matrices is less than 0.1");
7109
7111
  * } else {
7110
7112
  * console.log("Difference between both the matrices is not less than 0.1");
@@ -7185,8 +7187,8 @@ define('Core/Matrix4',[
7185
7187
  * // [12.0, 16.0, 20.0, 24.0]
7186
7188
  * // [13.0, 17.0, 21.0, 25.0]
7187
7189
  *
7188
- * var b = new Matrix3();
7189
- * Matrix4.getRotation(m,b);
7190
+ * var b = new Cesium.Matrix3();
7191
+ * Cesium.Matrix4.getRotation(m,b);
7190
7192
  *
7191
7193
  * // b = [10.0, 14.0, 18.0]
7192
7194
  * // [11.0, 15.0, 19.0]
@@ -7902,11 +7904,11 @@ define('Core/BoundingSphere',[
7902
7904
  * // Compute the bounding sphere from 3 positions, each specified relative to a center.
7903
7905
  * // In addition to the X, Y, and Z coordinates, the points array contains two additional
7904
7906
  * // elements per point which are ignored for the purpose of computing the bounding sphere.
7905
- * var center = new Cartesian3(1.0, 2.0, 3.0);
7907
+ * var center = new Cesium.Cartesian3(1.0, 2.0, 3.0);
7906
7908
  * var points = [1.0, 2.0, 3.0, 0.1, 0.2,
7907
7909
  * 4.0, 5.0, 6.0, 0.1, 0.2,
7908
7910
  * 7.0, 8.0, 9.0, 0.1, 0.2];
7909
- * var sphere = BoundingSphere.fromVertices(points, center, 5);
7911
+ * var sphere = Cesium.BoundingSphere.fromVertices(points, center, 5);
7910
7912
  */
7911
7913
  BoundingSphere.fromVertices = function(positions, center, stride, result) {
7912
7914
  if (!defined(result)) {
@@ -8074,7 +8076,7 @@ define('Core/BoundingSphere',[
8074
8076
  *
8075
8077
  * @example
8076
8078
  * // Create a bounding sphere around the unit cube
8077
- * var sphere = BoundingSphere.fromCornerPoints(new Cartesian3(-0.5, -0.5, -0.5), new Cartesian3(0.5, 0.5, 0.5));
8079
+ * var sphere = Cesium.BoundingSphere.fromCornerPoints(new Cesium.Cartesian3(-0.5, -0.5, -0.5), new Cesium.Cartesian3(0.5, 0.5, 0.5));
8078
8080
  */
8079
8081
  BoundingSphere.fromCornerPoints = function(corner, oppositeCorner, result) {
8080
8082
  if (!defined(corner) || !defined(oppositeCorner)) {
@@ -8105,7 +8107,7 @@ define('Core/BoundingSphere',[
8105
8107
  * @exception {DeveloperError} ellipsoid is required.
8106
8108
  *
8107
8109
  * @example
8108
- * var boundingSphere = BoundingSphere.fromEllipsoid(ellipsoid);
8110
+ * var boundingSphere = Cesium.BoundingSphere.fromEllipsoid(ellipsoid);
8109
8111
  */
8110
8112
  BoundingSphere.fromEllipsoid = function(ellipsoid, result) {
8111
8113
  if (!defined(ellipsoid)) {
@@ -8305,9 +8307,9 @@ define('Core/BoundingSphere',[
8305
8307
  * @exception {DeveloperError} transform is required.
8306
8308
  *
8307
8309
  * @example
8308
- * var modelMatrix = Transforms.eastNorthUpToFixedFrame(positionOnEllipsoid);
8309
- * var boundingSphere = new BoundingSphere();
8310
- * var newBoundingSphere = BoundingSphere.transformWithoutScale(boundingSphere, modelMatrix);
8310
+ * var modelMatrix = Cesium.Transforms.eastNorthUpToFixedFrame(positionOnEllipsoid);
8311
+ * var boundingSphere = new Cesium.BoundingSphere();
8312
+ * var newBoundingSphere = Cesium.BoundingSphere.transformWithoutScale(boundingSphere, modelMatrix);
8311
8313
  */
8312
8314
  BoundingSphere.transformWithoutScale = function(sphere, transform, result) {
8313
8315
  if (!defined(sphere)) {
@@ -8738,10 +8740,10 @@ define('Core/Fullscreen',['./defined'], function(defined) {
8738
8740
  *
8739
8741
  * @example
8740
8742
  * // Put the entire page into fullscreen.
8741
- * Fullscreen.requestFullscreen(document.body)
8743
+ * Cesium.Fullscreen.requestFullscreen(document.body)
8742
8744
  *
8743
8745
  * // Place only the Cesium canvas into fullscreen.
8744
- * Fullscreen.requestFullscreen(scene.getCanvas())
8746
+ * Cesium.Fullscreen.requestFullscreen(scene.getCanvas())
8745
8747
  */
8746
8748
  Fullscreen.requestFullscreen = function(element) {
8747
8749
  if (!Fullscreen.supportsFullscreen()) {
@@ -9127,8 +9129,8 @@ define('Core/ComponentDatatype',[
9127
9129
  * @returns {Boolean} <code>true</code> if the provided component datatype is a valid enumeration value; otherwise, <code>false</code>.
9128
9130
  *
9129
9131
  * @example
9130
- * if (!ComponentDatatype.validate(componentDatatype)) {
9131
- * throw new DeveloperError('componentDatatype must be a valid enumeration value.');
9132
+ * if (!Cesium.ComponentDatatype.validate(componentDatatype)) {
9133
+ * throw new Cesium.DeveloperError('componentDatatype must be a valid enumeration value.');
9132
9134
  * }
9133
9135
  */
9134
9136
  ComponentDatatype.validate = function(componentDatatype) {
@@ -9156,17 +9158,16 @@ define('Core/ComponentDatatype',[
9156
9158
  *
9157
9159
  * @example
9158
9160
  * // creates a Float32Array with length of 100
9159
- * var typedArray = ComponentDatatype.createTypedArray(ComponentDatatype.FLOAT, 100);
9161
+ * var typedArray = Cesium.ComponentDatatype.createTypedArray(Cesium.ComponentDatatype.FLOAT, 100);
9160
9162
  */
9161
9163
  ComponentDatatype.createTypedArray = function(componentDatatype, valuesOrLength) {
9162
- if (!defined(componentDatatype)) {
9164
+ if (!defined(componentDatatype)) {
9163
9165
  throw new DeveloperError('componentDatatype is required.');
9164
9166
  }
9165
-
9166
9167
  if (!defined(valuesOrLength)) {
9167
9168
  throw new DeveloperError('valuesOrLength is required.');
9168
9169
  }
9169
-
9170
+
9170
9171
  switch (componentDatatype.value) {
9171
9172
  case ComponentDatatype.BYTE.value:
9172
9173
  return new Int8Array(valuesOrLength);
@@ -9201,14 +9202,13 @@ define('Core/ComponentDatatype',[
9201
9202
  * @exception {DeveloperError} componentDatatype is not a valid enumeration value.
9202
9203
  */
9203
9204
  ComponentDatatype.createArrayBufferView = function(componentDatatype, buffer, byteOffset, length) {
9204
- if (!defined(componentDatatype)) {
9205
+ if (!defined(componentDatatype)) {
9205
9206
  throw new DeveloperError('componentDatatype is required.');
9206
9207
  }
9207
-
9208
9208
  if (!defined(buffer)) {
9209
9209
  throw new DeveloperError('buffer is required.');
9210
9210
  }
9211
-
9211
+
9212
9212
  byteOffset = defaultValue(byteOffset, 0);
9213
9213
  length = defaultValue(length, (buffer.byteLength - byteOffset) / componentDatatype.sizeInBytes);
9214
9214
 
@@ -9680,10 +9680,10 @@ define('Core/binarySearch',[
9680
9680
  * return a - b;
9681
9681
  * };
9682
9682
  * var numbers = [0, 2, 4, 6, 8];
9683
- * var index = binarySearch(numbers, 6, comparator); // 3
9683
+ * var index = Cesium.binarySearch(numbers, 6, comparator); // 3
9684
9684
  */
9685
9685
  var binarySearch = function(array, itemToFind, comparator) {
9686
- if (!defined(array)) {
9686
+ if (!defined(array)) {
9687
9687
  throw new DeveloperError('array is required.');
9688
9688
  }
9689
9689
  if (!defined(itemToFind)) {
@@ -9692,7 +9692,7 @@ define('Core/binarySearch',[
9692
9692
  if (!defined(comparator)) {
9693
9693
  throw new DeveloperError('comparator is required.');
9694
9694
  }
9695
-
9695
+
9696
9696
  var low = 0;
9697
9697
  var high = array.length - 1;
9698
9698
  var i;
@@ -9840,7 +9840,7 @@ define('Core/LeapSecond',[
9840
9840
  * @example
9841
9841
  * // Example 1. Construct a LeapSecond using a JulianDate
9842
9842
  * var date = new Date('January 1, 1990 00:00:00 UTC');
9843
- * var leapSecond = new LeapSecond(JulianDate.fromDate(date), 25.0);
9843
+ * var leapSecond = new Cesium.LeapSecond(Cesium.JulianDate.fromDate(date), 25.0);
9844
9844
  * var offset = leapSecond.offset; // 25.0
9845
9845
  *
9846
9846
  * //////////////////////////////////////////////////////////////////
@@ -9850,14 +9850,13 @@ define('Core/LeapSecond',[
9850
9850
  * var leapSecond = new LeapSecond(date, 25.0);
9851
9851
  */
9852
9852
  var LeapSecond = function(date, offset) {
9853
- if (!defined(date)) {
9853
+ if (!defined(date)) {
9854
9854
  throw new DeveloperError('date is required.');
9855
9855
  }
9856
-
9857
9856
  if (offset === null || isNaN(offset)) {
9858
9857
  throw new DeveloperError('offset is required and must be a number.');
9859
9858
  }
9860
-
9859
+
9861
9860
  /**
9862
9861
  * The Julian date at which this leap second occurs.
9863
9862
  *
@@ -9885,16 +9884,17 @@ define('Core/LeapSecond',[
9885
9884
  * @see LeapSecond.setLeapSeconds
9886
9885
  *
9887
9886
  * @example
9888
- * LeapSecond.setLeapSeconds([
9889
- * new LeapSecond(new JulianDate(2453736, 43233.0, TimeStandard.TAI), 33), // January 1, 2006 00:00:00 UTC
9890
- * new LeapSecond(new JulianDate(2454832, 43234.0, TimeStandard.TAI), 34), // January 1, 2009 00:00:00 UTC
9891
- * new LeapSecond(new JulianDate(2456109, 43235.0, TimeStandard.TAI), 35) // July 1, 2012 00:00:00 UTC
9887
+ * Cesium.LeapSecond.setLeapSeconds([
9888
+ * new Cesium.LeapSecond(new Cesium.JulianDate(2453736, 43233.0, Cesium.TimeStandard.TAI), 33), // January 1, 2006 00:00:00 UTC
9889
+ * new Cesium.LeapSecond(new Cesium.JulianDate(2454832, 43234.0, Cesium.TimeStandard.TAI), 34), // January 1, 2009 00:00:00 UTC
9890
+ * new Cesium.LeapSecond(new Cesium.JulianDate(2456109, 43235.0, Cesium.TimeStandard.TAI), 35) // July 1, 2012 00:00:00 UTC
9892
9891
  * ]);
9893
9892
  */
9894
9893
  LeapSecond.setLeapSeconds = function(leapSeconds) {
9895
- if (!Array.isArray(leapSeconds)) {
9894
+ if (!Array.isArray(leapSeconds)) {
9896
9895
  throw new DeveloperError("leapSeconds is required and must be an array.");
9897
9896
  }
9897
+
9898
9898
  LeapSecond._leapSeconds = leapSeconds;
9899
9899
  LeapSecond._leapSeconds.sort(LeapSecond.compareLeapSecondDate);
9900
9900
  };
@@ -9924,8 +9924,8 @@ define('Core/LeapSecond',[
9924
9924
  *
9925
9925
  * @example
9926
9926
  * var date = new Date('January 1, 1990 00:00:00 UTC');
9927
- * var leapSecond1 = new LeapSecond(JulianDate.fromDate(date), 25.0);
9928
- * var leapSecond2 = new LeapSecond(JulianDate.fromDate(date), 25.0);
9927
+ * var leapSecond1 = new Cesium.LeapSecond(Cesium.JulianDate.fromDate(date), 25.0);
9928
+ * var leapSecond2 = new Cesium.LeapSecond(Cesium.JulianDate.fromDate(date), 25.0);
9929
9929
  * leapSecond1.equals(leapSecond2); // true
9930
9930
  */
9931
9931
  LeapSecond.prototype.equals = function(other) {
@@ -9950,9 +9950,9 @@ define('Core/LeapSecond',[
9950
9950
  *
9951
9951
  * @example
9952
9952
  * var date = new Date('January 1, 2006 00:00:00 UTC');
9953
- * var leapSecond1 = new LeapSecond(JulianDate.fromDate(date), 33.0);
9954
- * var leapSecond2 = new LeapSecond(JulianDate.fromDate(date), 34.0);
9955
- * LeapSecond.compareLeapSecondDate(leapSecond1, leapSecond2); // returns 0
9953
+ * var leapSecond1 = new Cesium.LeapSecond(Cesium.JulianDate.fromDate(date), 33.0);
9954
+ * var leapSecond2 = new Cesium.LeapSecond(Cesium.JulianDate.fromDate(date), 34.0);
9955
+ * Cesium.LeapSecond.compareLeapSecondDate(leapSecond1, leapSecond2); // returns 0
9956
9956
  */
9957
9957
  LeapSecond.compareLeapSecondDate = function(leapSecond1, leapSecond2) {
9958
9958
  return leapSecond1.julianDate.compareTo(leapSecond2.julianDate);
@@ -10012,12 +10012,13 @@ define('Core/isLeapYear',[
10012
10012
  * @exception {DeveloperError} year is required and must be a number.
10013
10013
  *
10014
10014
  * @example
10015
- * var leapYear = isLeapYear(2000); // true
10015
+ * var leapYear = Cesium.isLeapYear(2000); // true
10016
10016
  */
10017
10017
  function isLeapYear(year) {
10018
- if (year === null || isNaN(year)) {
10018
+ if (year === null || isNaN(year)) {
10019
10019
  throw new DeveloperError('year is required and must be a number.');
10020
10020
  }
10021
+
10021
10022
  return ((year % 4 === 0) && (year % 100 !== 0)) || (year % 400 === 0);
10022
10023
  }
10023
10024
 
@@ -10348,6 +10349,7 @@ define('Core/JulianDate',[
10348
10349
  './DeveloperError',
10349
10350
  './binarySearch',
10350
10351
  './defined',
10352
+ './defaultValue',
10351
10353
  './TimeConstants',
10352
10354
  './LeapSecond',
10353
10355
  './TimeStandard',
@@ -10357,6 +10359,7 @@ define('Core/JulianDate',[
10357
10359
  DeveloperError,
10358
10360
  binarySearch,
10359
10361
  defined,
10362
+ defaultValue,
10360
10363
  TimeConstants,
10361
10364
  LeapSecond,
10362
10365
  TimeStandard,
@@ -10587,12 +10590,12 @@ define('Core/JulianDate',[
10587
10590
  *
10588
10591
  * @example
10589
10592
  * // Example 1. Construct a JulianDate representing the current system time.
10590
- * var julianDate = new JulianDate();
10593
+ * var julianDate = new Cesium.JulianDate();
10591
10594
  *
10592
10595
  * // Example 2. Construct a JulianDate from a Julian day number and seconds of the day.
10593
10596
  * var julianDayNumber = 2448257; // January 1, 1991
10594
10597
  * var secondsOfDay = 21600; // 06:00:00
10595
- * var julianDate = new JulianDate(julianDayNumber, secondsOfDay, TimeStandard.UTC);
10598
+ * var julianDate = new Cesium.JulianDate(julianDayNumber, secondsOfDay, Cesium.TimeStandard.UTC);
10596
10599
  */
10597
10600
  var JulianDate = function(julianDayNumber, julianSecondsOfDay, timeStandard) {
10598
10601
  this._julianDayNumber = undefined;
@@ -10602,20 +10605,18 @@ define('Core/JulianDate',[
10602
10605
  var secondsOfDay;
10603
10606
  //If any of the properties are defined, then we are constructing from components.
10604
10607
  if (defined(julianDayNumber) || defined(julianSecondsOfDay) || defined(timeStandard)) {
10605
- if (!defined(timeStandard)) {
10606
- timeStandard = TimeStandard.UTC;
10607
- } else if (timeStandard !== TimeStandard.UTC && timeStandard !== TimeStandard.TAI) {
10608
+ timeStandard = defaultValue(timeStandard, TimeStandard.UTC);
10609
+
10610
+ if (timeStandard !== TimeStandard.UTC && timeStandard !== TimeStandard.TAI) {
10608
10611
  throw new DeveloperError('timeStandard is not a known TimeStandard.');
10609
10612
  }
10610
-
10611
10613
  if (julianDayNumber === null || isNaN(julianDayNumber)) {
10612
10614
  throw new DeveloperError('julianDayNumber is required.');
10613
10615
  }
10614
-
10615
10616
  if (julianSecondsOfDay === null || isNaN(julianSecondsOfDay)) {
10616
10617
  throw new DeveloperError('julianSecondsOfDay is required.');
10617
10618
  }
10618
-
10619
+
10619
10620
  //coerce to integer
10620
10621
  wholeDays = julianDayNumber | 0;
10621
10622
  //If julianDayNumber was fractional, add the number of seconds the fraction represented
@@ -10681,13 +10682,13 @@ define('Core/JulianDate',[
10681
10682
  * @example
10682
10683
  * // Construct a JulianDate specifying the UTC time standard
10683
10684
  * var date = new Date('January 1, 2011 12:00:00 EST');
10684
- * var julianDate = JulianDate.fromDate(date, TimeStandard.UTC);
10685
+ * var julianDate = Cesium.JulianDate.fromDate(date, Cesium.TimeStandard.UTC);
10685
10686
  */
10686
10687
  JulianDate.fromDate = function(date, timeStandard) {
10687
- if (!(date instanceof Date) || isNaN(date.getTime())) {
10688
+ if (!(date instanceof Date) || isNaN(date.getTime())) {
10688
10689
  throw new DeveloperError('date must be a valid JavaScript Date.');
10689
10690
  }
10690
-
10691
+
10691
10692
  var components = computeJulianDateComponentsFromDate(date);
10692
10693
  return new JulianDate(components[0], components[1], timeStandard);
10693
10694
  };
@@ -10713,17 +10714,17 @@ define('Core/JulianDate',[
10713
10714
  *
10714
10715
  * @example
10715
10716
  * // Example 1. Construct a JulianDate in UTC at April 24th, 2012 6:08PM UTC
10716
- * var julianDate = JulianDate.fromIso8601('2012-04-24T18:08Z');
10717
+ * var julianDate = Cesium.JulianDate.fromIso8601('2012-04-24T18:08Z');
10717
10718
  * // Example 2. Construct a JulianDate in local time April 24th, 2012 12:00 AM
10718
- * var localDay = JulianDate.fromIso8601('2012-04-24');
10719
+ * var localDay = Cesium.JulianDate.fromIso8601('2012-04-24');
10719
10720
  * // Example 3. Construct a JulianDate 5 hours behind UTC April 24th, 2012 5:00 pm UTC
10720
- * var localDay = JulianDate.fromIso8601('2012-04-24T12:00-05:00');
10721
+ * var localDay = Cesium.JulianDate.fromIso8601('2012-04-24T12:00-05:00');
10721
10722
  */
10722
10723
  JulianDate.fromIso8601 = function(iso8601String) {
10723
- if (typeof iso8601String !== 'string') {
10724
+ if (typeof iso8601String !== 'string') {
10724
10725
  throw new DeveloperError(iso8601ErrorMessage);
10725
10726
  }
10726
-
10727
+
10727
10728
  //Comma and decimal point both indicate a fractional number according to ISO 8601,
10728
10729
  //start out by blanket replacing , with . which is the only valid such symbol in JS.
10729
10730
  iso8601String = iso8601String.replace(',', '.');
@@ -10978,12 +10979,13 @@ define('Core/JulianDate',[
10978
10979
  *
10979
10980
  * @example
10980
10981
  * // Construct a date which corresponds to January 1, 1991 06:00:00 UTC.
10981
- * var julianDate = JulianDate.fromTotalDays(2448257.75, TimeStandard.UTC);
10982
+ * var julianDate = Cesium.JulianDate.fromTotalDays(2448257.75, Cesium.TimeStandard.UTC);
10982
10983
  */
10983
10984
  JulianDate.fromTotalDays = function(totalDays, timeStandard) {
10984
- if (totalDays === null || isNaN(totalDays)) {
10985
+ if (totalDays === null || isNaN(totalDays)) {
10985
10986
  throw new DeveloperError('totalDays is required.');
10986
10987
  }
10988
+
10987
10989
  return new JulianDate(totalDays, 0, timeStandard);
10988
10990
  };
10989
10991
 
@@ -11042,9 +11044,10 @@ define('Core/JulianDate',[
11042
11044
  * @see JulianDate#equals
11043
11045
  */
11044
11046
  JulianDate.equalsEpsilon = function(left, right, epsilon) {
11045
- if (epsilon === null || isNaN(epsilon)) {
11047
+ if (epsilon === null || isNaN(epsilon)) {
11046
11048
  throw new DeveloperError('epsilon is required and must be a number.');
11047
11049
  }
11050
+
11048
11051
  return Math.abs(left.getSecondsDifference(right)) <= epsilon;
11049
11052
  };
11050
11053
 
@@ -11232,8 +11235,8 @@ define('Core/JulianDate',[
11232
11235
  * @see JulianDate#getDaysDifference
11233
11236
  *
11234
11237
  * @example
11235
- * var start = JulianDate.fromDate(new Date('July 4, 2011 12:00:00'));
11236
- * var end = JulianDate.fromDate(new Date('July 5, 2011 12:01:00'));
11238
+ * var start = Cesium.JulianDate.fromDate(new Date('July 4, 2011 12:00:00'));
11239
+ * var end = Cesium.JulianDate.fromDate(new Date('July 5, 2011 12:01:00'));
11237
11240
  * var difference = start.getSecondsDifference(end); // 86460.0 seconds
11238
11241
  */
11239
11242
  JulianDate.prototype.getSecondsDifference = function(other) {
@@ -11257,8 +11260,8 @@ define('Core/JulianDate',[
11257
11260
  * @see JulianDate#getDaysDifference
11258
11261
  *
11259
11262
  * @example
11260
- * var start = JulianDate.fromDate(new Date('July 4, 2011 12:00:00'));
11261
- * var end = JulianDate.fromDate(new Date('July 5, 2011 12:01:00'));
11263
+ * var start = Cesium.JulianDate.fromDate(new Date('July 4, 2011 12:00:00'));
11264
+ * var end = Cesium.JulianDate.fromDate(new Date('July 5, 2011 12:01:00'));
11262
11265
  * var difference = start.getMinutesDifference(end); // 1441.0 minutes
11263
11266
  */
11264
11267
  JulianDate.prototype.getMinutesDifference = function(other) {
@@ -11279,8 +11282,8 @@ define('Core/JulianDate',[
11279
11282
  * @see JulianDate#getMinutesDifference
11280
11283
  *
11281
11284
  * @example
11282
- * var start = JulianDate.fromDate(new Date('July 4, 2011 12:00:00'));
11283
- * var end = JulianDate.fromDate(new Date('July 5, 2011 14:24:00'));
11285
+ * var start = Cesium.JulianDate.fromDate(new Date('July 4, 2011 12:00:00'));
11286
+ * var end = Cesium.JulianDate.fromDate(new Date('July 5, 2011 14:24:00'));
11284
11287
  * var difference = start.getDaysDifference(end); // 1.1 days
11285
11288
  */
11286
11289
  JulianDate.prototype.getDaysDifference = function(other) {
@@ -11303,7 +11306,7 @@ define('Core/JulianDate',[
11303
11306
  *
11304
11307
  * @example
11305
11308
  * var date = new Date('August 1, 2012 12:00:00 UTC');
11306
- * var julianDate = JulianDate.fromDate(date);
11309
+ * var julianDate = Cesium.JulianDate.fromDate(date);
11307
11310
  * var difference = julianDate.getTaiMinusUtc(); //35
11308
11311
  */
11309
11312
  JulianDate.prototype.getTaiMinusUtc = function() {
@@ -11341,13 +11344,14 @@ define('Core/JulianDate',[
11341
11344
  * var date = new Date();
11342
11345
  * date.setUTCFullYear(2011, 6, 4); // July 4, 2011 @ 12:00:00 UTC
11343
11346
  * date.setUTCHours(12, 0, 00, 0);
11344
- * var start = JulianDate.fromDate(date);
11347
+ * var start = Cesium.JulianDate.fromDate(date);
11345
11348
  * var end = start.addSeconds(95); // July 4, 2011 @ 12:01:35 UTC
11346
11349
  */
11347
11350
  JulianDate.prototype.addSeconds = function(seconds, result) {
11348
- if (seconds === null || isNaN(seconds)) {
11351
+ if (seconds === null || isNaN(seconds)) {
11349
11352
  throw new DeveloperError('seconds is required and must be a number.');
11350
11353
  }
11354
+
11351
11355
  return setComponents(this._julianDayNumber, this._secondsOfDay + seconds, result);
11352
11356
  };
11353
11357
 
@@ -11371,13 +11375,14 @@ define('Core/JulianDate',[
11371
11375
  * var date = new Date();
11372
11376
  * date.setUTCFullYear(2011, 6, 4); // July 4, 2011 @ 12:00 UTC
11373
11377
  * date.setUTCHours(12, 0, 0, 0);
11374
- * var start = JulianDate.fromDate(date);
11378
+ * var start = Cesium.JulianDate.fromDate(date);
11375
11379
  * var end = start.addMinutes(65); // July 4, 2011 @ 13:05 UTC
11376
11380
  */
11377
11381
  JulianDate.prototype.addMinutes = function(duration) {
11378
- if (duration === null || isNaN(duration)) {
11382
+ if (duration === null || isNaN(duration)) {
11379
11383
  throw new DeveloperError('duration is required and must be a number.');
11380
11384
  }
11385
+
11381
11386
  var newSecondsOfDay = this._secondsOfDay + (duration * TimeConstants.SECONDS_PER_MINUTE);
11382
11387
  return new JulianDate(this._julianDayNumber, newSecondsOfDay, TimeStandard.TAI);
11383
11388
  };
@@ -11402,13 +11407,14 @@ define('Core/JulianDate',[
11402
11407
  * var date = new Date();
11403
11408
  * date.setUTCFullYear(2011, 6, 4); // July 4, 2011 @ 12:00 UTC
11404
11409
  * date.setUTCHours(12, 0, 0, 0);
11405
- * var start = JulianDate.fromDate(date);
11410
+ * var start = Cesium.JulianDate.fromDate(date);
11406
11411
  * var end = start.addHours(6); // July 4, 2011 @ 18:00 UTC
11407
11412
  */
11408
11413
  JulianDate.prototype.addHours = function(duration) {
11409
- if (duration === null || isNaN(duration)) {
11414
+ if (duration === null || isNaN(duration)) {
11410
11415
  throw new DeveloperError('duration is required and must be a number.');
11411
11416
  }
11417
+
11412
11418
  var newSecondsOfDay = this._secondsOfDay + (duration * TimeConstants.SECONDS_PER_HOUR);
11413
11419
  return new JulianDate(this._julianDayNumber, newSecondsOfDay, TimeStandard.TAI);
11414
11420
  };
@@ -11433,13 +11439,14 @@ define('Core/JulianDate',[
11433
11439
  * var date = new Date();
11434
11440
  * date.setUTCFullYear(2011, 6, 4); // July 4, 2011 @ 12:00 UTC
11435
11441
  * date.setUTCHours(12, 0, 0, 0);
11436
- * var start = JulianDate.fromDate(date);
11442
+ * var start = Cesium.JulianDate.fromDate(date);
11437
11443
  * var end = start.addDays(5); // July 9, 2011 @ 12:00 UTC
11438
11444
  */
11439
11445
  JulianDate.prototype.addDays = function(duration) {
11440
- if (duration === null || isNaN(duration)) {
11446
+ if (duration === null || isNaN(duration)) {
11441
11447
  throw new DeveloperError('duration is required and must be a number.');
11442
11448
  }
11449
+
11443
11450
  var newJulianDayNumber = this._julianDayNumber + duration;
11444
11451
  return new JulianDate(newJulianDayNumber, this._secondsOfDay, TimeStandard.TAI);
11445
11452
  };
@@ -11458,8 +11465,8 @@ define('Core/JulianDate',[
11458
11465
  * @see JulianDate#greaterThanOrEquals
11459
11466
  *
11460
11467
  * @example
11461
- * var start = JulianDate.fromDate(new Date('July 6, 1991 12:00:00'));
11462
- * var end = JulianDate.fromDate(new Date('July 6, 2011 12:01:00'));
11468
+ * var start = Cesium.JulianDate.fromDate(new Date('July 6, 1991 12:00:00'));
11469
+ * var end = Cesium.JulianDate.fromDate(new Date('July 6, 2011 12:01:00'));
11463
11470
  * start.lessThan(end); // true
11464
11471
  */
11465
11472
  JulianDate.prototype.lessThan = function(other) {
@@ -11480,8 +11487,8 @@ define('Core/JulianDate',[
11480
11487
  * @see JulianDate#greaterThanOrEquals
11481
11488
  *
11482
11489
  * @example
11483
- * var start = JulianDate.fromDate(new Date('July 6, 1991 12:00:00'));
11484
- * var end = JulianDate.fromDate(new Date('July 6, 2011 12:00:00'));
11490
+ * var start = Cesium.JulianDate.fromDate(new Date('July 6, 1991 12:00:00'));
11491
+ * var end = Cesium.JulianDate.fromDate(new Date('July 6, 2011 12:00:00'));
11485
11492
  * start.lessThanOrEquals(end); // true
11486
11493
  */
11487
11494
  JulianDate.prototype.lessThanOrEquals = function(other) {
@@ -11502,8 +11509,8 @@ define('Core/JulianDate',[
11502
11509
  * @see JulianDate#greaterThanOrEquals
11503
11510
  *
11504
11511
  * @example
11505
- * var start = JulianDate.fromDate(new Date('July 6, 1991 12:00:00'));
11506
- * var end = JulianDate.fromDate(new Date('July 6, 2011 12:01:00'));
11512
+ * var start = Cesium.JulianDate.fromDate(new Date('July 6, 1991 12:00:00'));
11513
+ * var end = Cesium.JulianDate.fromDate(new Date('July 6, 2011 12:01:00'));
11507
11514
  * end.greaterThan(start); // true
11508
11515
  */
11509
11516
  JulianDate.prototype.greaterThan = function(other) {
@@ -11524,8 +11531,8 @@ define('Core/JulianDate',[
11524
11531
  * @see JulianDate#greaterThan
11525
11532
  *
11526
11533
  * @example
11527
- * var start = JulianDate.fromDate(new Date('July 6, 1991 12:00:00'));
11528
- * var end = JulianDate.fromDate(new Date('July 6, 2011 12:00:00'));
11534
+ * var start = Cesium.JulianDate.fromDate(new Date('July 6, 1991 12:00:00'));
11535
+ * var end = Cesium.JulianDate.fromDate(new Date('July 6, 2011 12:00:00'));
11529
11536
  * end.greaterThanOrEquals(start); // true
11530
11537
  */
11531
11538
  JulianDate.prototype.greaterThanOrEquals = function(other) {
@@ -11559,8 +11566,8 @@ define('Core/JulianDate',[
11559
11566
  * @see JulianDate#equalsEpsilon
11560
11567
  *
11561
11568
  * @example
11562
- * var original = JulianDate.fromDate(new Date('July 4, 2011 12:00:00'));
11563
- * var clone = JulianDate.fromDate(new Date('July 4, 2011 12:00:00'));
11569
+ * var original = Cesium.JulianDate.fromDate(new Date('July 4, 2011 12:00:00'));
11570
+ * var clone = Cesium.JulianDate.fromDate(new Date('July 4, 2011 12:00:00'));
11564
11571
  * original.equals(clone); // true
11565
11572
  */
11566
11573
  JulianDate.prototype.equals = function(other) {
@@ -11585,8 +11592,8 @@ define('Core/JulianDate',[
11585
11592
  * @see JulianDate#equals
11586
11593
  *
11587
11594
  * @example
11588
- * var original = JulianDate.fromDate(new Date('July 4, 2011 12:00:00'));
11589
- * var clone = JulianDate.fromDate(new Date('July 4, 2011 12:00:01'));
11595
+ * var original = Cesium.JulianDate.fromDate(new Date('July 4, 2011 12:00:00'));
11596
+ * var clone = Cesium.JulianDate.fromDate(new Date('July 4, 2011 12:00:01'));
11590
11597
  * original.equalsEpsilon(clone, 2); // true
11591
11598
  */
11592
11599
  JulianDate.prototype.equalsEpsilon = function(other, epsilon) {
@@ -12507,7 +12514,7 @@ define('Core/loadWithXhr',[
12507
12514
  *
12508
12515
  * @example
12509
12516
  * // Load a single URL asynchronously. In real code, you should use loadBlob instead.
12510
- * loadWithXhr({
12517
+ * Cesium.loadWithXhr({
12511
12518
  * url : 'some/url',
12512
12519
  * responseType : 'blob'
12513
12520
  * }).then(function(blob) {
@@ -12518,10 +12525,11 @@ define('Core/loadWithXhr',[
12518
12525
  */
12519
12526
  var loadWithXhr = function(options) {
12520
12527
  options = defaultValue(options, defaultValue.EMPTY_OBJECT);
12521
- if (!defined(options.url)) {
12528
+
12529
+ if (!defined(options.url)) {
12522
12530
  throw new DeveloperError('options.url is required.');
12523
12531
  }
12524
-
12532
+
12525
12533
  var responseType = options.responseType;
12526
12534
  var method = defaultValue(options.method, 'GET');
12527
12535
  var data = options.data;
@@ -12595,7 +12603,7 @@ define('Core/loadText',[
12595
12603
  *
12596
12604
  * @example
12597
12605
  * // load text from a URL, setting a custom header
12598
- * loadText('http://someUrl.com/someJson.txt', {
12606
+ * Cesium.loadText('http://someUrl.com/someJson.txt', {
12599
12607
  * 'X-Custom-Header' : 'some value'
12600
12608
  * }).then(function(text) {
12601
12609
  * //Do something with the text
@@ -12653,7 +12661,7 @@ define('Core/loadJson',[
12653
12661
  * @exception {DeveloperError} url is required.
12654
12662
  *
12655
12663
  * @example
12656
- * loadJson('http://someUrl.com/someJson.txt').then(function(jsonData) {
12664
+ * Cesium.loadJson('http://someUrl.com/someJson.txt').then(function(jsonData) {
12657
12665
  * //Do something with the JSON object
12658
12666
  * }, function() {
12659
12667
  * // an error occurred
@@ -12664,10 +12672,10 @@ define('Core/loadJson',[
12664
12672
  * @see <a href='http://wiki.commonjs.org/wiki/Promises/A'>CommonJS Promises/A</a>
12665
12673
  */
12666
12674
  var loadJson = function loadJson(url, headers) {
12667
- if (!defined(url)) {
12675
+ if (!defined(url)) {
12668
12676
  throw new DeveloperError('url is required.');
12669
12677
  }
12670
-
12678
+
12671
12679
  if (!defined(headers)) {
12672
12680
  headers = defaultHeaders;
12673
12681
  } else if (!defined(headers.Accept)) {
@@ -13131,11 +13139,11 @@ define('Core/Cartesian2',[
13131
13139
  * @example
13132
13140
  * // Create a Cartesian2 with (1.0, 2.0)
13133
13141
  * var v = [1.0, 2.0];
13134
- * var p = Cartesian2.fromArray(v);
13142
+ * var p = Cesium.Cartesian2.fromArray(v);
13135
13143
  *
13136
13144
  * // Create a Cartesian2 with (1.0, 2.0) using an offset into an array
13137
13145
  * var v2 = [0.0, 0.0, 1.0, 2.0];
13138
- * var p2 = Cartesian2.fromArray(v2, 2);
13146
+ * var p2 = Cesium.Cartesian2.fromArray(v2, 2);
13139
13147
  */
13140
13148
  Cartesian2.fromArray = Cartesian2.unpack;
13141
13149
 
@@ -13277,7 +13285,7 @@ define('Core/Cartesian2',[
13277
13285
  *
13278
13286
  * @example
13279
13287
  * // Returns 1.0
13280
- * var d = Cartesian2.distance(new Cartesian2(1.0, 0.0), new Cartesian2(2.0, 0.0));
13288
+ * var d = Cesium.Cartesian2.distance(new Cesium.Cartesian2(1.0, 0.0), new Cesium.Cartesian2(2.0, 0.0));
13281
13289
  */
13282
13290
  Cartesian2.distance = function(left, right) {
13283
13291
  if (!defined(left) || !defined(right)) {
@@ -13832,8 +13840,8 @@ define('Core/EarthOrientationParameters',[
13832
13840
  *
13833
13841
  * @example
13834
13842
  * // Loading the EOP data
13835
- * var eop = new EarthOrientationParameters({ url : 'Data/EOP.json' });
13836
- * Transforms.earthOrientationParameters = eop;
13843
+ * var eop = new Cesium.EarthOrientationParameters({ url : 'Data/EOP.json' });
13844
+ * Cesium.Transforms.earthOrientationParameters = eop;
13837
13845
  */
13838
13846
  var EarthOrientationParameters = function EarthOrientationParameters(description) {
13839
13847
  description = defaultValue(description, defaultValue.EMPTY_OBJECT);
@@ -14221,9 +14229,9 @@ define('Core/Transforms',[
14221
14229
  *
14222
14230
  * @example
14223
14231
  * // Get the transform from local east-north-up at cartographic (0.0, 0.0) to Earth's fixed frame.
14224
- * var ellipsoid = Ellipsoid.WGS84;
14225
- * var center = ellipsoid.cartographicToCartesian(Cartographic.ZERO);
14226
- * var transform = Transforms.eastNorthUpToFixedFrame(center);
14232
+ * var ellipsoid = Cesium.Ellipsoid.WGS84;
14233
+ * var center = ellipsoid.cartographicToCartesian(Cesium.Cartographic.ZERO);
14234
+ * var transform = Cesium.Transforms.eastNorthUpToFixedFrame(center);
14227
14235
  */
14228
14236
  Transforms.eastNorthUpToFixedFrame = function(origin, ellipsoid, result) {
14229
14237
  if (!defined(origin)) {
@@ -14325,9 +14333,9 @@ define('Core/Transforms',[
14325
14333
  *
14326
14334
  * @example
14327
14335
  * // Get the transform from local north-east-down at cartographic (0.0, 0.0) to Earth's fixed frame.
14328
- * var ellipsoid = Ellipsoid.WGS84;
14329
- * var center = ellipsoid.cartographicToCartesian(Cartographic.ZERO);
14330
- * var transform = Transforms.northEastDownToFixedFrame(center);
14336
+ * var ellipsoid = Cesium.Ellipsoid.WGS84;
14337
+ * var center = ellipsoid.cartographicToCartesian(Cesium.Cartographic.ZERO);
14338
+ * var transform = Cesium.Transforms.northEastDownToFixedFrame(center);
14331
14339
  */
14332
14340
  Transforms.northEastDownToFixedFrame = function(origin, ellipsoid, result) {
14333
14341
  if (!defined(origin)) {
@@ -14427,11 +14435,11 @@ define('Core/Transforms',[
14427
14435
  * @example
14428
14436
  * //Set the view to in the inertial frame.
14429
14437
  * function updateAndRender() {
14430
- * var now = new JulianDate();
14438
+ * var now = new Cesium.JulianDate();
14431
14439
  * scene.initializeFrame();
14432
- * scene.getCamera().transform = Matrix4.fromRotationTranslation(Transforms.computeTemeToPseudoFixedMatrix(now), Cartesian3.ZERO);
14440
+ * scene.getCamera().transform = Cesium.Matrix4.fromRotationTranslation(Cesium.Transforms.computeTemeToPseudoFixedMatrix(now), Cesium.Cartesian3.ZERO);
14433
14441
  * scene.render();
14434
- * requestAnimationFrame(updateAndRender);
14442
+ * Cesium.requestAnimationFrame(updateAndRender);
14435
14443
  * }
14436
14444
  * updateAndRender();
14437
14445
  */
@@ -14526,7 +14534,7 @@ define('Core/Transforms',[
14526
14534
  * @see when
14527
14535
  *
14528
14536
  * @example
14529
- * var interval = new TimeInterval(...);
14537
+ * var interval = new Cesium.TimeInterval(...);
14530
14538
  * when(preloadIcrfFixed(interval), function() {
14531
14539
  * // the data is now loaded
14532
14540
  * });
@@ -14564,14 +14572,14 @@ define('Core/Transforms',[
14564
14572
  * @example
14565
14573
  * //Set the view to the inertial frame.
14566
14574
  * function updateAndRender() {
14567
- * var now = new JulianDate();
14575
+ * var now = new Cesium.JulianDate();
14568
14576
  * scene.initializeFrame();
14569
- * var icrfToFixed = Transforms.computeIcrfToFixedMatrix(now);
14570
- * if (defined(icrfToFixed)) {
14571
- * scene.getCamera().transform = Matrix4.fromRotationTranslation(icrfToFixed, Cartesian3.ZERO);
14577
+ * var icrfToFixed = Cesium.Transforms.computeIcrfToFixedMatrix(now);
14578
+ * if (Cesium.defined(icrfToFixed)) {
14579
+ * scene.getCamera().transform = Cesium.Matrix4.fromRotationTranslation(icrfToFixed, Cesium.Cartesian3.ZERO);
14572
14580
  * }
14573
14581
  * scene.render();
14574
- * requestAnimationFrame(updateAndRender);
14582
+ * Cesium.requestAnimationFrame(updateAndRender);
14575
14583
  * }
14576
14584
  * updateAndRender();
14577
14585
  */
@@ -14613,12 +14621,12 @@ define('Core/Transforms',[
14613
14621
  *
14614
14622
  * @example
14615
14623
  * // Transform a point from the ICRF axes to the Fixed axes.
14616
- * var now = new JulianDate();
14617
- * var pointInFixed = new Cartesian3(...);
14618
- * var fixedToIcrf = Transforms.computeIcrfToFixedMatrix(now);
14624
+ * var now = new Cesium.JulianDate();
14625
+ * var pointInFixed = new Cesium.Cartesian3(...);
14626
+ * var fixedToIcrf = Cesium.Transforms.computeIcrfToFixedMatrix(now);
14619
14627
  * var pointInInertial;
14620
- * if (defined(fixedToIcrf)) {
14621
- * pointInInertial = Matrix3.multiplyByVector(fixedToIcrf, pointInFixed);
14628
+ * if (Cesium.defined(fixedToIcrf)) {
14629
+ * pointInInertial = Cesium.Matrix3.multiplyByVector(fixedToIcrf, pointInFixed);
14622
14630
  * }
14623
14631
  */
14624
14632
  Transforms.computeFixedToIcrfMatrix = function(date, result) {
@@ -14832,7 +14840,7 @@ define('Core/AxisAlignedBoundingBox',[
14832
14840
  *
14833
14841
  * @example
14834
14842
  * // Compute an axis aligned bounding box enclosing two points.
14835
- * var box = AxisAlignedBoundingBox.fromPoints([new Cartesian3(2, 0, 0), new Cartesian3(-2, 0, 0)]);
14843
+ * var box = Cesium.AxisAlignedBoundingBox.fromPoints([new Cesium.Cartesian3(2, 0, 0), new Cesium.Cartesian3(-2, 0, 0)]);
14836
14844
  */
14837
14845
  AxisAlignedBoundingBox.fromPoints = function(positions, result) {
14838
14846
  if (!defined(result)) {
@@ -14943,14 +14951,13 @@ define('Core/AxisAlignedBoundingBox',[
14943
14951
  * @exception {DeveloperError} plane is required.
14944
14952
  */
14945
14953
  AxisAlignedBoundingBox.intersect = function(box, plane) {
14946
- if (!defined(box)) {
14954
+ if (!defined(box)) {
14947
14955
  throw new DeveloperError('box is required.');
14948
14956
  }
14949
-
14950
14957
  if (!defined(plane)) {
14951
14958
  throw new DeveloperError('plane is required.');
14952
14959
  }
14953
-
14960
+
14954
14961
  intersectScratch = Cartesian3.subtract(box.maximum, box.minimum, intersectScratch);
14955
14962
  var h = Cartesian3.multiplyByScalar(intersectScratch, 0.5, intersectScratch); //The positive half diagonal
14956
14963
  var e = h.x * Math.abs(plane.x) + h.y * Math.abs(plane.y) + h.z * Math.abs(plane.z);
@@ -15042,7 +15049,7 @@ define('Core/QuadraticRealPolynomial',[
15042
15049
  * @exception {DeveloperError} c is a required number.
15043
15050
  */
15044
15051
  QuadraticRealPolynomial.discriminant = function(a, b, c) {
15045
- if (typeof a !== 'number') {
15052
+ if (typeof a !== 'number') {
15046
15053
  throw new DeveloperError('a is a required number.');
15047
15054
  }
15048
15055
  if (typeof b !== 'number') {
@@ -15051,7 +15058,7 @@ define('Core/QuadraticRealPolynomial',[
15051
15058
  if (typeof c !== 'number') {
15052
15059
  throw new DeveloperError('c is a required number.');
15053
15060
  }
15054
-
15061
+
15055
15062
  var discriminant = b * b - 4.0 * a * c;
15056
15063
  return discriminant;
15057
15064
  };
@@ -15080,7 +15087,7 @@ define('Core/QuadraticRealPolynomial',[
15080
15087
  * @exception {DeveloperError} c is a required number.
15081
15088
  */
15082
15089
  QuadraticRealPolynomial.realRoots = function(a, b, c) {
15083
- if (typeof a !== 'number') {
15090
+ if (typeof a !== 'number') {
15084
15091
  throw new DeveloperError('a is a required number.');
15085
15092
  }
15086
15093
  if (typeof b !== 'number') {
@@ -15089,7 +15096,7 @@ define('Core/QuadraticRealPolynomial',[
15089
15096
  if (typeof c !== 'number') {
15090
15097
  throw new DeveloperError('c is a required number.');
15091
15098
  }
15092
-
15099
+
15093
15100
  var ratio;
15094
15101
  if (a === 0.0) {
15095
15102
  if (b === 0.0) {
@@ -15189,7 +15196,7 @@ define('Core/CubicRealPolynomial',[
15189
15196
  * @exception {DeveloperError} d is a required number.
15190
15197
  */
15191
15198
  CubicRealPolynomial.discriminant = function(a, b, c, d) {
15192
- if (typeof a !== 'number') {
15199
+ if (typeof a !== 'number') {
15193
15200
  throw new DeveloperError('a is a required number.');
15194
15201
  }
15195
15202
  if (typeof b !== 'number') {
@@ -15201,7 +15208,7 @@ define('Core/CubicRealPolynomial',[
15201
15208
  if (typeof d !== 'number') {
15202
15209
  throw new DeveloperError('d is a required number.');
15203
15210
  }
15204
-
15211
+
15205
15212
  var a2 = a * a;
15206
15213
  var b2 = b * b;
15207
15214
  var c2 = c * c;
@@ -15332,7 +15339,7 @@ define('Core/CubicRealPolynomial',[
15332
15339
  * @exception {DeveloperError} d is a required number.
15333
15340
  */
15334
15341
  CubicRealPolynomial.realRoots = function(a, b, c, d) {
15335
- if (typeof a !== 'number') {
15342
+ if (typeof a !== 'number') {
15336
15343
  throw new DeveloperError('a is a required number.');
15337
15344
  }
15338
15345
  if (typeof b !== 'number') {
@@ -15344,7 +15351,7 @@ define('Core/CubicRealPolynomial',[
15344
15351
  if (typeof d !== 'number') {
15345
15352
  throw new DeveloperError('d is a required number.');
15346
15353
  }
15347
-
15354
+
15348
15355
  var roots;
15349
15356
  var ratio;
15350
15357
  if (a === 0.0) {
@@ -15444,7 +15451,7 @@ define('Core/QuarticRealPolynomial',[
15444
15451
  * @exception {DeveloperError} e is a required number.
15445
15452
  */
15446
15453
  QuarticRealPolynomial.discriminant = function(a, b, c, d, e) {
15447
- if (typeof a !== 'number') {
15454
+ if (typeof a !== 'number') {
15448
15455
  throw new DeveloperError('a is a required number.');
15449
15456
  }
15450
15457
  if (typeof b !== 'number') {
@@ -15459,7 +15466,7 @@ define('Core/QuarticRealPolynomial',[
15459
15466
  if (typeof e !== 'number') {
15460
15467
  throw new DeveloperError('e is a required number.');
15461
15468
  }
15462
-
15469
+
15463
15470
  var a2 = a * a;
15464
15471
  var a3 = a2 * a;
15465
15472
  var b2 = b * b;
@@ -15675,7 +15682,7 @@ define('Core/QuarticRealPolynomial',[
15675
15682
  * @exception {DeveloperError} e is a required number.
15676
15683
  */
15677
15684
  QuarticRealPolynomial.realRoots = function(a, b, c, d, e) {
15678
- if (typeof a !== 'number') {
15685
+ if (typeof a !== 'number') {
15679
15686
  throw new DeveloperError('a is a required number.');
15680
15687
  }
15681
15688
  if (typeof b !== 'number') {
@@ -15690,7 +15697,7 @@ define('Core/QuarticRealPolynomial',[
15690
15697
  if (typeof e !== 'number') {
15691
15698
  throw new DeveloperError('e is a required number.');
15692
15699
  }
15693
-
15700
+
15694
15701
  if (Math.abs(a) < CesiumMath.EPSILON15) {
15695
15702
  return CubicRealPolynomial.realRoots(b, c, d, e);
15696
15703
  }
@@ -15785,14 +15792,13 @@ define('Core/IntersectionTests',[
15785
15792
  * @exception {DeveloperError} plane is required.
15786
15793
  */
15787
15794
  IntersectionTests.rayPlane = function(ray, plane, result) {
15788
- if (!defined(ray)) {
15795
+ if (!defined(ray)) {
15789
15796
  throw new DeveloperError('ray is required.');
15790
15797
  }
15791
-
15792
15798
  if (!defined(plane)) {
15793
15799
  throw new DeveloperError('plane is required.');
15794
15800
  }
15795
-
15801
+
15796
15802
  var origin = ray.origin;
15797
15803
  var direction = ray.direction;
15798
15804
  var normal = plane.normal;
@@ -15828,14 +15834,13 @@ define('Core/IntersectionTests',[
15828
15834
  * @exception {DeveloperError} ellipsoid is required.
15829
15835
  */
15830
15836
  IntersectionTests.rayEllipsoid = function(ray, ellipsoid) {
15831
- if (!defined(ray)) {
15837
+ if (!defined(ray)) {
15832
15838
  throw new DeveloperError('ray is required.');
15833
15839
  }
15834
-
15835
15840
  if (!defined(ellipsoid)) {
15836
15841
  throw new DeveloperError('ellipsoid is required.');
15837
15842
  }
15838
-
15843
+
15839
15844
  var inverseRadii = ellipsoid.getOneOverRadii();
15840
15845
  var q = Cartesian3.multiplyComponents(inverseRadii, ray.origin, scratchQ);
15841
15846
  var w = Cartesian3.multiplyComponents(inverseRadii, ray.direction, scratchW);
@@ -16026,14 +16031,13 @@ define('Core/IntersectionTests',[
16026
16031
  * @exception {DeveloperError} ellipsoid is required.
16027
16032
  */
16028
16033
  IntersectionTests.grazingAltitudeLocation = function(ray, ellipsoid) {
16029
- if (!defined(ray)) {
16034
+ if (!defined(ray)) {
16030
16035
  throw new DeveloperError('ray is required.');
16031
16036
  }
16032
-
16033
16037
  if (!defined(ellipsoid)) {
16034
16038
  throw new DeveloperError('ellipsoid is required.');
16035
16039
  }
16036
-
16040
+
16037
16041
  var position = ray.origin;
16038
16042
  var direction = ray.direction;
16039
16043
 
@@ -16118,29 +16122,27 @@ define('Core/IntersectionTests',[
16118
16122
  * @exception {DeveloperError} plane is required.
16119
16123
  *
16120
16124
  * @example
16121
- * var origin = ellipsoid.cartographicToCartesian(Cartographic.fromDegrees(-75.59777, 40.03883, 0.0));
16125
+ * var origin = ellipsoid.cartographicToCartesian(Cesium.Cartographic.fromDegrees(-75.59777, 40.03883, 0.0));
16122
16126
  * var normal = ellipsoid.geodeticSurfaceNormal(origin);
16123
- * var plane = Plane.fromPointNormal(origin, normal);
16127
+ * var plane = Cesium.Plane.fromPointNormal(origin, normal);
16124
16128
  *
16125
- * var p0 = new Cartesian3(...);
16126
- * var p1 = new Cartesian3(...);
16129
+ * var p0 = new Cesium.Cartesian3(...);
16130
+ * var p1 = new Cesium.Cartesian3(...);
16127
16131
  *
16128
16132
  * // find the intersection of the line segment from p0 to p1 and the tangent plane at origin.
16129
- * var intersection = IntersectionTests.lineSegmentPlane(p0, p1, plane);
16133
+ * var intersection = Cesium.IntersectionTests.lineSegmentPlane(p0, p1, plane);
16130
16134
  */
16131
16135
  IntersectionTests.lineSegmentPlane = function(endPoint0, endPoint1, plane, result) {
16132
- if (!defined(endPoint0)) {
16136
+ if (!defined(endPoint0)) {
16133
16137
  throw new DeveloperError('endPoint0 is required.');
16134
16138
  }
16135
-
16136
16139
  if (!defined(endPoint1)) {
16137
16140
  throw new DeveloperError('endPoint1 is required.');
16138
16141
  }
16139
-
16140
16142
  if (!defined(plane)) {
16141
16143
  throw new DeveloperError('plane is required.');
16142
16144
  }
16143
-
16145
+
16144
16146
  var difference = Cartesian3.subtract(endPoint1, endPoint0, lineSegmentPlaneDifference);
16145
16147
  var normal = plane.normal;
16146
16148
  var nDotDiff = Cartesian3.dot(normal, difference);
@@ -16181,26 +16183,26 @@ define('Core/IntersectionTests',[
16181
16183
  * @exception {DeveloperError} p0, p1, p2, and plane are required.
16182
16184
  *
16183
16185
  * @example
16184
- * var origin = ellipsoid.cartographicToCartesian(Cartographic.fromDegrees(-75.59777, 40.03883, 0.0));
16186
+ * var origin = ellipsoid.cartographicToCartesian(Cesium.Cartographic.fromDegrees(-75.59777, 40.03883, 0.0));
16185
16187
  * var normal = ellipsoid.geodeticSurfaceNormal(origin);
16186
- * var plane = Plane.fromPointNormal(origin, normal);
16188
+ * var plane = Cesium.Plane.fromPointNormal(origin, normal);
16187
16189
  *
16188
- * var p0 = new Cartesian3(...);
16189
- * var p1 = new Cartesian3(...);
16190
- * var p2 = new Cartesian3(...);
16190
+ * var p0 = new Cesium.Cartesian3(...);
16191
+ * var p1 = new Cesium.Cartesian3(...);
16192
+ * var p2 = new Cesium.Cartesian3(...);
16191
16193
  *
16192
16194
  * // convert the triangle composed of points (p0, p1, p2) to three triangles that don't cross the plane
16193
- * var triangles = IntersectionTests.lineSegmentPlane(p0, p1, p2, plane);
16195
+ * var triangles = Cesium.IntersectionTests.lineSegmentPlane(p0, p1, p2, plane);
16194
16196
  *
16195
16197
  */
16196
16198
  IntersectionTests.trianglePlaneIntersection = function(p0, p1, p2, plane) {
16197
- if ((!defined(p0)) ||
16199
+ if ((!defined(p0)) ||
16198
16200
  (!defined(p1)) ||
16199
16201
  (!defined(p2)) ||
16200
16202
  (!defined(plane))) {
16201
16203
  throw new DeveloperError('p0, p1, p2, and plane are required.');
16202
16204
  }
16203
-
16205
+
16204
16206
  var planeNormal = plane.normal;
16205
16207
  var planeD = plane.distance;
16206
16208
  var p0Behind = (Cartesian3.dot(planeNormal, p0) + planeD) < 0.0;
@@ -16376,14 +16378,14 @@ define('Core/Ray',[
16376
16378
  *
16377
16379
  * @example
16378
16380
  * //Get the first intersection point of a ray and an ellipsoid.
16379
- * var intersection = IntersectionTests.rayEllipsoid(ray, ellipsoid);
16381
+ * var intersection = Cesium.IntersectionTests.rayEllipsoid(ray, ellipsoid);
16380
16382
  * var point = ray.getPoint(intersection.start);
16381
16383
  */
16382
16384
  Ray.prototype.getPoint = function(t, result) {
16383
- if (typeof t !== 'number') {
16385
+ if (typeof t !== 'number') {
16384
16386
  throw new DeveloperError('t is a required number');
16385
16387
  }
16386
-
16388
+
16387
16389
  result = Cartesian3.multiplyByScalar(this.direction, t, result);
16388
16390
  return Cartesian3.add(this.origin, result, result);
16389
16391
  };
@@ -16426,17 +16428,16 @@ define('Core/Plane',[
16426
16428
  *
16427
16429
  * @example
16428
16430
  * // The plane x=0
16429
- * var plane = new Plane(Cartesian3.UNIT_X, 0.0);
16431
+ * var plane = new Cesium.Plane(Cesium.Cartesian3.UNIT_X, 0.0);
16430
16432
  */
16431
16433
  var Plane = function(normal, distance) {
16432
- if (!defined(normal)) {
16434
+ if (!defined(normal)) {
16433
16435
  throw new DeveloperError('normal is required.');
16434
16436
  }
16435
-
16436
16437
  if (!defined(distance)) {
16437
16438
  throw new DeveloperError('distance is required.');
16438
16439
  }
16439
-
16440
+
16440
16441
  /**
16441
16442
  * The plane's normal.
16442
16443
  *
@@ -16469,19 +16470,18 @@ define('Core/Plane',[
16469
16470
  * @exception {DeveloperError} normal is required.
16470
16471
  *
16471
16472
  * @example
16472
- * var point = ellipsoid.cartographicToCartesian(Cartographic.fromDegrees(-72.0, 40.0));
16473
+ * var point = ellipsoid.cartographicToCartesian(Cesium.Cartographic.fromDegrees(-72.0, 40.0));
16473
16474
  * var normal = ellipsoid.geodeticSurfaceNormal(point);
16474
- * var tangentPlane = Plane.fromPointNormal(point, normal);
16475
+ * var tangentPlane = Cesium.Plane.fromPointNormal(point, normal);
16475
16476
  */
16476
16477
  Plane.fromPointNormal = function(point, normal, result) {
16477
- if (!defined(point)) {
16478
+ if (!defined(point)) {
16478
16479
  throw new DeveloperError('point is required.');
16479
16480
  }
16480
-
16481
16481
  if (!defined(normal)) {
16482
16482
  throw new DeveloperError('normal is required.');
16483
16483
  }
16484
-
16484
+
16485
16485
  var distance = -Cartesian3.dot(normal, point);
16486
16486
 
16487
16487
  if (!defined(result)) {
@@ -16509,14 +16509,13 @@ define('Core/Plane',[
16509
16509
  * @exception {DeveloperError} point is required.
16510
16510
  */
16511
16511
  Plane.getPointDistance = function(plane, point) {
16512
- if (!defined(plane)) {
16512
+ if (!defined(plane)) {
16513
16513
  throw new DeveloperError('plane is required.');
16514
16514
  }
16515
-
16516
16515
  if (!defined(point)) {
16517
16516
  throw new DeveloperError('point is required.');
16518
16517
  }
16519
-
16518
+
16520
16519
  return Cartesian3.dot(plane.normal, point) + plane.distance;
16521
16520
  };
16522
16521
 
@@ -16584,16 +16583,17 @@ define('Core/EllipsoidTangentPlane',[
16584
16583
  * @exception {DeveloperError} origin must not be at the center of the ellipsoid.
16585
16584
  */
16586
16585
  var EllipsoidTangentPlane = function(origin, ellipsoid) {
16587
- if (!defined(origin)) {
16586
+ if (!defined(origin)) {
16588
16587
  throw new DeveloperError('origin is required.');
16589
16588
  }
16590
-
16589
+
16591
16590
  ellipsoid = defaultValue(ellipsoid, Ellipsoid.WGS84);
16592
-
16593
16591
  origin = ellipsoid.scaleToGeodeticSurface(origin);
16594
- if (!defined(origin)) {
16592
+
16593
+ if (!defined(origin)) {
16595
16594
  throw new DeveloperError('origin must not be at the center of the ellipsoid.');
16596
16595
  }
16596
+
16597
16597
  var eastNorthUp = Transforms.eastNorthUpToFixedFrame(origin, ellipsoid);
16598
16598
  this._ellipsoid = ellipsoid;
16599
16599
  this._origin = Cartesian3.clone(origin);
@@ -16616,10 +16616,10 @@ define('Core/EllipsoidTangentPlane',[
16616
16616
  * @exception {DeveloperError} cartesians is required.
16617
16617
  */
16618
16618
  EllipsoidTangentPlane.fromPoints = function(cartesians, ellipsoid) {
16619
- if (!defined(cartesians)) {
16619
+ if (!defined(cartesians)) {
16620
16620
  throw new DeveloperError('cartesians is required.');
16621
16621
  }
16622
-
16622
+
16623
16623
  var box = AxisAlignedBoundingBox.fromPoints(cartesians, tmp);
16624
16624
  return new EllipsoidTangentPlane(box.center, ellipsoid);
16625
16625
  };
@@ -16654,10 +16654,10 @@ define('Core/EllipsoidTangentPlane',[
16654
16654
  * @exception {DeveloperError} cartesian is required.
16655
16655
  */
16656
16656
  EllipsoidTangentPlane.prototype.projectPointOntoPlane = function(cartesian, result) {
16657
- if (!defined(cartesian)) {
16657
+ if (!defined(cartesian)) {
16658
16658
  throw new DeveloperError('cartesian is required.');
16659
16659
  }
16660
-
16660
+
16661
16661
  var ray = projectPointOntoPlaneRay;
16662
16662
  ray.origin = cartesian;
16663
16663
  Cartesian3.normalize(cartesian, ray.direction);
@@ -16694,10 +16694,10 @@ define('Core/EllipsoidTangentPlane',[
16694
16694
  * @exception {DeveloperError} cartesians is required.
16695
16695
  */
16696
16696
  EllipsoidTangentPlane.prototype.projectPointsOntoPlane = function(cartesians, result) {
16697
- if (!defined(cartesians)) {
16697
+ if (!defined(cartesians)) {
16698
16698
  throw new DeveloperError('cartesians is required.');
16699
16699
  }
16700
-
16700
+
16701
16701
  if (!defined(result)) {
16702
16702
  result = [];
16703
16703
  }
@@ -16728,10 +16728,10 @@ define('Core/EllipsoidTangentPlane',[
16728
16728
  * @exception {DeveloperError} cartesians is required.
16729
16729
  */
16730
16730
  EllipsoidTangentPlane.prototype.projectPointsOntoEllipsoid = function(cartesians, result) {
16731
- if (!defined(cartesians)) {
16731
+ if (!defined(cartesians)) {
16732
16732
  throw new DeveloperError('cartesians is required.');
16733
16733
  }
16734
-
16734
+
16735
16735
  var length = cartesians.length;
16736
16736
  if (!defined(result)) {
16737
16737
  result = new Array(length);
@@ -16805,17 +16805,17 @@ define('Core/Geometry',[
16805
16805
  * 0.0, 7500000.0, 0.0
16806
16806
  * ]);
16807
16807
  *
16808
- * var geometry = new Geometry({
16808
+ * var geometry = new Cesium.Geometry({
16809
16809
  * attributes : {
16810
- * position : new GeometryAttribute({
16811
- * componentDatatype : ComponentDatatype.DOUBLE,
16810
+ * position : new Cesium.GeometryAttribute({
16811
+ * componentDatatype : Cesium.ComponentDatatype.DOUBLE,
16812
16812
  * componentsPerAttribute : 3,
16813
16813
  * values : positions
16814
16814
  * })
16815
16815
  * },
16816
16816
  * indices : new Uint16Array([0, 1, 1, 2, 2, 0]),
16817
- * primitiveType : PrimitiveType.LINES,
16818
- * boundingSphere : BoundingSphere.fromVertices(positions)
16817
+ * primitiveType : Cesium.PrimitiveType.LINES,
16818
+ * boundingSphere : Cesium.BoundingSphere.fromVertices(positions)
16819
16819
  * });
16820
16820
  *
16821
16821
  * @demo <a href="http://cesiumjs.org/Cesium/Apps/Sandcastle/index.html?src=Geometry%20and%20Appearances.html">Geometry and Appearances Demo</a>
@@ -16832,14 +16832,13 @@ define('Core/Geometry',[
16832
16832
  var Geometry = function(options) {
16833
16833
  options = defaultValue(options, defaultValue.EMPTY_OBJECT);
16834
16834
 
16835
- if (!defined(options.attributes)) {
16835
+ if (!defined(options.attributes)) {
16836
16836
  throw new DeveloperError('options.attributes is required.');
16837
16837
  }
16838
-
16839
16838
  if (!defined(options.primitiveType)) {
16840
16839
  throw new DeveloperError('options.primitiveType is required.');
16841
16840
  }
16842
-
16841
+
16843
16842
  /**
16844
16843
  * Attributes, which make up the geometry's vertices. Each property in this object corresponds to a
16845
16844
  * {@link GeometryAttribute} containing the attribute's data.
@@ -16878,8 +16877,8 @@ define('Core/Geometry',[
16878
16877
  * @default undefined
16879
16878
  *
16880
16879
  * @example
16881
- * geometry.attributes.position = new GeometryAttribute({
16882
- * componentDatatype : ComponentDatatype.FLOAT,
16880
+ * geometry.attributes.position = new Cesium.GeometryAttribute({
16881
+ * componentDatatype : Cesium.ComponentDatatype.FLOAT,
16883
16882
  * componentsPerAttribute : 3,
16884
16883
  * values : new Float32Array()
16885
16884
  * });
@@ -16933,13 +16932,13 @@ define('Core/Geometry',[
16933
16932
  * @exception {DeveloperError} geometries is required.
16934
16933
  *
16935
16934
  * @example
16936
- * var numVertices = Geometry.computeNumberOfVertices(geometry);
16935
+ * var numVertices = Cesium.Geometry.computeNumberOfVertices(geometry);
16937
16936
  */
16938
16937
  Geometry.computeNumberOfVertices = function(geometry) {
16939
- if (!defined(geometry)) {
16938
+ if (!defined(geometry)) {
16940
16939
  throw new DeveloperError('geometry is required.');
16941
16940
  }
16942
-
16941
+
16943
16942
  var numberOfVertices = -1;
16944
16943
  for ( var property in geometry.attributes) {
16945
16944
  if (geometry.attributes.hasOwnProperty(property) &&
@@ -16991,10 +16990,10 @@ define('Core/GeometryAttribute',[
16991
16990
  * @exception {DeveloperError} options.values is required.
16992
16991
  *
16993
16992
  * @example
16994
- * var geometry = new Geometry({
16993
+ * var geometry = new Cesium.Geometry({
16995
16994
  * attributes : {
16996
- * position : new GeometryAttribute({
16997
- * componentDatatype : ComponentDatatype.FLOAT,
16995
+ * position : new Cesium.GeometryAttribute({
16996
+ * componentDatatype : Cesium.ComponentDatatype.FLOAT,
16998
16997
  * componentsPerAttribute : 3,
16999
16998
  * values : [
17000
16999
  * 0.0, 0.0, 0.0,
@@ -17003,7 +17002,7 @@ define('Core/GeometryAttribute',[
17003
17002
  * ]
17004
17003
  * })
17005
17004
  * },
17006
- * primitiveType : PrimitiveType.LINE_LOOP
17005
+ * primitiveType : Cesium.PrimitiveType.LINE_LOOP
17007
17006
  * });
17008
17007
  *
17009
17008
  * @see Geometry
@@ -17011,25 +17010,22 @@ define('Core/GeometryAttribute',[
17011
17010
  var GeometryAttribute = function(options) {
17012
17011
  options = defaultValue(options, defaultValue.EMPTY_OBJECT);
17013
17012
 
17014
- if (!defined(options.componentDatatype)) {
17013
+ if (!defined(options.componentDatatype)) {
17015
17014
  throw new DeveloperError('options.componentDatatype is required.');
17016
17015
  }
17017
-
17018
17016
  if (!defined(options.componentsPerAttribute)) {
17019
17017
  throw new DeveloperError('options.componentsPerAttribute is required.');
17020
17018
  }
17021
-
17022
17019
  if (options.componentsPerAttribute < 1 || options.componentsPerAttribute > 4) {
17023
17020
  throw new DeveloperError('options.componentsPerAttribute must be between 1 and 4.');
17024
17021
  }
17025
-
17026
17022
  if (!defined(options.values)) {
17027
17023
  throw new DeveloperError('options.values is required.');
17028
17024
  }
17029
-
17025
+
17030
17026
  /**
17031
17027
  * The datatype of each component in the attribute, e.g., individual elements in
17032
- * {@see GeometryAttribute#values}.
17028
+ * {@link GeometryAttribute#values}.
17033
17029
  *
17034
17030
  * @type ComponentDatatype
17035
17031
  *
@@ -17047,7 +17043,7 @@ define('Core/GeometryAttribute',[
17047
17043
  * @default undefined
17048
17044
  *
17049
17045
  * @example
17050
- * attribute.componentDatatype : ComponentDatatype.FLOAT,
17046
+ * attribute.componentDatatype : Cesium.ComponentDatatype.FLOAT,
17051
17047
  * attribute.componentsPerAttribute : 3,
17052
17048
  * attribute.values = new Float32Array([
17053
17049
  * 0.0, 0.0, 0.0,
@@ -17062,7 +17058,7 @@ define('Core/GeometryAttribute',[
17062
17058
  * indicate that the components should be mapped to the range [0, 1] (unsigned)
17063
17059
  * or [-1, 1] (signed) when they are accessed as floating-point for rendering.
17064
17060
  * <p>
17065
- * This is commonly used when storing colors using {@ ComponentDatatype.UNSIGNED_BYTE}.
17061
+ * This is commonly used when storing colors using {@link ComponentDatatype.UNSIGNED_BYTE}.
17066
17062
  * </p>
17067
17063
  *
17068
17064
  * @type Boolean
@@ -17070,14 +17066,14 @@ define('Core/GeometryAttribute',[
17070
17066
  * @default false
17071
17067
  *
17072
17068
  * @example
17073
- * attribute.componentDatatype : ComponentDatatype.UNSIGNED_BYTE,
17069
+ * attribute.componentDatatype : Cesium.ComponentDatatype.UNSIGNED_BYTE,
17074
17070
  * attribute.componentsPerAttribute : 4,
17075
17071
  * attribute.normalize = true;
17076
17072
  * attribute.values = new Uint8Array([
17077
- * Color.floatToByte(color.red)
17078
- * Color.floatToByte(color.green)
17079
- * Color.floatToByte(color.blue)
17080
- * Color.floatToByte(color.alpha)
17073
+ * Cesium.Color.floatToByte(color.red)
17074
+ * Cesium.Color.floatToByte(color.green)
17075
+ * Cesium.Color.floatToByte(color.blue)
17076
+ * Cesium.Color.floatToByte(color.alpha)
17081
17077
  * ]);
17082
17078
  */
17083
17079
  this.normalize = defaultValue(options.normalize, false);
@@ -17092,7 +17088,7 @@ define('Core/GeometryAttribute',[
17092
17088
  * @default undefined
17093
17089
  *
17094
17090
  * @example
17095
- * attribute.componentDatatype : ComponentDatatype.FLOAT,
17091
+ * attribute.componentDatatype : Cesium.ComponentDatatype.FLOAT,
17096
17092
  * attribute.componentsPerAttribute : 3,
17097
17093
  * attribute.values = new Float32Array([
17098
17094
  * 0.0, 0.0, 0.0,
@@ -17228,16 +17224,16 @@ define('Core/GeometryInstanceAttribute',[
17228
17224
  * @exception {DeveloperError} options.value is required.
17229
17225
  *
17230
17226
  * @example
17231
- * var instance = new GeometryInstance({
17232
- * geometry : new BoxGeometry({
17233
- * dimensions : new Cartesian3(1000000.0, 1000000.0, 500000.0)
17227
+ * var instance = new Cesium.GeometryInstance({
17228
+ * geometry : new Cesium.BoxGeometry({
17229
+ * dimensions : new Cesium.Cartesian3(1000000.0, 1000000.0, 500000.0)
17234
17230
  * }),
17235
- * modelMatrix : Matrix4.multiplyByTranslation(Transforms.eastNorthUpToFixedFrame(
17236
- * ellipsoid.cartographicToCartesian(Cartographic.fromDegrees(-0.0, 0.0))), new Cartesian3(0.0, 0.0, 1000000.0)),
17231
+ * modelMatrix : Cesium.Matrix4.multiplyByTranslation(Cesium.Transforms.eastNorthUpToFixedFrame(
17232
+ * ellipsoid.cartographicToCartesian(Cesium.Cartographic.fromDegrees(-0.0, 0.0))), new Cesium.Cartesian3(0.0, 0.0, 1000000.0)),
17237
17233
  * id : 'box',
17238
17234
  * attributes : {
17239
- * color : new GeometryInstanceAttribute({
17240
- * componentDatatype : ComponentDatatype.UNSIGNED_BYTE,
17235
+ * color : new Cesium.GeometryInstanceAttribute({
17236
+ * componentDatatype : Cesium.ComponentDatatype.UNSIGNED_BYTE,
17241
17237
  * componentsPerAttribute : 4,
17242
17238
  * normalize : true,
17243
17239
  * value : [255, 255, 0 255]
@@ -17251,25 +17247,22 @@ define('Core/GeometryInstanceAttribute',[
17251
17247
  var GeometryInstanceAttribute = function(options) {
17252
17248
  options = defaultValue(options, defaultValue.EMPTY_OBJECT);
17253
17249
 
17254
- if (!defined(options.componentDatatype)) {
17250
+ if (!defined(options.componentDatatype)) {
17255
17251
  throw new DeveloperError('options.componentDatatype is required.');
17256
17252
  }
17257
-
17258
17253
  if (!defined(options.componentsPerAttribute)) {
17259
17254
  throw new DeveloperError('options.componentsPerAttribute is required.');
17260
17255
  }
17261
-
17262
17256
  if (options.componentsPerAttribute < 1 || options.componentsPerAttribute > 4) {
17263
17257
  throw new DeveloperError('options.componentsPerAttribute must be between 1 and 4.');
17264
17258
  }
17265
-
17266
17259
  if (!defined(options.value)) {
17267
17260
  throw new DeveloperError('options.value is required.');
17268
17261
  }
17269
-
17262
+
17270
17263
  /**
17271
17264
  * The datatype of each component in the attribute, e.g., individual elements in
17272
- * {@see GeometryInstanceAttribute#value}.
17265
+ * {@link GeometryInstanceAttribute#value}.
17273
17266
  *
17274
17267
  * @type ComponentDatatype
17275
17268
  *
@@ -17287,8 +17280,8 @@ define('Core/GeometryInstanceAttribute',[
17287
17280
  * @default undefined
17288
17281
  *
17289
17282
  * @example
17290
- * show : new GeometryInstanceAttribute({
17291
- * componentDatatype : ComponentDatatype.UNSIGNED_BYTE,
17283
+ * show : new Cesium.GeometryInstanceAttribute({
17284
+ * componentDatatype : Cesium.ComponentDatatype.UNSIGNED_BYTE,
17292
17285
  * componentsPerAttribute : 1,
17293
17286
  * normalize : true,
17294
17287
  * value : 1.0
@@ -17301,7 +17294,7 @@ define('Core/GeometryInstanceAttribute',[
17301
17294
  * indicate that the components should be mapped to the range [0, 1] (unsigned)
17302
17295
  * or [-1, 1] (signed) when they are accessed as floating-point for rendering.
17303
17296
  * <p>
17304
- * This is commonly used when storing colors using {@ ComponentDatatype.UNSIGNED_BYTE}.
17297
+ * This is commonly used when storing colors using {@link ComponentDatatype.UNSIGNED_BYTE}.
17305
17298
  * </p>
17306
17299
  *
17307
17300
  * @type Boolean
@@ -17309,14 +17302,14 @@ define('Core/GeometryInstanceAttribute',[
17309
17302
  * @default false
17310
17303
  *
17311
17304
  * @example
17312
- * attribute.componentDatatype : ComponentDatatype.UNSIGNED_BYTE,
17305
+ * attribute.componentDatatype : Cesium.ComponentDatatype.UNSIGNED_BYTE,
17313
17306
  * attribute.componentsPerAttribute : 4,
17314
17307
  * attribute.normalize = true;
17315
17308
  * attribute.value = [
17316
- * Color.floatToByte(color.red)
17317
- * Color.floatToByte(color.green)
17318
- * Color.floatToByte(color.blue)
17319
- * Color.floatToByte(color.alpha)
17309
+ * Cesium.Color.floatToByte(color.red)
17310
+ * Cesium.Color.floatToByte(color.green)
17311
+ * Cesium.Color.floatToByte(color.blue)
17312
+ * Cesium.Color.floatToByte(color.alpha)
17320
17313
  * ];
17321
17314
  */
17322
17315
  this.normalize = defaultValue(options.normalize, false);
@@ -17329,8 +17322,8 @@ define('Core/GeometryInstanceAttribute',[
17329
17322
  * @default undefined
17330
17323
  *
17331
17324
  * @example
17332
- * show : new GeometryInstanceAttribute({
17333
- * componentDatatype : ComponentDatatype.UNSIGNED_BYTE,
17325
+ * show : new Cesium.GeometryInstanceAttribute({
17326
+ * componentDatatype : Cesium.ComponentDatatype.UNSIGNED_BYTE,
17334
17327
  * componentsPerAttribute : 1,
17335
17328
  * normalize : true,
17336
17329
  * value : [1.0]
@@ -17379,25 +17372,25 @@ define('Core/GeometryInstance',[
17379
17372
  * // Create geometry for a box, and two instances that refer to it.
17380
17373
  * // One instance positions the box on the bottom and colored aqua.
17381
17374
  * // The other instance positions the box on the top and color white.
17382
- * var geometry = new BoxGeometry({
17383
- * vertexFormat : VertexFormat.POSITION_AND_NORMAL,
17384
- * dimensions : new Cartesian3(1000000.0, 1000000.0, 500000.0)
17375
+ * var geometry = new Cesium.BoxGeometry({
17376
+ * vertexFormat : Cesium.VertexFormat.POSITION_AND_NORMAL,
17377
+ * dimensions : new Cesium.Cartesian3(1000000.0, 1000000.0, 500000.0)
17385
17378
  * }),
17386
- * var instanceBottom = new GeometryInstance({
17379
+ * var instanceBottom = new Cesium.GeometryInstance({
17387
17380
  * geometry : geometry,
17388
- * modelMatrix : Matrix4.multiplyByTranslation(Transforms.eastNorthUpToFixedFrame(
17389
- * ellipsoid.cartographicToCartesian(Cartographic.fromDegrees(-75.59777, 40.03883))), new Cartesian3(0.0, 0.0, 1000000.0)),
17381
+ * modelMatrix : Cesium.Matrix4.multiplyByTranslation(Cesium.Transforms.eastNorthUpToFixedFrame(
17382
+ * ellipsoid.cartographicToCartesian(Cesium.Cartographic.fromDegrees(-75.59777, 40.03883))), new Cesium.Cartesian3(0.0, 0.0, 1000000.0)),
17390
17383
  * attributes : {
17391
- * color : new ColorGeometryInstanceAttribute(Color.AQUA)
17384
+ * color : new Cesium.ColorGeometryInstanceAttribute(Cesium.Color.AQUA)
17392
17385
  * }
17393
17386
  * id : 'bottom'
17394
17387
  * });
17395
- * var instanceTop = new GeometryInstance({
17388
+ * var instanceTop = new Cesium.GeometryInstance({
17396
17389
  * geometry : geometry,
17397
- * modelMatrix : Matrix4.multiplyByTranslation(Transforms.eastNorthUpToFixedFrame(
17398
- * ellipsoid.cartographicToCartesian(Cartographic.fromDegrees(-75.59777, 40.03883))), new Cartesian3(0.0, 0.0, 3000000.0)),
17390
+ * modelMatrix : Cesium.Matrix4.multiplyByTranslation(Cesium.Transforms.eastNorthUpToFixedFrame(
17391
+ * ellipsoid.cartographicToCartesian(Cesium.Cartographic.fromDegrees(-75.59777, 40.03883))), new Cesium.Cartesian3(0.0, 0.0, 3000000.0)),
17399
17392
  * attributes : {
17400
- * color : new ColorGeometryInstanceAttribute(Color.AQUA)
17393
+ * color : new Cesium.ColorGeometryInstanceAttribute(Cesium.Color.AQUA)
17401
17394
  * }
17402
17395
  * id : 'top'
17403
17396
  * });
@@ -17407,10 +17400,10 @@ define('Core/GeometryInstance',[
17407
17400
  var GeometryInstance = function(options) {
17408
17401
  options = defaultValue(options, defaultValue.EMPTY_OBJECT);
17409
17402
 
17410
- if (!defined(options.geometry)) {
17403
+ if (!defined(options.geometry)) {
17411
17404
  throw new DeveloperError('options.geometry is required.');
17412
17405
  }
17413
-
17406
+
17414
17407
  /**
17415
17408
  * The geometry being instanced.
17416
17409
  *
@@ -17499,16 +17492,17 @@ define('Core/barycentricCoordinates',[
17499
17492
  *
17500
17493
  * @example
17501
17494
  * // Returns Cartesian3.UNIT_X
17502
- * var p = new Cartesian3(-1.0, 0.0, 0.0);
17503
- * var b = barycentricCoordinates(p,
17504
- * new Cartesian3(-1.0, 0.0, 0.0),
17505
- * new Cartesian3( 1.0, 0.0, 0.0),
17506
- * new Cartesian3( 0.0, 1.0, 1.0));
17495
+ * var p = new Cesium.Cartesian3(-1.0, 0.0, 0.0);
17496
+ * var b = Cesium.barycentricCoordinates(p,
17497
+ * new Cesium.Cartesian3(-1.0, 0.0, 0.0),
17498
+ * new Cesium.Cartesian3( 1.0, 0.0, 0.0),
17499
+ * new Cesium.Cartesian3( 0.0, 1.0, 1.0));
17507
17500
  */
17508
17501
  var barycentricCoordinates = function(point, p0, p1, p2, result) {
17509
- if (!defined(point) || !defined(p0) || !defined(p1) || !defined(p2)) {
17502
+ if (!defined(point) || !defined(p0) || !defined(p1) || !defined(p2)) {
17510
17503
  throw new DeveloperError('point, p0, p1, and p2 are required.');
17511
17504
  }
17505
+
17512
17506
 
17513
17507
  if (!defined(result)) {
17514
17508
  result = new Cartesian3();
@@ -17617,13 +17611,13 @@ define('Core/EncodedCartesian3',[
17617
17611
  *
17618
17612
  * @example
17619
17613
  * var value = 1234567.1234567;
17620
- * var splitValue = EncodedCartesian3.encode(value);
17614
+ * var splitValue = Cesium.EncodedCartesian3.encode(value);
17621
17615
  */
17622
17616
  EncodedCartesian3.encode = function(value, result) {
17623
- if (!defined(value)) {
17617
+ if (!defined(value)) {
17624
17618
  throw new DeveloperError('value is required');
17625
17619
  }
17626
-
17620
+
17627
17621
  if (!defined(result)) {
17628
17622
  result = {
17629
17623
  high : 0.0,
@@ -17665,14 +17659,14 @@ define('Core/EncodedCartesian3',[
17665
17659
  * @exception {DeveloperError} cartesian is required.
17666
17660
  *
17667
17661
  * @example
17668
- * var cart = new Cartesian3(-10000000.0, 0.0, 10000000.0);
17669
- * var encoded = EncodedCartesian3.fromCartesian(cart);
17662
+ * var cart = new Cesium.Cartesian3(-10000000.0, 0.0, 10000000.0);
17663
+ * var encoded = Cesium.EncodedCartesian3.fromCartesian(cart);
17670
17664
  */
17671
17665
  EncodedCartesian3.fromCartesian = function(cartesian, result) {
17672
- if (!defined(cartesian)) {
17666
+ if (!defined(cartesian)) {
17673
17667
  throw new DeveloperError('cartesian is required');
17674
17668
  }
17675
-
17669
+
17676
17670
  if (!defined(result)) {
17677
17671
  result = new EncodedCartesian3();
17678
17672
  }
@@ -17714,29 +17708,27 @@ define('Core/EncodedCartesian3',[
17714
17708
  *
17715
17709
  * @example
17716
17710
  * var positions = [
17717
- * new Cartesian3(),
17711
+ * new Cesium.Cartesian3(),
17718
17712
  * // ...
17719
17713
  * ];
17720
17714
  * var encodedPositions = new Float32Array(2 * 3 * positions.length);
17721
17715
  * var j = 0;
17722
17716
  * for (var i = 0; i < positions.length; ++i) {
17723
- * EncodedCartesian3.writeElement(positions[i], encodedPositions, j);
17717
+ * Cesium.EncodedCartesian3.writeElement(positions[i], encodedPositions, j);
17724
17718
  * j += 6;
17725
17719
  * }
17726
17720
  */
17727
17721
  EncodedCartesian3.writeElements = function(cartesian, cartesianArray, index) {
17728
- if (!defined(cartesian)) {
17722
+ if (!defined(cartesian)) {
17729
17723
  throw new DeveloperError('cartesian is required');
17730
17724
  }
17731
-
17732
17725
  if (!defined(cartesianArray)) {
17733
17726
  throw new DeveloperError('cartesianArray is required');
17734
17727
  }
17735
-
17736
17728
  if (typeof index !== 'number' || index < 0) {
17737
17729
  throw new DeveloperError('index must be a number greater than or equal to 0.');
17738
17730
  }
17739
-
17731
+
17740
17732
  EncodedCartesian3.fromCartesian(cartesian, encodedP);
17741
17733
  var high = encodedP.high;
17742
17734
  var low = encodedP.low;
@@ -17810,7 +17802,7 @@ define('Core/IndexDatatype',[
17810
17802
  *
17811
17803
  * @example
17812
17804
  * // Returns 2
17813
- * var size = IndexDatatype.getSizeInBytes(IndexDatatype.UNSIGNED_SHORT);
17805
+ * var size = Cesium.IndexDatatype.getSizeInBytes(Cesium.IndexDatatype.UNSIGNED_SHORT);
17814
17806
  */
17815
17807
  IndexDatatype.getSizeInBytes = function(indexDatatype) {
17816
17808
  switch(indexDatatype) {
@@ -17822,8 +17814,8 @@ define('Core/IndexDatatype',[
17822
17814
  return Uint32Array.BYTES_PER_ELEMENT;
17823
17815
  }
17824
17816
 
17825
- throw new DeveloperError('indexDatatype is required and must be a valid IndexDatatype constant.');
17826
- };
17817
+ throw new DeveloperError('indexDatatype is required and must be a valid IndexDatatype constant.');
17818
+ };
17827
17819
 
17828
17820
  /**
17829
17821
  * Validates that the provided index datatype is a valid {@link IndexDatatype}.
@@ -17833,8 +17825,8 @@ define('Core/IndexDatatype',[
17833
17825
  * @returns {Boolean} <code>true</code> if the provided index datatype is a valid value; otherwise, <code>false</code>.
17834
17826
  *
17835
17827
  * @example
17836
- * if (!IndexDatatype.validate(indexDatatype)) {
17837
- * throw new DeveloperError('indexDatatype must be a valid value.');
17828
+ * if (!Cesium.IndexDatatype.validate(indexDatatype)) {
17829
+ * throw new Cesium.DeveloperError('indexDatatype must be a valid value.');
17838
17830
  * }
17839
17831
  */
17840
17832
  IndexDatatype.validate = function(indexDatatype) {
@@ -17856,13 +17848,13 @@ define('Core/IndexDatatype',[
17856
17848
  * @exception {DeveloperError} center is required.
17857
17849
  *
17858
17850
  * @example
17859
- * this.indices = IndexDatatype.createTypedArray(positions.length / 3, numberOfIndices);
17851
+ * this.indices = Cesium.IndexDatatype.createTypedArray(positions.length / 3, numberOfIndices);
17860
17852
  */
17861
17853
  IndexDatatype.createTypedArray = function(numberOfVertices, indicesLengthOrArray) {
17862
- if (!defined(numberOfVertices)) {
17854
+ if (!defined(numberOfVertices)) {
17863
17855
  throw new DeveloperError('numberOfVertices is required.');
17864
17856
  }
17865
-
17857
+
17866
17858
  if (numberOfVertices > CesiumMath.SIXTY_FOUR_KILOBYTES) {
17867
17859
  return new Uint32Array(indicesLengthOrArray);
17868
17860
  }
@@ -18002,7 +17994,7 @@ define('Core/Tipsify',[
18002
17994
  * var indices = [0, 1, 2, 3, 4, 5];
18003
17995
  * var maxIndex = 5;
18004
17996
  * var cacheSize = 3;
18005
- * var acmr = Tipsify.calculateACMR({indices : indices, maxIndex : maxIndex, cacheSize : cacheSize});
17997
+ * var acmr = Cesium.Tipsify.calculateACMR({indices : indices, maxIndex : maxIndex, cacheSize : cacheSize});
18006
17998
  */
18007
17999
  Tipsify.calculateACMR = function(description) {
18008
18000
  description = defaultValue(description, defaultValue.EMPTY_OBJECT);
@@ -18010,13 +18002,13 @@ define('Core/Tipsify',[
18010
18002
  var maximumIndex = description.maximumIndex;
18011
18003
  var cacheSize = defaultValue(description.cacheSize, 24);
18012
18004
 
18013
- if (!defined(indices)) {
18005
+ if (!defined(indices)) {
18014
18006
  throw new DeveloperError('indices is required.');
18015
18007
  }
18016
-
18008
+
18017
18009
  var numIndices = indices.length;
18018
18010
 
18019
- if (numIndices < 3 || numIndices % 3 !== 0) {
18011
+ if (numIndices < 3 || numIndices % 3 !== 0) {
18020
18012
  throw new DeveloperError('indices length must be a multiple of three.');
18021
18013
  }
18022
18014
  if (maximumIndex <= 0) {
@@ -18025,7 +18017,7 @@ define('Core/Tipsify',[
18025
18017
  if (cacheSize < 3) {
18026
18018
  throw new DeveloperError('cacheSize must be greater than two.');
18027
18019
  }
18028
-
18020
+
18029
18021
  // Compute the maximumIndex if not given
18030
18022
  if (!defined(maximumIndex)) {
18031
18023
  maximumIndex = 0;
@@ -18077,7 +18069,7 @@ define('Core/Tipsify',[
18077
18069
  * var indices = [0, 1, 2, 3, 4, 5];
18078
18070
  * var maxIndex = 5;
18079
18071
  * var cacheSize = 3;
18080
- * var reorderedIndices = Tipsify.tipsify({indices : indices, maxIndex : maxIndex, cacheSize : cacheSize});
18072
+ * var reorderedIndices = Cesium.Tipsify.tipsify({indices : indices, maxIndex : maxIndex, cacheSize : cacheSize});
18081
18073
  */
18082
18074
  Tipsify.tipsify = function(description) {
18083
18075
  description = defaultValue(description, defaultValue.EMPTY_OBJECT);
@@ -18133,12 +18125,13 @@ define('Core/Tipsify',[
18133
18125
  return n;
18134
18126
  }
18135
18127
 
18136
- if (!defined(indices)) {
18128
+ if (!defined(indices)) {
18137
18129
  throw new DeveloperError('indices is required.');
18138
18130
  }
18131
+
18139
18132
  var numIndices = indices.length;
18140
18133
 
18141
- if (numIndices < 3 || numIndices % 3 !== 0) {
18134
+ if (numIndices < 3 || numIndices % 3 !== 0) {
18142
18135
  throw new DeveloperError('indices length must be a multiple of three.');
18143
18136
  }
18144
18137
  if (maximumIndex <= 0) {
@@ -18147,7 +18140,7 @@ define('Core/Tipsify',[
18147
18140
  if (cacheSize < 3) {
18148
18141
  throw new DeveloperError('cacheSize must be greater than two.');
18149
18142
  }
18150
-
18143
+
18151
18144
  // Determine maximum index
18152
18145
  var maximumIndexPlusOne = 0;
18153
18146
  var currentIndex = 0;
@@ -18389,13 +18382,13 @@ define('Core/GeometryPipeline',[
18389
18382
  * @exception {DeveloperError} geometry.primitiveType must be TRIANGLES, TRIANGLE_STRIP, or TRIANGLE_FAN.
18390
18383
  *
18391
18384
  * @example
18392
- * geometry = GeometryPipeline.toWireframe(geometry);
18385
+ * geometry = Cesium.GeometryPipeline.toWireframe(geometry);
18393
18386
  */
18394
18387
  GeometryPipeline.toWireframe = function(geometry) {
18395
- if (!defined(geometry)) {
18388
+ if (!defined(geometry)) {
18396
18389
  throw new DeveloperError('geometry is required.');
18397
18390
  }
18398
-
18391
+
18399
18392
  var indices = geometry.indices;
18400
18393
  if (defined(indices)) {
18401
18394
  switch (geometry.primitiveType) {
@@ -18434,23 +18427,21 @@ define('Core/GeometryPipeline',[
18434
18427
  * @exception {DeveloperError} geometry.attributes must have an attribute with the same name as the attributeName parameter.
18435
18428
  *
18436
18429
  * @example
18437
- * var geometry = GeometryPipeline.createLineSegmentsForVectors(instance.geometry, 'binormal', 100000.0),
18430
+ * var geometry = Cesium.GeometryPipeline.createLineSegmentsForVectors(instance.geometry, 'binormal', 100000.0),
18438
18431
  */
18439
18432
  GeometryPipeline.createLineSegmentsForVectors = function(geometry, attributeName, length) {
18440
- if (!defined(geometry)) {
18433
+ attributeName = defaultValue(attributeName, 'normal');
18434
+
18435
+ if (!defined(geometry)) {
18441
18436
  throw new DeveloperError('geometry is required.');
18442
18437
  }
18443
-
18444
18438
  if (!defined(geometry.attributes.position)) {
18445
18439
  throw new DeveloperError('geometry.attributes.position is required.');
18446
18440
  }
18447
-
18448
- attributeName = defaultValue(attributeName, 'normal');
18449
-
18450
18441
  if (!defined(geometry.attributes[attributeName])) {
18451
18442
  throw new DeveloperError('geometry.attributes must have an attribute with the same name as the attributeName parameter, ' + attributeName + '.');
18452
18443
  }
18453
-
18444
+
18454
18445
  length = defaultValue(length, 10000.0);
18455
18446
 
18456
18447
  var positions = geometry.attributes.position.values;
@@ -18490,8 +18481,8 @@ define('Core/GeometryPipeline',[
18490
18481
  };
18491
18482
 
18492
18483
  /**
18493
- * Creates an object that maps attribute names to unique indices for matching
18494
- * vertex attributes and shader programs.
18484
+ * Creates an object that maps attribute names to unique locations (indices)
18485
+ * for matching vertex attributes and shader programs.
18495
18486
  *
18496
18487
  * @param {Geometry} geometry The geometry, which is not modified, to create the object for.
18497
18488
  *
@@ -18500,7 +18491,7 @@ define('Core/GeometryPipeline',[
18500
18491
  * @exception {DeveloperError} geometry is required.
18501
18492
  *
18502
18493
  * @example
18503
- * var attributeIndices = GeometryPipeline.createAttributeIndices(geometry);
18494
+ * var attributeLocations = Cesium.GeometryPipeline.createAttributeLocations(geometry);
18504
18495
  * // Example output
18505
18496
  * // {
18506
18497
  * // 'position' : 0,
@@ -18510,11 +18501,11 @@ define('Core/GeometryPipeline',[
18510
18501
  * @see Context#createVertexArrayFromGeometry
18511
18502
  * @see ShaderCache
18512
18503
  */
18513
- GeometryPipeline.createAttributeIndices = function(geometry) {
18514
- if (!defined(geometry)) {
18504
+ GeometryPipeline.createAttributeLocations = function(geometry) {
18505
+ if (!defined(geometry)) {
18515
18506
  throw new DeveloperError('geometry is required.');
18516
18507
  }
18517
-
18508
+
18518
18509
  // There can be a WebGL performance hit when attribute 0 is disabled, so
18519
18510
  // assign attribute locations to well-known attributes.
18520
18511
  var semantics = [
@@ -18574,15 +18565,15 @@ define('Core/GeometryPipeline',[
18574
18565
  * @exception {DeveloperError} Each attribute array in geometry.attributes must have the same number of attributes.
18575
18566
  *
18576
18567
  * @example
18577
- * geometry = GeometryPipeline.reorderForPreVertexCache(geometry);
18568
+ * geometry = Cesium.GeometryPipeline.reorderForPreVertexCache(geometry);
18578
18569
  *
18579
18570
  * @see GeometryPipeline.reorderForPostVertexCache
18580
18571
  */
18581
18572
  GeometryPipeline.reorderForPreVertexCache = function(geometry) {
18582
- if (!defined(geometry)) {
18573
+ if (!defined(geometry)) {
18583
18574
  throw new DeveloperError('geometry is required.');
18584
18575
  }
18585
-
18576
+
18586
18577
  var numVertices = Geometry.computeNumberOfVertices(geometry);
18587
18578
 
18588
18579
  var indices = geometry.indices;
@@ -18660,7 +18651,7 @@ define('Core/GeometryPipeline',[
18660
18651
  * @exception {DeveloperError} cacheCapacity must be greater than two.
18661
18652
  *
18662
18653
  * @example
18663
- * geometry = GeometryPipeline.reorderForPostVertexCache(geometry);
18654
+ * geometry = Cesium.GeometryPipeline.reorderForPostVertexCache(geometry);
18664
18655
  *
18665
18656
  * @see GeometryPipeline.reorderForPreVertexCache
18666
18657
  * @see <a href='http://gfx.cs.princeton.edu/pubs/Sander_2007_%3ETR/tipsy.pdf'>
@@ -18668,10 +18659,10 @@ define('Core/GeometryPipeline',[
18668
18659
  * by Sander, Nehab, and Barczak
18669
18660
  */
18670
18661
  GeometryPipeline.reorderForPostVertexCache = function(geometry, cacheCapacity) {
18671
- if (!defined(geometry)) {
18662
+ if (!defined(geometry)) {
18672
18663
  throw new DeveloperError('geometry is required.');
18673
18664
  }
18674
-
18665
+
18675
18666
  var indices = geometry.indices;
18676
18667
  if ((geometry.primitiveType === PrimitiveType.TRIANGLES) && (defined(indices))) {
18677
18668
  var numIndices = indices.length;
@@ -18744,20 +18735,19 @@ define('Core/GeometryPipeline',[
18744
18735
  * @exception {DeveloperError} All geometry attribute lists must have the same number of attributes.
18745
18736
  *
18746
18737
  * @example
18747
- * var geometries = GeometryPipeline.fitToUnsignedShortIndices(geometry);
18738
+ * var geometries = Cesium.GeometryPipeline.fitToUnsignedShortIndices(geometry);
18748
18739
  */
18749
18740
  GeometryPipeline.fitToUnsignedShortIndices = function(geometry) {
18750
- if (!defined(geometry)) {
18741
+ if (!defined(geometry)) {
18751
18742
  throw new DeveloperError('geometry is required.');
18752
18743
  }
18753
-
18754
18744
  if ((defined(geometry.indices)) &&
18755
18745
  ((geometry.primitiveType !== PrimitiveType.TRIANGLES) &&
18756
18746
  (geometry.primitiveType !== PrimitiveType.LINES) &&
18757
18747
  (geometry.primitiveType !== PrimitiveType.POINTS))) {
18758
18748
  throw new DeveloperError('geometry.primitiveType must equal to PrimitiveType.TRIANGLES, PrimitiveType.LINES, or PrimitiveType.POINTS.');
18759
18749
  }
18760
-
18750
+
18761
18751
  var geometries = [];
18762
18752
 
18763
18753
  // If there's an index list and more than 64K attributes, it is possible that
@@ -18853,34 +18843,29 @@ define('Core/GeometryPipeline',[
18853
18843
  * @exception {DeveloperError} Could not project a point to 2D.
18854
18844
  *
18855
18845
  * @example
18856
- * geometry = GeometryPipeline.projectTo2D(geometry, 'position', 'position3D', 'position2D');
18846
+ * geometry = Cesium.GeometryPipeline.projectTo2D(geometry, 'position', 'position3D', 'position2D');
18857
18847
  */
18858
18848
  GeometryPipeline.projectTo2D = function(geometry, attributeName, attributeName3D, attributeName2D, projection) {
18859
- if (!defined(geometry)) {
18849
+ if (!defined(geometry)) {
18860
18850
  throw new DeveloperError('geometry is required.');
18861
18851
  }
18862
-
18863
18852
  if (!defined(attributeName)) {
18864
18853
  throw new DeveloperError('attributeName is required.');
18865
18854
  }
18866
-
18867
18855
  if (!defined(attributeName3D)) {
18868
18856
  throw new DeveloperError('attributeName3D is required.');
18869
18857
  }
18870
-
18871
18858
  if (!defined(attributeName2D)) {
18872
18859
  throw new DeveloperError('attributeName2D is required.');
18873
18860
  }
18874
-
18875
- var attribute = geometry.attributes[attributeName];
18876
- if (!defined(attribute)) {
18861
+ if (!defined(geometry.attributes[attributeName])) {
18877
18862
  throw new DeveloperError('geometry must have attribute matching the attributeName argument: ' + attributeName + '.');
18878
18863
  }
18879
-
18880
- if (attribute.componentDatatype.value !== ComponentDatatype.DOUBLE.value) {
18864
+ if (geometry.attributes[attributeName].componentDatatype.value !== ComponentDatatype.DOUBLE.value) {
18881
18865
  throw new DeveloperError('The attribute componentDatatype must be ComponentDatatype.DOUBLE.');
18882
18866
  }
18883
-
18867
+
18868
+ var attribute = geometry.attributes[attributeName];
18884
18869
  projection = (defined(projection)) ? projection : new GeographicProjection();
18885
18870
  var ellipsoid = projection.getEllipsoid();
18886
18871
 
@@ -18945,37 +18930,31 @@ define('Core/GeometryPipeline',[
18945
18930
  * @exception {DeveloperError} The attribute componentDatatype must be ComponentDatatype.DOUBLE.
18946
18931
  *
18947
18932
  * @example
18948
- * geometry = GeometryPipeline.encodeAttribute(geometry, 'position3D', 'position3DHigh', 'position3DLow');
18933
+ * geometry = Cesium.GeometryPipeline.encodeAttribute(geometry, 'position3D', 'position3DHigh', 'position3DLow');
18949
18934
  *
18950
18935
  * @see EncodedCartesian3
18951
18936
  */
18952
18937
  GeometryPipeline.encodeAttribute = function(geometry, attributeName, attributeHighName, attributeLowName) {
18953
- if (!defined(geometry)) {
18938
+ if (!defined(geometry)) {
18954
18939
  throw new DeveloperError('geometry is required.');
18955
18940
  }
18956
-
18957
18941
  if (!defined(attributeName)) {
18958
18942
  throw new DeveloperError('attributeName is required.');
18959
18943
  }
18960
-
18961
18944
  if (!defined(attributeHighName)) {
18962
18945
  throw new DeveloperError('attributeHighName is required.');
18963
18946
  }
18964
-
18965
18947
  if (!defined(attributeLowName)) {
18966
18948
  throw new DeveloperError('attributeLowName is required.');
18967
18949
  }
18968
-
18969
- var attribute = geometry.attributes[attributeName];
18970
-
18971
- if (!defined(attribute)) {
18950
+ if (!defined(geometry.attributes[attributeName])) {
18972
18951
  throw new DeveloperError('geometry must have attribute matching the attributeName argument: ' + attributeName + '.');
18973
18952
  }
18974
-
18975
- if (attribute.componentDatatype.value !== ComponentDatatype.DOUBLE.value) {
18953
+ if (geometry.attributes[attributeName].componentDatatype.value !== ComponentDatatype.DOUBLE.value) {
18976
18954
  throw new DeveloperError('The attribute componentDatatype must be ComponentDatatype.DOUBLE.');
18977
18955
  }
18978
-
18956
+
18957
+ var attribute = geometry.attributes[attributeName];
18979
18958
  var values = attribute.values;
18980
18959
  var length = values.length;
18981
18960
  var highValues = new Float32Array(length);
@@ -19037,7 +19016,7 @@ define('Core/GeometryPipeline',[
19037
19016
  /**
19038
19017
  * Transforms a geometry instance to world coordinates. This is used as a prerequisite
19039
19018
  * to batch together several instances with {@link GeometryPipeline.combine}. This changes
19040
- * the instance's <code>modelMatrix</code> to {@see Matrix4.IDENTITY} and transforms the
19019
+ * the instance's <code>modelMatrix</code> to {@link Matrix4.IDENTITY} and transforms the
19041
19020
  * following attributes if they are present: <code>position</code>, <code>normal</code>,
19042
19021
  * <code>binormal</code>, and <code>tangent</code>.
19043
19022
  *
@@ -19049,17 +19028,17 @@ define('Core/GeometryPipeline',[
19049
19028
  *
19050
19029
  * @example
19051
19030
  * for (var i = 0; i < instances.length; ++i) {
19052
- * GeometryPipeline.transformToWorldCoordinates(instances[i]);
19031
+ * Cesium.GeometryPipeline.transformToWorldCoordinates(instances[i]);
19053
19032
  * }
19054
- * var geometry = GeometryPipeline.combine(instances);
19033
+ * var geometry = Cesium.GeometryPipeline.combine(instances);
19055
19034
  *
19056
19035
  * @see GeometryPipeline.combine
19057
19036
  */
19058
19037
  GeometryPipeline.transformToWorldCoordinates = function(instance) {
19059
- if (!defined(instance)) {
19038
+ if (!defined(instance)) {
19060
19039
  throw new DeveloperError('instance is required.');
19061
19040
  }
19062
-
19041
+
19063
19042
  var modelMatrix = instance.modelMatrix;
19064
19043
 
19065
19044
  if (Matrix4.equals(modelMatrix, Matrix4.IDENTITY)) {
@@ -19168,17 +19147,17 @@ define('Core/GeometryPipeline',[
19168
19147
  *
19169
19148
  * @example
19170
19149
  * for (var i = 0; i < instances.length; ++i) {
19171
- * GeometryPipeline.transformToWorldCoordinates(instances[i]);
19150
+ * Cesium.GeometryPipeline.transformToWorldCoordinates(instances[i]);
19172
19151
  * }
19173
- * var geometry = GeometryPipeline.combine(instances);
19152
+ * var geometry = Cesium.GeometryPipeline.combine(instances);
19174
19153
  *
19175
19154
  * @see GeometryPipeline.transformToWorldCoordinates
19176
19155
  */
19177
19156
  GeometryPipeline.combine = function(instances) {
19178
- if ((!defined(instances)) || (instances.length < 1)) {
19157
+ if ((!defined(instances)) || (instances.length < 1)) {
19179
19158
  throw new DeveloperError('instances is required and must have length greater than zero.');
19180
19159
  }
19181
-
19160
+
19182
19161
  var length = instances.length;
19183
19162
 
19184
19163
  var name;
@@ -19190,20 +19169,18 @@ define('Core/GeometryPipeline',[
19190
19169
  var haveIndices = (defined(instances[0].geometry.indices));
19191
19170
  var primitiveType = instances[0].geometry.primitiveType;
19192
19171
 
19193
- for (i = 1; i < length; ++i) {
19172
+ for (i = 1; i < length; ++i) {
19194
19173
  if (!Matrix4.equals(instances[i].modelMatrix, m)) {
19195
19174
  throw new DeveloperError('All instances must have the same modelMatrix.');
19196
19175
  }
19197
-
19198
19176
  if ((defined(instances[i].geometry.indices)) !== haveIndices) {
19199
19177
  throw new DeveloperError('All instance geometries must have an indices or not have one.');
19200
19178
  }
19201
-
19202
19179
  if (instances[i].geometry.primitiveType !== primitiveType) {
19203
19180
  throw new DeveloperError('All instance geometries must have the same primitiveType.');
19204
19181
  }
19205
19182
  }
19206
-
19183
+
19207
19184
  // Find subset of attributes in all geometries
19208
19185
  var attributes = findAttributesInAllGeometries(instances);
19209
19186
  var values;
@@ -19317,34 +19294,29 @@ define('Core/GeometryPipeline',[
19317
19294
  * @exception {DeveloperError} geometry.primitiveType must be {@link PrimitiveType.TRIANGLES}.
19318
19295
  *
19319
19296
  * @example
19320
- * GeometryPipeline.computeNormal(geometry);
19297
+ * Cesium.GeometryPipeline.computeNormal(geometry);
19321
19298
  */
19322
19299
  GeometryPipeline.computeNormal = function(geometry) {
19323
- if (!defined(geometry)) {
19300
+ if (!defined(geometry)) {
19324
19301
  throw new DeveloperError('geometry is required.');
19325
19302
  }
19326
-
19327
- var attributes = geometry.attributes;
19328
- var indices = geometry.indices;
19329
-
19330
- if (!defined(attributes.position) || !defined(attributes.position.values)) {
19303
+ if (!defined(geometry.attributes.position) || !defined(geometry.attributes.position.values)) {
19331
19304
  throw new DeveloperError('geometry.attributes.position.values is required.');
19332
19305
  }
19333
-
19334
- if (!defined(indices)) {
19306
+ if (!defined(geometry.indices)) {
19335
19307
  throw new DeveloperError('geometry.indices is required.');
19336
19308
  }
19337
-
19338
- if (indices.length < 2 || indices.length % 3 !== 0) {
19309
+ if (geometry.indices.length < 2 || geometry.indices.length % 3 !== 0) {
19339
19310
  throw new DeveloperError('geometry.indices length must be greater than 0 and be a multiple of 3.');
19340
19311
  }
19341
-
19342
19312
  if (geometry.primitiveType !== PrimitiveType.TRIANGLES) {
19343
19313
  throw new DeveloperError('geometry.primitiveType must be PrimitiveType.TRIANGLES.');
19344
19314
  }
19345
-
19346
- var vertices = geometry.attributes.position.values;
19347
- var numVertices = geometry.attributes.position.values.length / 3;
19315
+
19316
+ var indices = geometry.indices;
19317
+ var attributes = geometry.attributes;
19318
+ var vertices = attributes.position.values;
19319
+ var numVertices = attributes.position.values.length / 3;
19348
19320
  var numIndices = indices.length;
19349
19321
  var normalsPerVertex = new Array(numVertices);
19350
19322
  var normalsPerTriangle = new Array(numIndices / 3);
@@ -19469,40 +19441,35 @@ define('Core/GeometryPipeline',[
19469
19441
  * @exception {DeveloperError} geometry.primitiveType must be {@link PrimitiveType.TRIANGLES}.
19470
19442
  *
19471
19443
  * @example
19472
- * GeometryPipeline.computeBinormalAndTangent(geometry);
19444
+ * Cesium.GeometryPipeline.computeBinormalAndTangent(geometry);
19473
19445
  */
19474
19446
  GeometryPipeline.computeBinormalAndTangent = function(geometry) {
19475
- if (!defined(geometry)) {
19447
+ if (!defined(geometry)) {
19476
19448
  throw new DeveloperError('geometry is required.');
19477
19449
  }
19478
-
19450
+
19479
19451
  var attributes = geometry.attributes;
19480
19452
  var indices = geometry.indices;
19481
19453
 
19482
- if (!defined(attributes.position) || !defined(attributes.position.values)) {
19454
+ if (!defined(attributes.position) || !defined(attributes.position.values)) {
19483
19455
  throw new DeveloperError('geometry.attributes.position.values is required.');
19484
19456
  }
19485
-
19486
19457
  if (!defined(attributes.normal) || !defined(attributes.normal.values)) {
19487
19458
  throw new DeveloperError('geometry.attributes.normal.values is required.');
19488
19459
  }
19489
-
19490
19460
  if (!defined(attributes.st) || !defined(attributes.st.values)) {
19491
19461
  throw new DeveloperError('geometry.attributes.st.values is required.');
19492
19462
  }
19493
-
19494
19463
  if (!defined(indices)) {
19495
19464
  throw new DeveloperError('geometry.indices is required.');
19496
19465
  }
19497
-
19498
19466
  if (indices.length < 2 || indices.length % 3 !== 0) {
19499
19467
  throw new DeveloperError('geometry.indices length must be greater than 0 and be a multiple of 3.');
19500
19468
  }
19501
-
19502
19469
  if (geometry.primitiveType !== PrimitiveType.TRIANGLES) {
19503
19470
  throw new DeveloperError('geometry.primitiveType must be PrimitiveType.TRIANGLES.');
19504
19471
  }
19505
-
19472
+
19506
19473
  var vertices = geometry.attributes.position.values;
19507
19474
  var normals = geometry.attributes.normal.values;
19508
19475
  var st = geometry.attributes.st.values;
@@ -19600,16 +19567,15 @@ define('Core/GeometryPipeline',[
19600
19567
  if (defined(geometry.indices)) {
19601
19568
  return geometry;
19602
19569
  }
19603
-
19604
19570
  var numberOfVertices = Geometry.computeNumberOfVertices(geometry);
19605
- if (numberOfVertices < 3) {
19571
+
19572
+ if (numberOfVertices < 3) {
19606
19573
  throw new DeveloperError('The number of vertices must be at least three.');
19607
19574
  }
19608
-
19609
19575
  if (numberOfVertices % 3 !== 0) {
19610
19576
  throw new DeveloperError('The number of vertices must be a multiple of three.');
19611
19577
  }
19612
-
19578
+
19613
19579
  var indices = IndexDatatype.createTypedArray(numberOfVertices, numberOfVertices);
19614
19580
  for (var i = 0; i < numberOfVertices; ++i) {
19615
19581
  indices[i] = i;
@@ -19621,10 +19587,11 @@ define('Core/GeometryPipeline',[
19621
19587
 
19622
19588
  function indexTriangleFan(geometry) {
19623
19589
  var numberOfVertices = Geometry.computeNumberOfVertices(geometry);
19624
- if (numberOfVertices < 3) {
19590
+
19591
+ if (numberOfVertices < 3) {
19625
19592
  throw new DeveloperError('The number of vertices must be at least three.');
19626
19593
  }
19627
-
19594
+
19628
19595
  var indices = IndexDatatype.createTypedArray(numberOfVertices, (numberOfVertices - 2) * 3);
19629
19596
  indices[0] = 1;
19630
19597
  indices[1] = 0;
@@ -19644,10 +19611,11 @@ define('Core/GeometryPipeline',[
19644
19611
 
19645
19612
  function indexTriangleStrip(geometry) {
19646
19613
  var numberOfVertices = Geometry.computeNumberOfVertices(geometry);
19647
- if (numberOfVertices < 3) {
19614
+
19615
+ if (numberOfVertices < 3) {
19648
19616
  throw new DeveloperError('The number of vertices must be at least 3.');
19649
19617
  }
19650
-
19618
+
19651
19619
  var indices = IndexDatatype.createTypedArray(numberOfVertices, (numberOfVertices - 2) * 3);
19652
19620
  indices[0] = 0;
19653
19621
  indices[1] = 1;
@@ -19681,16 +19649,15 @@ define('Core/GeometryPipeline',[
19681
19649
  if (defined(geometry.indices)) {
19682
19650
  return geometry;
19683
19651
  }
19684
-
19685
19652
  var numberOfVertices = Geometry.computeNumberOfVertices(geometry);
19686
- if (numberOfVertices < 2) {
19653
+
19654
+ if (numberOfVertices < 2) {
19687
19655
  throw new DeveloperError('The number of vertices must be at least two.');
19688
19656
  }
19689
-
19690
19657
  if (numberOfVertices % 2 !== 0) {
19691
19658
  throw new DeveloperError('The number of vertices must be a multiple of 2.');
19692
19659
  }
19693
-
19660
+
19694
19661
  var indices = IndexDatatype.createTypedArray(numberOfVertices, numberOfVertices);
19695
19662
  for (var i = 0; i < numberOfVertices; ++i) {
19696
19663
  indices[i] = i;
@@ -19702,14 +19669,14 @@ define('Core/GeometryPipeline',[
19702
19669
 
19703
19670
  function indexLineStrip(geometry) {
19704
19671
  var numberOfVertices = Geometry.computeNumberOfVertices(geometry);
19705
- if (numberOfVertices < 2) {
19672
+
19673
+ if (numberOfVertices < 2) {
19706
19674
  throw new DeveloperError('The number of vertices must be at least two.');
19707
19675
  }
19676
+
19708
19677
  var indices = IndexDatatype.createTypedArray(numberOfVertices, (numberOfVertices - 1) * 2);
19709
-
19710
19678
  indices[0] = 0;
19711
19679
  indices[1] = 1;
19712
-
19713
19680
  var indicesIndex = 2;
19714
19681
  for (var i = 2; i < numberOfVertices; ++i) {
19715
19682
  indices[indicesIndex++] = i - 1;
@@ -19723,10 +19690,11 @@ define('Core/GeometryPipeline',[
19723
19690
 
19724
19691
  function indexLineLoop(geometry) {
19725
19692
  var numberOfVertices = Geometry.computeNumberOfVertices(geometry);
19726
- if (numberOfVertices < 2) {
19693
+
19694
+ if (numberOfVertices < 2) {
19727
19695
  throw new DeveloperError('The number of vertices must be at least two.');
19728
19696
  }
19729
-
19697
+
19730
19698
  var indices = IndexDatatype.createTypedArray(numberOfVertices, numberOfVertices * 2);
19731
19699
 
19732
19700
  indices[0] = 0;
@@ -20155,13 +20123,13 @@ define('Core/GeometryPipeline',[
20155
20123
  * @exception {DeveloperError} geometry is required.
20156
20124
  *
20157
20125
  * @example
20158
- * geometry = GeometryPipeline.wrapLongitude(geometry);
20126
+ * geometry = Cesium.GeometryPipeline.wrapLongitude(geometry);
20159
20127
  */
20160
20128
  GeometryPipeline.wrapLongitude = function(geometry) {
20161
- if (!defined(geometry)) {
20129
+ if (!defined(geometry)) {
20162
20130
  throw new DeveloperError('geometry is required.');
20163
20131
  }
20164
-
20132
+
20165
20133
  var boundingSphere = geometry.boundingSphere;
20166
20134
  if (defined(boundingSphere)) {
20167
20135
  var minX = boundingSphere.center.x - boundingSphere.radius;
@@ -20287,12 +20255,10 @@ define('Core/PolygonGeometryLibrary',[
20287
20255
  /*global define*/
20288
20256
  define('Core/pointInsideTriangle',[
20289
20257
  './barycentricCoordinates',
20290
- './Cartesian3',
20291
- './DeveloperError'
20258
+ './Cartesian3'
20292
20259
  ], function(
20293
20260
  barycentricCoordinates,
20294
- Cartesian3,
20295
- DeveloperError) {
20261
+ Cartesian3) {
20296
20262
  "use strict";
20297
20263
 
20298
20264
  var coords = new Cartesian3();
@@ -20313,11 +20279,11 @@ define('Core/pointInsideTriangle',[
20313
20279
  *
20314
20280
  * @example
20315
20281
  * // Returns true
20316
- * var p = new Cartesian2(0.25, 0.25);
20317
- * var b = pointInsideTriangle(p,
20318
- * new Cartesian2(0.0, 0.0),
20319
- * new Cartesian2(1.0, 0.0),
20320
- * new Cartesian2(0.0, 1.0));
20282
+ * var p = new Cesium.Cartesian2(0.25, 0.25);
20283
+ * var b = Cesium.pointInsideTriangle(p,
20284
+ * new Cesium.Cartesian2(0.0, 0.0),
20285
+ * new Cesium.Cartesian2(1.0, 0.0),
20286
+ * new Cesium.Cartesian2(0.0, 1.0));
20321
20287
  */
20322
20288
  var pointInsideTriangle = function(point, p0, p1, p2) {
20323
20289
  barycentricCoordinates(point, p0, p1, p2, coords);
@@ -21259,14 +21225,14 @@ define('Core/PolygonPipeline',[
21259
21225
  * @exception {DeveloperError} At least three positions are required.
21260
21226
  */
21261
21227
  removeDuplicates : function(positions) {
21262
- if (!defined(positions)) {
21228
+ if (!defined(positions)) {
21263
21229
  throw new DeveloperError('positions is required.');
21264
21230
  }
21265
-
21266
- var length = positions.length;
21267
- if (length < 3) {
21231
+ if (positions.length < 3) {
21268
21232
  throw new DeveloperError('At least three positions are required.');
21269
21233
  }
21234
+
21235
+ var length = positions.length;
21270
21236
 
21271
21237
  var cleanedPositions = [];
21272
21238
 
@@ -21289,15 +21255,14 @@ define('Core/PolygonPipeline',[
21289
21255
  * @exception {DeveloperError} At least three positions are required.
21290
21256
  */
21291
21257
  computeArea2D : function(positions) {
21292
- if (!defined(positions)) {
21258
+ if (!defined(positions)) {
21293
21259
  throw new DeveloperError('positions is required.');
21294
21260
  }
21295
-
21296
- var length = positions.length;
21297
- if (length < 3) {
21261
+ if (positions.length < 3) {
21298
21262
  throw new DeveloperError('At least three positions are required.');
21299
21263
  }
21300
-
21264
+
21265
+ var length = positions.length;
21301
21266
  var area = 0.0;
21302
21267
 
21303
21268
  for ( var i0 = length - 1, i1 = 0; i1 < length; i0 = i1++) {
@@ -21333,15 +21298,14 @@ define('Core/PolygonPipeline',[
21333
21298
  * @exception {DeveloperError} At least three positions are required.
21334
21299
  */
21335
21300
  triangulate : function(positions) {
21336
- if (!defined(positions)) {
21301
+ if (!defined(positions)) {
21337
21302
  throw new DeveloperError('positions is required.');
21338
21303
  }
21339
-
21340
- var length = positions.length;
21341
- if (length < 3) {
21304
+ if (positions.length < 3) {
21342
21305
  throw new DeveloperError('At least three positions are required.');
21343
21306
  }
21344
-
21307
+
21308
+ var length = positions.length;
21345
21309
  // Keep track of indices for later
21346
21310
  var nodeArray = [];
21347
21311
  for ( var i = 0; i < length; ++i) {
@@ -21378,27 +21342,24 @@ define('Core/PolygonPipeline',[
21378
21342
  * @exception {DeveloperError} Granularity must be greater than zero.
21379
21343
  */
21380
21344
  computeSubdivision : function(positions, indices, granularity) {
21381
- if (!defined(positions)) {
21345
+ granularity = defaultValue(granularity, CesiumMath.RADIANS_PER_DEGREE);
21346
+
21347
+ if (!defined(positions)) {
21382
21348
  throw new DeveloperError('positions is required.');
21383
21349
  }
21384
-
21385
21350
  if (!defined(indices)) {
21386
21351
  throw new DeveloperError('indices is required.');
21387
21352
  }
21388
-
21389
21353
  if (indices.length < 3) {
21390
21354
  throw new DeveloperError('At least three indices are required.');
21391
21355
  }
21392
-
21393
21356
  if (indices.length % 3 !== 0) {
21394
21357
  throw new DeveloperError('The number of indices must be divisable by three.');
21395
21358
  }
21396
-
21397
- granularity = defaultValue(granularity, CesiumMath.RADIANS_PER_DEGREE);
21398
21359
  if (granularity <= 0.0) {
21399
21360
  throw new DeveloperError('granularity must be greater than zero.');
21400
21361
  }
21401
-
21362
+
21402
21363
  // Use a queue for triangles that need (or might need) to be subdivided.
21403
21364
  var triangles = new Queue();
21404
21365
 
@@ -21594,11 +21555,11 @@ define('Core/PolygonPipeline',[
21594
21555
  *
21595
21556
  * @example
21596
21557
  * // Simplifying a polygon with multiple holes.
21597
- * outerRing = PolygonPipeline.eliminateHoles(outerRing, innerRings);
21558
+ * outerRing = Cesium.PolygonPipeline.eliminateHoles(outerRing, innerRings);
21598
21559
  * polygon.setPositions(outerRing);
21599
21560
  */
21600
21561
  eliminateHoles : function(outerRing, innerRings, ellipsoid) {
21601
- if (!defined(outerRing)) {
21562
+ if (!defined(outerRing)) {
21602
21563
  throw new DeveloperError('outerRing is required.');
21603
21564
  }
21604
21565
  if (outerRing.length === 0) {
@@ -21607,6 +21568,7 @@ define('Core/PolygonPipeline',[
21607
21568
  if (!defined(innerRings)) {
21608
21569
  throw new DeveloperError('innerRings is required.');
21609
21570
  }
21571
+
21610
21572
  ellipsoid = defaultValue(ellipsoid, Ellipsoid.WGS84);
21611
21573
 
21612
21574
  var innerRingsCopy = [];
@@ -21677,10 +21639,11 @@ define('Core/PolygonOutlineGeometry',[
21677
21639
 
21678
21640
  function createGeometryFromPositions(ellipsoid, positions, granularity, perPositionHeight) {
21679
21641
  var cleanedPositions = PolygonPipeline.removeDuplicates(positions);
21680
- if (cleanedPositions.length < 3) {
21642
+
21643
+ if (cleanedPositions.length < 3) {
21681
21644
  throw new DeveloperError('Duplicate positions result in not enough positions to form a polygon.');
21682
21645
  }
21683
-
21646
+
21684
21647
  var tangentPlane = EllipsoidTangentPlane.fromPoints(cleanedPositions, ellipsoid);
21685
21648
  var positions2D = tangentPlane.projectPointsOntoPlane(cleanedPositions, createGeometryFromPositionsPositions);
21686
21649
 
@@ -21737,10 +21700,11 @@ define('Core/PolygonOutlineGeometry',[
21737
21700
 
21738
21701
  function createGeometryFromPositionsExtruded(ellipsoid, positions, granularity, perPositionHeight) {
21739
21702
  var cleanedPositions = PolygonPipeline.removeDuplicates(positions);
21740
- if (cleanedPositions.length < 3) {
21703
+
21704
+ if (cleanedPositions.length < 3) {
21741
21705
  throw new DeveloperError('Duplicate positions result in not enough positions to form a polygon.');
21742
21706
  }
21743
-
21707
+
21744
21708
  var tangentPlane = EllipsoidTangentPlane.fromPoints(cleanedPositions, ellipsoid);
21745
21709
  var positions2D = tangentPlane.projectPointsOntoPlane(cleanedPositions, createGeometryFromPositionsPositions);
21746
21710
 
@@ -21833,48 +21797,48 @@ define('Core/PolygonOutlineGeometry',[
21833
21797
  *
21834
21798
  * @example
21835
21799
  * // 1. create a polygon outline from points
21836
- * var polygon = new PolygonOutlineGeometry({
21800
+ * var polygon = new Cesium.PolygonOutlineGeometry({
21837
21801
  * polygonHierarchy : {
21838
21802
  * positions : ellipsoid.cartographicArrayToCartesianArray([
21839
- * Cartographic.fromDegrees(-72.0, 40.0),
21840
- * Cartographic.fromDegrees(-70.0, 35.0),
21841
- * Cartographic.fromDegrees(-75.0, 30.0),
21842
- * Cartographic.fromDegrees(-70.0, 30.0),
21843
- * Cartographic.fromDegrees(-68.0, 40.0)
21803
+ * Cesium.Cartographic.fromDegrees(-72.0, 40.0),
21804
+ * Cesium.Cartographic.fromDegrees(-70.0, 35.0),
21805
+ * Cesium.Cartographic.fromDegrees(-75.0, 30.0),
21806
+ * Cesium.Cartographic.fromDegrees(-70.0, 30.0),
21807
+ * Cesium.Cartographic.fromDegrees(-68.0, 40.0)
21844
21808
  * ])
21845
21809
  * }
21846
21810
  * });
21847
- * var geometry = PolygonOutlineGeometry.createGeometry(polygon);
21811
+ * var geometry = Cesium.PolygonOutlineGeometry.createGeometry(polygon);
21848
21812
  *
21849
21813
  * // 2. create a nested polygon with holes outline
21850
- * var polygonWithHole = new PolygonOutlineGeometry({
21814
+ * var polygonWithHole = new Cesium.PolygonOutlineGeometry({
21851
21815
  * polygonHierarchy : {
21852
21816
  * positions : ellipsoid.cartographicArrayToCartesianArray([
21853
- * Cartographic.fromDegrees(-109.0, 30.0),
21854
- * Cartographic.fromDegrees(-95.0, 30.0),
21855
- * Cartographic.fromDegrees(-95.0, 40.0),
21856
- * Cartographic.fromDegrees(-109.0, 40.0)
21817
+ * Cesium.Cartographic.fromDegrees(-109.0, 30.0),
21818
+ * Cesium.Cartographic.fromDegrees(-95.0, 30.0),
21819
+ * Cesium.Cartographic.fromDegrees(-95.0, 40.0),
21820
+ * Cesium.Cartographic.fromDegrees(-109.0, 40.0)
21857
21821
  * ]),
21858
21822
  * holes : [{
21859
21823
  * positions : ellipsoid.cartographicArrayToCartesianArray([
21860
- * Cartographic.fromDegrees(-107.0, 31.0),
21861
- * Cartographic.fromDegrees(-107.0, 39.0),
21862
- * Cartographic.fromDegrees(-97.0, 39.0),
21863
- * Cartographic.fromDegrees(-97.0, 31.0)
21824
+ * Cesium.Cartographic.fromDegrees(-107.0, 31.0),
21825
+ * Cesium.Cartographic.fromDegrees(-107.0, 39.0),
21826
+ * Cesium.Cartographic.fromDegrees(-97.0, 39.0),
21827
+ * Cesium.Cartographic.fromDegrees(-97.0, 31.0)
21864
21828
  * ]),
21865
21829
  * holes : [{
21866
21830
  * positions : ellipsoid.cartographicArrayToCartesianArray([
21867
- * Cartographic.fromDegrees(-105.0, 33.0),
21868
- * Cartographic.fromDegrees(-99.0, 33.0),
21869
- * Cartographic.fromDegrees(-99.0, 37.0),
21870
- * Cartographic.fromDegrees(-105.0, 37.0)
21831
+ * Cesium.Cartographic.fromDegrees(-105.0, 33.0),
21832
+ * Cesium.Cartographic.fromDegrees(-99.0, 33.0),
21833
+ * Cesium.Cartographic.fromDegrees(-99.0, 37.0),
21834
+ * Cesium.Cartographic.fromDegrees(-105.0, 37.0)
21871
21835
  * ]),
21872
21836
  * holes : [{
21873
21837
  * positions : ellipsoid.cartographicArrayToCartesianArray([
21874
- * Cartographic.fromDegrees(-103.0, 34.0),
21875
- * Cartographic.fromDegrees(-101.0, 34.0),
21876
- * Cartographic.fromDegrees(-101.0, 36.0),
21877
- * Cartographic.fromDegrees(-103.0, 36.0)
21838
+ * Cesium.Cartographic.fromDegrees(-103.0, 34.0),
21839
+ * Cesium.Cartographic.fromDegrees(-101.0, 34.0),
21840
+ * Cesium.Cartographic.fromDegrees(-101.0, 36.0),
21841
+ * Cesium.Cartographic.fromDegrees(-103.0, 36.0)
21878
21842
  * ])
21879
21843
  * }]
21880
21844
  * }]
@@ -21912,12 +21876,12 @@ define('Core/PolygonOutlineGeometry',[
21912
21876
  extrudedHeight = Math.min(h, height);
21913
21877
  height = Math.max(h, height);
21914
21878
  }
21915
-
21916
21879
  var polygonHierarchy = options.polygonHierarchy;
21917
- if (!defined(polygonHierarchy)) {
21880
+
21881
+ if (!defined(polygonHierarchy)) {
21918
21882
  throw new DeveloperError('options.polygonHierarchy is required.');
21919
21883
  }
21920
-
21884
+
21921
21885
  this._ellipsoid = ellipsoid;
21922
21886
  this._granularity = granularity;
21923
21887
  this._height = height;
@@ -21946,24 +21910,24 @@ define('Core/PolygonOutlineGeometry',[
21946
21910
  *
21947
21911
  * @example
21948
21912
  * // create a polygon from points
21949
- * var polygon = PolygonOutlineGeometry.fromPositions({
21913
+ * var polygon = Cesium.PolygonOutlineGeometry.fromPositions({
21950
21914
  * positions : ellipsoid.cartographicArrayToCartesianArray([
21951
- * Cartographic.fromDegrees(-72.0, 40.0),
21952
- * Cartographic.fromDegrees(-70.0, 35.0),
21953
- * Cartographic.fromDegrees(-75.0, 30.0),
21954
- * Cartographic.fromDegrees(-70.0, 30.0),
21955
- * Cartographic.fromDegrees(-68.0, 40.0)
21915
+ * Cesium.Cartographic.fromDegrees(-72.0, 40.0),
21916
+ * Cesium.Cartographic.fromDegrees(-70.0, 35.0),
21917
+ * Cesium.Cartographic.fromDegrees(-75.0, 30.0),
21918
+ * Cesium.Cartographic.fromDegrees(-70.0, 30.0),
21919
+ * Cesium.Cartographic.fromDegrees(-68.0, 40.0)
21956
21920
  * ])
21957
21921
  * });
21958
- * var geometry = PolygonOutlineGeometry.createGeometry(polygon);
21922
+ * var geometry = Cesium.PolygonOutlineGeometry.createGeometry(polygon);
21959
21923
  */
21960
21924
  PolygonOutlineGeometry.fromPositions = function(options) {
21961
21925
  options = defaultValue(options, defaultValue.EMPTY_OBJECT);
21962
21926
 
21963
- if (!defined(options.positions)) {
21927
+ if (!defined(options.positions)) {
21964
21928
  throw new DeveloperError('options.positions is required.');
21965
21929
  }
21966
-
21930
+
21967
21931
  var newOptions = {
21968
21932
  polygonHierarchy : {
21969
21933
  positions : options.positions
@@ -22199,7 +22163,7 @@ define('Core/Color',[
22199
22163
  * @returns {Color} A new color instance.
22200
22164
  *
22201
22165
  * @example
22202
- * var color = Color.fromRgba(0x67ADDFFF);
22166
+ * var color = Cesium.Color.fromRgba(0x67ADDFFF);
22203
22167
  *
22204
22168
  * @see Color#toRgba
22205
22169
  */
@@ -22277,17 +22241,17 @@ define('Core/Color',[
22277
22241
  *
22278
22242
  * @example
22279
22243
  * //Create a completely random color
22280
- * var color = Color.fromRandom();
22244
+ * var color = Cesium.Color.fromRandom();
22281
22245
  *
22282
22246
  * //Create a random shade of yellow.
22283
- * var color = Color.fromRandom({
22247
+ * var color = Cesium.Color.fromRandom({
22284
22248
  * red : 1.0,
22285
22249
  * green : 1.0,
22286
22250
  * alpha : 1.0
22287
22251
  * });
22288
22252
  *
22289
22253
  * //Create a random bright color.
22290
- * var color = Color.fromRandom({
22254
+ * var color = Cesium.Color.fromRandom({
22291
22255
  * minimumRed : 0.75,
22292
22256
  * minimumGreen : 0.75,
22293
22257
  * minimumBlue : 0.75,
@@ -22302,9 +22266,10 @@ define('Core/Color',[
22302
22266
  var minimumRed = defaultValue(options.minimumRed, 0);
22303
22267
  var maximumRed = defaultValue(options.maximumRed, 1.0);
22304
22268
 
22305
- if (minimumRed > maximumRed) {
22269
+ if (minimumRed > maximumRed) {
22306
22270
  throw new DeveloperError("minimumRed must be less than or equal to maximumRed");
22307
22271
  }
22272
+
22308
22273
  red = minimumRed + (CesiumMath.nextRandomNumber() * (maximumRed - minimumRed));
22309
22274
  }
22310
22275
 
@@ -22313,9 +22278,10 @@ define('Core/Color',[
22313
22278
  var minimumGreen = defaultValue(options.minimumGreen, 0);
22314
22279
  var maximumGreen = defaultValue(options.maximumGreen, 1.0);
22315
22280
 
22316
- if (minimumGreen > maximumGreen) {
22281
+ if (minimumGreen > maximumGreen) {
22317
22282
  throw new DeveloperError("minimumGreen must be less than or equal to maximumGreen");
22318
22283
  }
22284
+
22319
22285
  green = minimumGreen + (CesiumMath.nextRandomNumber() * (maximumGreen - minimumGreen));
22320
22286
  }
22321
22287
 
@@ -22324,9 +22290,10 @@ define('Core/Color',[
22324
22290
  var minimumBlue = defaultValue(options.minimumBlue, 0);
22325
22291
  var maximumBlue = defaultValue(options.maximumBlue, 1.0);
22326
22292
 
22327
- if (minimumBlue > maximumBlue) {
22293
+ if (minimumBlue > maximumBlue) {
22328
22294
  throw new DeveloperError("minimumBlue must be less than or equal to maximumBlue");
22329
22295
  }
22296
+
22330
22297
  blue = minimumBlue + (CesiumMath.nextRandomNumber() * (maximumBlue - minimumBlue));
22331
22298
  }
22332
22299
 
@@ -22335,9 +22302,10 @@ define('Core/Color',[
22335
22302
  var minimumAlpha = defaultValue(options.minimumAlpha, 0);
22336
22303
  var maximumAlpha = defaultValue(options.maximumAlpha, 1.0);
22337
22304
 
22338
- if (minimumAlpha > maximumAlpha) {
22305
+ if (minimumAlpha > maximumAlpha) {
22339
22306
  throw new DeveloperError("minimumAlpha must be less than or equal to maximumAlpha");
22340
22307
  }
22308
+
22341
22309
  alpha = minimumAlpha + (CesiumMath.nextRandomNumber() * (maximumAlpha - minimumAlpha));
22342
22310
  }
22343
22311
 
@@ -22371,16 +22339,16 @@ define('Core/Color',[
22371
22339
  * @exception {DeveloperError} color is required.
22372
22340
  *
22373
22341
  * @example
22374
- * var cesiumBlue = Color.fromCssColorString('#67ADDF');
22375
- * var green = Color.fromCssColorString('green');
22342
+ * var cesiumBlue = Cesium.Color.fromCssColorString('#67ADDF');
22343
+ * var green = Cesium.Color.fromCssColorString('green');
22376
22344
  *
22377
22345
  * @see <a href="http://www.w3.org/TR/css3-color">CSS color values</a>
22378
22346
  */
22379
22347
  Color.fromCssColorString = function(color) {
22380
- if (!defined(color)) {
22348
+ if (!defined(color)) {
22381
22349
  throw new DeveloperError('color is required');
22382
22350
  }
22383
-
22351
+
22384
22352
  var namedColor = Color[color.toUpperCase()];
22385
22353
  if (defined(namedColor)) {
22386
22354
  return Color.clone(namedColor);
@@ -22437,16 +22405,14 @@ define('Core/Color',[
22437
22405
  * @exception {DeveloperError} array is required.
22438
22406
  */
22439
22407
  Color.pack = function(value, array, startingIndex) {
22440
- if (!defined(value)) {
22408
+ if (!defined(value)) {
22441
22409
  throw new DeveloperError('value is required');
22442
22410
  }
22443
-
22444
22411
  if (!defined(array)) {
22445
22412
  throw new DeveloperError('array is required');
22446
22413
  }
22447
-
22414
+
22448
22415
  startingIndex = defaultValue(startingIndex, 0);
22449
-
22450
22416
  array[startingIndex++] = value.red;
22451
22417
  array[startingIndex++] = value.green;
22452
22418
  array[startingIndex++] = value.blue;
@@ -22464,12 +22430,11 @@ define('Core/Color',[
22464
22430
  * @exception {DeveloperError} array is required.
22465
22431
  */
22466
22432
  Color.unpack = function(array, startingIndex, result) {
22467
- if (!defined(array)) {
22433
+ if (!defined(array)) {
22468
22434
  throw new DeveloperError('array is required');
22469
22435
  }
22470
-
22436
+
22471
22437
  startingIndex = defaultValue(startingIndex, 0);
22472
-
22473
22438
  if (!defined(result)) {
22474
22439
  result = new Color();
22475
22440
  }
@@ -22643,7 +22608,7 @@ define('Core/Color',[
22643
22608
  * @returns {Number} A single numeric unsigned 32-bit RGBA value.
22644
22609
  *
22645
22610
  * @example
22646
- * var rgba = Color.BLUE.toRgba();
22611
+ * var rgba = Cesium.Color.BLUE.toRgba();
22647
22612
  *
22648
22613
  * @see Color.fromRgba
22649
22614
  */
@@ -24141,12 +24106,13 @@ define('Scene/PrimitivePipeline',[
24141
24106
  var i;
24142
24107
  var length = instances.length;
24143
24108
  var primitiveType = instances[0].geometry.primitiveType;
24144
- for (i = 1; i < length; ++i) {
24109
+
24110
+ for (i = 1; i < length; ++i) {
24145
24111
  if (instances[i].geometry.primitiveType !== primitiveType) {
24146
24112
  throw new DeveloperError('All instance geometries must have the same primitiveType.');
24147
24113
  }
24148
24114
  }
24149
-
24115
+
24150
24116
  // Unify to world coordinates before combining.
24151
24117
  transformToWorldCoordinates(instances, modelMatrix, allow3DOnly);
24152
24118
 
@@ -24210,7 +24176,7 @@ define('Scene/PrimitivePipeline',[
24210
24176
  return [geometry];
24211
24177
  }
24212
24178
 
24213
- function createPerInstanceVAAttributes(geometry, attributeIndices, names) {
24179
+ function createPerInstanceVAAttributes(geometry, attributeLocations, names) {
24214
24180
  var vaAttributes = [];
24215
24181
  var attributes = geometry.attributes;
24216
24182
 
@@ -24226,7 +24192,7 @@ define('Scene/PrimitivePipeline',[
24226
24192
 
24227
24193
  var typedArray = ComponentDatatype.createTypedArray(componentDatatype, attribute.values);
24228
24194
  vaAttributes.push({
24229
- index : attributeIndices[name],
24195
+ index : attributeLocations[name],
24230
24196
  componentDatatype : componentDatatype,
24231
24197
  componentsPerAttribute : attribute.componentsPerAttribute,
24232
24198
  normalize : attribute.normalize,
@@ -24239,7 +24205,7 @@ define('Scene/PrimitivePipeline',[
24239
24205
  return vaAttributes;
24240
24206
  }
24241
24207
 
24242
- function computePerInstanceAttributeIndices(instances, vertexArrays, attributeIndices) {
24208
+ function computePerInstanceAttributeLocations(instances, vertexArrays, attributeLocations) {
24243
24209
  var indices = [];
24244
24210
 
24245
24211
  var names = getCommonPerInstanceAttributeNames(instances);
@@ -24254,7 +24220,7 @@ define('Scene/PrimitivePipeline',[
24254
24220
  var namesLength = names.length;
24255
24221
  for (var j = 0; j < namesLength; ++j) {
24256
24222
  var name = names[j];
24257
- var index = attributeIndices[name];
24223
+ var index = attributeLocations[name];
24258
24224
 
24259
24225
  var tempVertexCount = numberOfVertices;
24260
24226
  while (tempVertexCount > 0) {
@@ -24334,7 +24300,7 @@ define('Scene/PrimitivePipeline',[
24334
24300
  modelMatrix : Matrix4.clone(parameters.modelMatrix)
24335
24301
  };
24336
24302
  var geometries = geometryPipeline(clonedParameters);
24337
- var attributeIndices = GeometryPipeline.createAttributeIndices(geometries[0]);
24303
+ var attributeLocations = GeometryPipeline.createAttributeLocations(geometries[0]);
24338
24304
 
24339
24305
  var instances = clonedParameters.instances;
24340
24306
  var perInstanceAttributeNames = getCommonPerInstanceAttributeNames(instances);
@@ -24343,17 +24309,17 @@ define('Scene/PrimitivePipeline',[
24343
24309
  var length = geometries.length;
24344
24310
  for (var i = 0; i < length; ++i) {
24345
24311
  var geometry = geometries[i];
24346
- perInstanceAttributes.push(createPerInstanceVAAttributes(geometry, attributeIndices, perInstanceAttributeNames));
24312
+ perInstanceAttributes.push(createPerInstanceVAAttributes(geometry, attributeLocations, perInstanceAttributeNames));
24347
24313
  }
24348
24314
 
24349
- var indices = computePerInstanceAttributeIndices(instances, perInstanceAttributes, attributeIndices);
24315
+ var indices = computePerInstanceAttributeLocations(instances, perInstanceAttributes, attributeLocations);
24350
24316
 
24351
24317
  return {
24352
24318
  geometries : geometries,
24353
24319
  modelMatrix : clonedParameters.modelMatrix,
24354
- attributeIndices : attributeIndices,
24320
+ attributeLocations : attributeLocations,
24355
24321
  vaAttributes : perInstanceAttributes,
24356
- vaAttributeIndices : indices
24322
+ vaAttributeLocations : indices
24357
24323
  };
24358
24324
  };
24359
24325
 
@@ -24538,7 +24504,7 @@ define('Workers/createTaskProcessorWorker',[
24538
24504
  * return result;
24539
24505
  * }
24540
24506
  *
24541
- * return createTaskProcessorWorker(doCalculation);
24507
+ * return Cesium.createTaskProcessorWorker(doCalculation);
24542
24508
  * // the resulting function is compatible with TaskProcessor
24543
24509
  *
24544
24510
  * @see TaskProcessor