new RectangleOutlineGeometry(options)
        A description of the outline of a a cartographic rectangle on an ellipsoid centered at the origin.
    
    
    
    
    
    
        
| Name | Type | Description | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| options | Object | Object with the following properties: 
 | 
Throws:
- RectangleOutlineGeometry#createGeometry
Example:
var rectangle = new Cesium.RectangleOutlineGeometry({
  ellipsoid : Cesium.Ellipsoid.WGS84,
  rectangle : Cesium.Rectangle.fromDegrees(-80.0, 39.0, -74.0, 42.0),
  height : 10000.0
});
var geometry = Cesium.RectangleOutlineGeometry.createGeometry(rectangle);Demo:
See:
Members
- 
    staticRectangleOutlineGeometry.packedLength :Number
- 
    
    The number of elements used to pack the object into an array.
Methods
- 
    staticRectangleOutlineGeometry.createGeometry(rectangleGeometry) → Geometry
- 
    
    Computes the geometric representation of an outline of an rectangle, including its vertices, indices, and a bounding sphere.Name Type Description rectangleGeometryRectangleOutlineGeometry A description of the rectangle outline. Returns:The computed vertices and indices.Throws:- 
    DeveloperError : Rotated rectangle is invalid.
 
- 
    
- 
    staticRectangleOutlineGeometry.pack(value, array, startingIndex)
- 
    
    Stores the provided instance into the provided array.Name Type Default Description valueBoundingSphere The value to pack. arrayArray.<Number> The array to pack into. startingIndexNumber 0optional The index into the array at which to start packing the elements. 
- 
    staticRectangleOutlineGeometry.unpack(array, startingIndex, result)
- 
    
    Retrieves an instance from a packed array.Name Type Default Description arrayArray.<Number> The packed array. startingIndexNumber 0optional The starting index of the element to be unpacked. resultRectangleGeometry optional The object into which to store the result. 
