SphereOutlineGeometry

new SphereOutlineGeometry(options)

A description of the outline of a sphere.
Name Type Description
options Object optional Object with the following properties:
Name Type Default Description
radius Number 1.0 optional The radius of the sphere.
stackPartitions Number 10 optional The count of stacks for the sphere (1 greater than the number of parallel lines).
slicePartitions Number 8 optional The count of slices for the sphere (Equal to the number of radial lines).
subdivisions Number 200 optional The number of points per line, determining the granularity of the curvature .
Throws:
  • DeveloperError : options.stackPartitions must be greater than or equal to one.
  • DeveloperError : options.slicePartitions must be greater than or equal to zero.
  • DeveloperError : options.subdivisions must be greater than or equal to zero.
Example:
var sphere = new Cesium.SphereOutlineGeometry({
  radius : 100.0,
  stackPartitions : 6,
  slicePartitions: 5
});
var geometry = Cesium.SphereOutlineGeometry.createGeometry(sphere);
Demo:

Methods

staticSphereOutlineGeometry.createGeometry(sphereGeometry)Geometry

Computes the geometric representation of an outline of a sphere, including its vertices, indices, and a bounding sphere.
Name Type Description
sphereGeometry SphereOutlineGeometry A description of the sphere outline.
Returns:
The computed vertices and indices.