new Cesium.WallGeometry(options)
        
      
    
      一种对墙的描述,类似于KML行字符串。墙是由一系列的点构成的,这些点向下延伸到地面。可选地,它们可以向下挤压到指定的高度。
    
    | Name | Type | Description | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| options | Object | 对象,具有以下属性: 
 | 
异常情况:
    - 
        DeveloperError : positions 长度必须大于等于2。
- 
        DeveloperError : positions 和 maximumHeights 的长度必须相同
- 
        DeveloperError : positions 和 minimumHeights 的长度必须相同
- WallGeometry#createGeometry
- WallGeometry#fromConstantHeight
示例:
      // 建一堵从地面到10000米的墙
var wall = new Cesium.WallGeometry({
  positions : Cesium.Cartesian3.fromDegreesArrayHeights([
    19.0, 47.0, 10000.0,
    19.0, 48.0, 10000.0,
    20.0, 48.0, 10000.0,
    20.0, 47.0, 10000.0,
    19.0, 47.0, 10000.0
  ])
});
var geometry = Cesium.WallGeometry.createGeometry(wall);演示Demo:
      
      参考:
      成员变量
      packedLength : Number
      
    
  
    用于将对象打包成数组的元素数。
  
  内置方法
    计算墙的几何表示,包括其顶点、索引和包围球。
  
  | Name | Type | Description | 
|---|---|---|
| wallGeometry | WallGeometry | 墙的描述。 | 
返回值:
  
    计算的顶点和索引。
  
  
    一种对墙的描述,类似于KML行字符串。墙是由一系列的点构成的,这些点向下延伸到地面。可选地,它们可以向下挤压到指定的高度。
  
  | Name | Type | Description | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| options | Object | 对象,具有以下属性: 
 | 
返回值:
  - WallGeometry#createGeometry
示例:
    // 建造一堵从10000米到20000米的墙
var wall = Cesium.WallGeometry.fromConstantHeights({
  positions : Cesium.Cartesian3.fromDegreesArray([
    19.0, 47.0,
    19.0, 48.0,
    20.0, 48.0,
    20.0, 47.0,
    19.0, 47.0,
  ]),
  minimumHeight : 20000.0,
  maximumHeight : 10000.0
});
var geometry = Cesium.WallGeometry.createGeometry(wall);参考:
    
      staticCesium.WallGeometry.pack(value, array, startingIndex) → Array.<Number>
      
    
  
    将提供的实例存储到提供的数组中。
  
  | Name | Type | Default | Description | 
|---|---|---|---|
| value | WallGeometry | 要包装的值。 | |
| array | Array.<Number> | 要被包装到的数组。 | |
| startingIndex | Number | 0 | optional 开始包装元素的数组索引。 | 
返回值:
  
    被包装到的数组。
  
  
    从已包装的数组中检索实例。
  
  | Name | Type | Default | Description | 
|---|---|---|---|
| array | Array.<Number> | 包装的数组。 | |
| startingIndex | Number | 0 | optional 要解包的元素的起始索引。 | 
| result | WallGeometry | optional 存储结果的对象。 | 
返回值:
  
    修改后的结果参数或新的WallGeometry实例(如果没有提供)。
  
   
     
               
               
               
               
               
               
             
             
           
           
           
           
                     
                     
                     
                     
                     
                     
                     
                     
                 
                 
                 
                 
                     
                     
                     
                     
                     
                     
                     
                     
                     
                     
                     
                 
                 
                 
                 
                 
                 
                