描述以线带为模型的折线;前两个位置定义了一个线段,每个附加位置从上一个位置定义了一个线段。折线可与材质一起显示。
Name | Type | Description | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Object |
具有以下对象的属性:
|
Throws:
-
DeveloperError : 至少需要2个 positions。
-
DeveloperError : 宽度必须大于或等于1。
-
DeveloperError : 颜色的长度无效。
- PolylineGeometry#createGeometry
Example:
// A polyline with two connected line segments
var polyline = new SuperMap3D.PolylineGeometry({
positions : SuperMap3D.Cartesian3.fromDegreesArray([
0.0, 0.0,
5.0, 0.0,
5.0, 5.0
]),
width : 10.0
});
var geometry = SuperMap3D.PolylineGeometry.createGeometry(polyline);
See:
Members
-
用于将对象打包到数组中的元素个数。
Methods
-
staticSuperMap3D.PolylineGeometry.createGeometry(polylineGeometry) → Geometry|undefined
-
该函数计算多边形的几何表示,包括其顶点、索引和包围球。
Name Type Description polylineGeometry
PolylineGeometry 对折线的描述。 Returns:
计算出的顶点和索引。 -
将提供的实例存储到提供的数组中。
Name Type Default Description value
PolylineGeometry 要打包的值。 array
Array.<Number> 要打包的数组。 startingIndex
Number 0
optional 开始打包元素的数组索引。 Returns:
装入的数组。 -
staticSuperMap3D.PolylineGeometry.unpack(array, startingIndex, result) → PolylineGeometry
-
从打包数组中检索实例。
Name Type Default Description array
Array.<Number> 打包的数组。 startingIndex
Number 0
optional 要解包的元素的起始索引 result
PolylineGeometry optional 存储结果的对象。 Returns:
修改后的结果参数或新的PolylineGeometry实例(如果没有提供)。