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:
const rectangle = new Cesium.RectangleOutlineGeometry({
  ellipsoid : Cesium.Ellipsoid.WGS84,
  rectangle : Cesium.Rectangle.fromDegrees(-80.0, 39.0, -74.0, 42.0),
  height : 10000.0
});
const geometry = Cesium.RectangleOutlineGeometry.createGeometry(rectangle);See:
Members
    The number of elements used to pack the object into an array.
Methods
static Cesium.RectangleOutlineGeometry.createGeometry(rectangleGeometry) → Geometry|undefined
    Computes the geometric representation of an outline of a rectangle, including its vertices, indices, and a bounding sphere.
    
| Name | Type | Description | 
|---|---|---|
| rectangleGeometry | RectangleOutlineGeometry | A description of the rectangle outline. | 
Returns:
    The computed vertices and indices.
    
Throws:
- 
    DeveloperError : Rotated rectangle is invalid.
    Stores the provided instance into the provided array.
    
| Name | Type | Default | Description | 
|---|---|---|---|
| value | RectangleOutlineGeometry | The value to pack. | |
| array | Array.<number> | The array to pack into. | |
| startingIndex | number | 0 | optional The index into the array at which to start packing the elements. | 
Returns:
    The array that was packed into
    
static Cesium.RectangleOutlineGeometry.unpack(array, startingIndex, result) → RectangleOutlineGeometry
    Retrieves an instance from a packed array.
    
| Name | Type | Default | Description | 
|---|---|---|---|
| array | Array.<number> | The packed array. | |
| startingIndex | number | 0 | optional The starting index of the element to be unpacked. | 
| result | RectangleOutlineGeometry | optional The object into which to store the result. | 
Returns:
    The modified result parameter or a new RectangleOutlineGeometry instance if one was not provided.
    
