new PolylineGeometry(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. The polyline is capable of
displaying with a material.
Parameters:
Name | Type | Description | |||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Object | Object with the following properties:
Properties
|
- Source:
- See:
-
- PolylineGeometry#createGeometry
Throws:
-
-
At least two positions are required.
- Type
- DeveloperError
-
-
-
width must be greater than or equal to one.
- Type
- DeveloperError
-
-
-
colors has an invalid length.
- Type
- DeveloperError
-
Example
// A polyline with two connected line segments
var polyline = new Cesium.PolylineGeometry({
positions : Cesium.Cartesian3.fromDegreesArray([
0.0, 0.0,
5.0, 0.0,
5.0, 5.0
]),
width : 10.0
});
var geometry = Cesium.PolylineGeometry.createGeometry(polyline);
Members
packedLength :Number
The number of elements used to pack the object into an array.
Type:
- Number
- Source:
Methods
(static) createGeometry(polylineGeometry) → {Geometry|undefined}
Computes the geometric representation of a polyline, including its vertices, indices, and a bounding sphere.
Parameters:
Name | Type | Description |
---|---|---|
polylineGeometry |
PolylineGeometry | A description of the polyline. |
- Source:
Returns:
The computed vertices and indices.
- Type
- Geometry | undefined
(static) pack(value, array, startingIndexopt) → {Array.<Number>}
Stores the provided instance into the provided array.
Parameters:
Name | Type | Attributes | Default | Description |
---|---|---|---|---|
value |
PolylineGeometry | 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) → {PolylineGeometry}
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 |
PolylineGeometry |
<optional> |
The object into which to store the result. |
- Source:
Returns:
The modified result parameter or a new PolylineGeometry instance if one was not provided.
- Type
- PolylineGeometry