new RectangleGeometry()
A description of a cartographic rectangle on an ellipsoid centered at the origin.
Name | Type | Default | Description |
---|---|---|---|
options.rectangle |
Rectangle | A cartographic rectangle with north, south, east and west properties in radians. | |
options.vertexFormat |
VertexFormat |
VertexFormat.DEFAULT
|
optional The vertex attributes to be computed. |
options.ellipsoid |
Ellipsoid |
Ellipsoid.WGS84
|
optional The ellipsoid on which the rectangle lies. |
options.granularity |
Number |
CesiumMath.RADIANS_PER_DEGREE
|
optional The distance, in radians, between each latitude and longitude. Determines the number of positions in the buffer. |
options.height |
Number |
0.0
|
optional The height from the surface of the ellipsoid. |
options.rotation |
Number |
0.0
|
optional The rotation of the rectangle, in radians. A positive rotation is counter-clockwise. |
options.stRotation |
Number |
0.0
|
optional The rotation of the texture coordinates, in radians. A positive rotation is counter-clockwise. |
options.extrudedHeight |
Number | optional Height of extruded surface. | |
options.closeTop |
Boolean |
true
|
optional
true to render top of an extruded rectangle; false otherwise. (Only applicable if options.extrudedHeight is not equal to options.height.) |
options.closeBottom |
Boolean |
true
|
optional
true to render bottom of an extruded rectangle; false otherwise. (Only applicable if options.extrudedHeight is not equal to options.height.) |
Throws:
- RectangleGeometry#createGeometry
Example:
// 1. create an rectangle
var rectangle = new Cesium.RectangleGeometry({
ellipsoid : Cesium.Ellipsoid.WGS84,
rectangle : Cesium.Rectangle.fromDegrees(-80.0, 39.0, -74.0, 42.0),
height : 10000.0
});
var geometry = Cesium.RectangleGeometry.createGeometry(rectangle);
// 2. create an extruded rectangle without a top
var rectangle = new Cesium.RectangleGeometry({
ellipsoid : Cesium.Ellipsoid.WGS84,
rectangle : Cesium.Rectangle.fromDegrees(-80.0, 39.0, -74.0, 42.0),
height : 10000.0,
extrudedHieght: 300000,
closeTop: false
});
var geometry = Cesium.RectangleGeometry.createGeometry(rectangle);
See:
Methods
-
staticRectangleGeometry.createGeometry(rectangleGeometry) → Geometry
-
Computes the geometric representation of an rectangle, including its vertices, indices, and a bounding sphere.
Name Type Description rectangleGeometry
RectangleGeometry A description of the rectangle. Returns:
The computed vertices and indices.Throws:
-
DeveloperError : Rotated rectangle is invalid.
-