new Cesium.CoplanarPolygonGeometry(options)
由任意共面(coplanar)位置组成的多边形的描述。
Name | Type | Description | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Object |
对象,具有以下属性:
|
示例:
var polygon = new Cesium.CoplanarPolygonGeometry({
positions : Cesium.Cartesian3.fromDegreesArrayHeights([
-90.0, 30.0, 0.0,
-90.0, 30.0, 1000.0,
-80.0, 30.0, 1000.0,
-80.0, 30.0, 0.0
])
});
var geometry = Cesium.CoplanarPolygonGeometry.createGeometry(polygon);
参考:
成员变量
packedLength : Number
用于将对象打包成数组的元素数。
内置方法
计算任意共面多边形的几何表示,包括其顶点、索引和边界球。
Name | Type | Description |
---|---|---|
polygonGeometry |
CoplanarPolygonGeometry | 多边形的描述。 |
返回值:
计算的顶点和索引。
从一个位置数组描述一个共面多边形。
Name | Type | Description | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Object |
对象,具有以下属性:
|
返回值:
- PolygonGeometry#createGeometry
示例:
// create a polygon from points
var polygon = Cesium.CoplanarPolygonGeometry.fromPositions({
positions : Cesium.Cartesian3.fromDegreesArray([
-72.0, 40.0,
-70.0, 35.0,
-75.0, 30.0,
-70.0, 30.0,
-68.0, 40.0
])
});
var geometry = Cesium.PolygonGeometry.createGeometry(polygon);
参考:
staticCesium.CoplanarPolygonGeometry.pack(value, array, startingIndex) → Array.<Number>
将提供的实例存储到提供的数组中。
Name | Type | Default | Description |
---|---|---|---|
value |
CoplanarPolygonGeometry | 要包装的值。 | |
array |
Array.<Number> | 要被包装到的数组。 | |
startingIndex |
Number |
0
|
optional 开始包装元素的数组索引。 |
返回值:
被包装到的数组。
从已包装的数组中检索实例。
Name | Type | Default | Description |
---|---|---|---|
array |
Array.<Number> | 包装的数组。 | |
startingIndex |
Number |
0
|
optional 要解包的元素的起始索引。 |
result |
CoplanarPolygonGeometry | optional 存储结果的对象。 |
返回值:
修改后的结果参数或新的CoplanarPolygonGeometry实例(如果没有提供)。