PolylineVolumeOutlineGeometry

new SuperMap3D.PolylineVolumeOutlineGeometry(options)

描述带有体积(沿折线挤出的二维形状)的折线。
Name Type Description
options Object 具有以下属性的对象:
Name Type Default Description
polylinePositions Array.<Cartesian3> 定义折线体中心的位置数组。
shapePositions Array.<Cartesian2> 定义要沿折线挤出的形状的位置数组。
ellipsoid Ellipsoid Ellipsoid.WGS84 optional 用作参照的椭球体。
granularity Number Math.RADIANS_PER_DEGREE optional 每个经纬度之间的距离(以弧度为单位)。确定 buffer中的位置数。
cornerType CornerType CornerType.ROUNDED optional 确定边角的样式。
Example:
function computeCircle(radius) {
  var positions = [];
  for (var i = 0; i < 360; i++) {
    var radians = SuperMap3D.Math.toRadians(i);
    positions.push(new SuperMap3D.Cartesian2(radius * Math.cos(radians), radius * Math.sin(radians)));
  }
  return positions;
}

var volumeOutline = new SuperMap3D.PolylineVolumeOutlineGeometry({
  polylinePositions : SuperMap3D.Cartesian3.fromDegreesArray([
    -72.0, 40.0,
    -70.0, 35.0
  ]),
  shapePositions : computeCircle(100000.0)
});
See:
  • PolylineVolumeOutlineGeometry#createGeometry

Members

packedLength : Number

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

Methods

staticSuperMap3D.PolylineVolumeOutlineGeometry.createGeometry(polylineVolumeOutlineGeometry)Geometry|undefined

计算具有体积的折线轮廓的几何表示,包括其顶点、索引和包围球。
Name Type Description
polylineVolumeOutlineGeometry PolylineVolumeOutlineGeometry 描述折线体积轮廓。
Returns:
计算出的顶点和索引。

staticSuperMap3D.PolylineVolumeOutlineGeometry.pack(value, array, startingIndex)Array.<Number>

将提供的实例存储到提供的数组中。
Name Type Default Description
value PolylineVolumeOutlineGeometry 要打包的值。
array Array.<Number> 要装入的数组。
startingIndex Number 0 optional 开始打包元素的数组的索引。
Returns:
被装入的数组。

staticSuperMap3D.PolylineVolumeOutlineGeometry.unpack(array, startingIndex, result)PolylineVolumeOutlineGeometry

从打包数组中检索实例。
Name Type Default Description
array Array.<Number> 打包数组。
startingIndex Number 0 optional 要解压缩的元素的起始索引。
result PolylineVolumeOutlineGeometry optional 要在其中存储结果的对象。
Returns:
修改后的结果参数或新的PolylineVolumeOutlineGeometry实例(如果没有提供)。