app/assets/javascripts/Core/SphereGeometry.js in cesium-0.24.1 vs app/assets/javascripts/Core/SphereGeometry.js in cesium-0.25.0

- old
+ new

@@ -20,14 +20,14 @@ * @exception {DeveloperError} options.stackPartitions cannot be less than three. * * @see SphereGeometry#createGeometry * * @example - * var sphere = new SphereGeometry({ + * var sphere = new Cesium.SphereGeometry({ * radius : 100.0, - * vertexFormat : VertexFormat.POSITION_ONLY + * vertexFormat : Cesium.VertexFormat.POSITION_ONLY * }); - * var geometry = SphereGeometry.createGeometry(sphere); + * var geometry = Cesium.SphereGeometry.createGeometry(sphere); */ var SphereGeometry = function(options) { var radius = defaultValue(options.radius, 1.0); var radii = new Cartesian3(radius, radius, radius); var ellipsoidOptions = {