Class: SimplePolylineGeometry

SimplePolylineGeometry

new SimplePolylineGeometry(options)

A description of a polyline modeled as a line strip; the first two positions define a line segment, and each additional position defines a line segment from the previous position.
Parameters:
Name Type Description
options Object Object with the following properties:
Properties
Name Type Attributes Default Description
positions Array.<Cartesian3> An array of Cartesian3 defining the positions in the polyline as a line strip.
colors Array.<Color> <optional>
An Array of Color defining the per vertex or per segment colors.
colorsPerVertex Boolean <optional>
false A boolean that determines whether the colors will be flat across each segment of the line or interpolated across the vertices.
followSurface Boolean <optional>
true A boolean that determines whether positions will be adjusted to the surface of the ellipsoid via a great arc.
granularity Number <optional>
CesiumMath.RADIANS_PER_DEGREE The distance, in radians, between each latitude and longitude if options.followSurface=true. Determines the number of positions in the buffer.
ellipsoid Ellipsoid <optional>
Ellipsoid.WGS84 The ellipsoid to be used as a reference.
Source:
See:
  • SimplePolylineGeometry#createGeometry
Throws:
Example
// A polyline with two connected line segments
var polyline = new Cesium.SimplePolylineGeometry({
  positions : Cesium.Cartesian3.fromDegreesArray([
    0.0, 0.0,
    5.0, 0.0,
    5.0, 5.0
  ])
});
var geometry = Cesium.SimplePolylineGeometry.createGeometry(polyline);

Members

packedLength :Number

The number of elements used to pack the object into an array.
Type:
  • Number
Source:

Methods

(static) createGeometry(simplePolylineGeometry) → {Geometry}

Computes the geometric representation of a simple polyline, including its vertices, indices, and a bounding sphere.
Parameters:
Name Type Description
simplePolylineGeometry SimplePolylineGeometry A description of the polyline.
Source:
Returns:
The computed vertices and indices.
Type
Geometry

(static) pack(value, array, startingIndexopt) → {Array.<Number>}

Stores the provided instance into the provided array.
Parameters:
Name Type Attributes Default Description
value SimplePolylineGeometry The value to pack.
array Array.<Number> The array to pack into.
startingIndex Number <optional>
0 The index into the array at which to start packing the elements.
Source:
Returns:
The array that was packed into
Type
Array.<Number>

(static) unpack(array, startingIndexopt, resultopt) → {SimplePolylineGeometry}

Retrieves an instance from a packed array.
Parameters:
Name Type Attributes Default Description
array Array.<Number> The packed array.
startingIndex Number <optional>
0 The starting index of the element to be unpacked.
result SimplePolylineGeometry <optional>
The object into which to store the result.
Source:
Returns:
The modified result parameter or a new SimplePolylineGeometry instance if one was not provided.
Type
SimplePolylineGeometry