new SphereOutlineGeometry()
A description of the outline of a sphere.
Name | Type | Default | Description |
---|---|---|---|
options.radius |
Number |
1.0
|
optional The radius of the sphere. |
options.stackPartitions |
Number |
10
|
optional The count of stacks for the sphere (1 greater than the number of parallel lines). |
options.slicePartitions |
Number |
8
|
optional The count of slices for the sphere (Equal to the number of radial lines). |
options.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);
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.