CoplanarPolygonOutlineGeometry

由任意共面位置组成的多边形轮廓的描述。
new CoplanarPolygonOutlineGeometry(options)
Parameters:
options (Object)
Name Description
options.polygonHierarchy
PolygonHierarchy
包含孔的多边形层次结构。
Example
var polygonOutline = new bmgl.CoplanarPolygonOutlineGeometry({
  positions : bmgl.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 = bmgl.CoplanarPolygonOutlineGeometry.createGeometry(polygonOutline);
See:

Members

packedLength : Number

用于将对象打包到数组中的元素数。

Methods

(static) createGeometry(polygonGeometry) → {Geometry|undefined}
计算任意共面多边形的几何表示,包括其顶点、索引和边界球。
Parameters:
polygonGeometry (CoplanarPolygonOutlineGeometry) 多边形的描述。
(static) fromPositions(options) → {CoplanarPolygonOutlineGeometry}
从位置数组中对共面多边形轮廓的描述。
Parameters:
options (Object)
Name Description
options.positions
Array.<Cartesian3>
定义多边形角点的位置数组。
(static) pack(value, array, startingIndex) → {Array.<Number>}
将提供的实例存储到提供的数组中。
Parameters:
value (CoplanarPolygonOutlineGeometry) 要打包的值。
array (Array.<Number>) 要打包的数组。
startingIndex (Number) (default 0) 数组中开始打包元素的索引。
(static) unpack(array, startingIndex, result) → {CoplanarPolygonOutlineGeometry}
从压缩数组中检索实例。
Parameters:
array (Array.<Number>) 压缩数组。
startingIndex (Number) (default 0) 要解包的元素的起始索引。
result (CoplanarPolygonOutlineGeometry) 存储结果的对象。