对具有体积的折线的描述(沿折线拉伸的 2D 形状)。
      
      | Name | Type | Description | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 
           options
           | Object | 具有以下属性的对象: 
 | 
- PolylineVolumeOutlineGeometry#createGeometry
Example:
function computeCircle(radius) {
  const positions = [];
  for (let i = 0; i < 360; i++) {
    const radians = Cesium.Math.toRadians(i);
    positions.push(new Cesium.Cartesian2(radius * Math.cos(radians), radius * Math.sin(radians)));
  }
  return positions;
}
const volumeOutline = new Cesium.PolylineVolumeOutlineGeometry({
  polylinePositions : Cesium.Cartesian3.fromDegreesArray([
    -72.0, 40.0,
    -70.0, 35.0
  ]),
  shapePositions : computeCircle(100000.0)
});See:
Members
      用于将对象打包到数组中的元素数。
     
     Methods
static Cesium.PolylineVolumeOutlineGeometry.createGeometry (polylineVolumeOutlineGeometry) → Geometry |undefined
      计算具有体积的折线轮廓的几何表示,包括其顶点、索引和边界球体。
     
     | Name | Type | Description | 
|---|---|---|
| 
          polylineVolumeOutlineGeometry
          | PolylineVolumeOutlineGeometry | 折线体积轮廓的描述。 | 
Returns:
   计算的顶点和索引。
  
 
     
      将提供的实例存储到提供的数组中。
     
     | Name | Type | Default | Description | 
|---|---|---|---|
| 
          value
          | PolylineVolumeOutlineGeometry | 要打包的值。 | |
| 
          array
          | Array.<Number> | 要打包的数组。 | |
| 
          startingIndex
          | Number | 
          0
          | 可选 开始打包元素的数组索引。 | 
Returns:
   装入的数组
  
 
     static Cesium.PolylineVolumeOutlineGeometry.unpack (array, startingIndex , result ) → PolylineVolumeOutlineGeometry
      从打包数组中检索实例。
     
     | Name | Type | Default | Description | 
|---|---|---|---|
| 
          array
          | Array.<Number> | 打包的数组。 | |
| 
          startingIndex
          | Number | 
          0
          | 可选 要解包的元素的起始索引。 | 
| 
          result
          | PolylineVolumeOutlineGeometry | 可选 存储结果的对象。 | 
Returns:
   修改后的结果参数或新的 PolylineVolumeOutlineGeometry 实例(如果未提供)。
  
 
     