new ExtentGeometry
A Geometry that represents geometry for a cartographic extent on an ellipsoid centered at the origin.
Parameters:
| Name | Type | Argument | Default | Description | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options.extent | 
            
            
            Extent | A cartographic extent with north, south, east and west properties in radians. | ||||||||||||||||||||||
options.vertexFormat | 
            
            
            VertexFormat | 
                
                    <optional> | 
            
            
            
                VertexFormat.DEFAULT | The vertex attributes to be computed. | ||||||||||||||||||||
options.ellipsoid | 
            
            
            Ellipsoid | 
                
                    <optional> | 
            
            
            
                Ellipsoid.WGS84 | The ellipsoid on which the extent lies. | ||||||||||||||||||||
options.granularity | 
            
            
            Number | 
                
                    <optional> | 
            
            
            
                CesiumMath.RADIANS_PER_DEGREE | The distance, in radians, between each latitude and longitude. Determines the number of positions in the buffer. | ||||||||||||||||||||
options.height | 
            
            
            Number | 
                
                    <optional> | 
            
            
            
                0.0 | The height from the surface of the ellipsoid. | ||||||||||||||||||||
options.rotation | 
            
            
            Number | 
                
                    <optional> | 
            
            
            
                0.0 | The rotation of the extent, in radians. A positive rotation is counter-clockwise. | ||||||||||||||||||||
options.stRotation | 
            
            
            Number | 
                
                    <optional> | 
            
            
            
                0.0 | The rotation of the texture coordinates, in radians. A positive rotation is counter-clockwise. | ||||||||||||||||||||
options.extrudedOptions | 
            
            
            Object | 
                
                    <optional> | 
            
            
            
                Extruded options
                Properties
  | 
        
Throws:
- 
DeveloperError :
options.extentis required and must have north, south, east and west attributes. - 
DeveloperError : Rotated extent is invalid.
 
Example
var extent = new ExtentGeometry({
  ellipsoid : Ellipsoid.WGS84,
  extent : Extent.fromDegrees(-80.0, 39.0, -74.0, 42.0),
  height : 10000.0
});
    
	
	
Source:
Members
- 
    
attributes :GeometryAttributes
 - 
    
    An object containing GeometryAttribute properties named after each of the
truevalues of the VertexFormat option.See:
 - 
    
boundingSphere :BoundingSphere
 - 
    
    A tight-fitting bounding sphere that encloses the vertices of the geometry.
 - 
    
indices :Array
 - 
    
    Index data that, along with Geometry#primitiveType, determines the primitives in the geometry.
 - 
    
primitiveType :PrimitiveType
 - 
    
    The type of primitives in the geometry. For this geometry, it is PrimitiveType.TRIANGLES.
 
