描述以原点为中心的立方体。
Name | Type | Description | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Object | 具有以下属性的对象:
|
Example:
var box = new Cesium.BoxGeometry({
vertexFormat : Cesium.VertexFormat.POSITION_ONLY,
maximum : new Cesium.Cartesian3(250000.0, 250000.0, 250000.0),
minimum : new Cesium.Cartesian3(-250000.0, -250000.0, -250000.0)
});
var geometry = Cesium.BoxGeometry.createGeometry(box);
Demo:
See:
Members
用于将对象打包到数组中的元素数。
Methods
static Cesium.BoxGeometry.createGeometry(boxGeometry) → Geometry|undefined
计算长方体的几何表示,包括其顶点、索引和边界球体。
Name | Type | Description |
---|---|---|
boxGeometry |
BoxGeometry | 盒子的描述。 |
Returns:
计算的顶点和索引。
static Cesium.BoxGeometry.fromAxisAlignedBoundingBox(boundingBox) → BoxGeometry
从AxisAlignedBoundingBox的维度创建多维数据集。
Name | Type | Description |
---|---|---|
boundingBox |
AxisAlignedBoundingBox | AxisAlignedBoundingBox的说明。 |
Returns:
Example:
var aabb = Cesium.AxisAlignedBoundingBox.fromPoints(Cesium.Cartesian3.fromDegreesArray([
-72.0, 40.0,
-70.0, 35.0,
-75.0, 30.0,
-70.0, 30.0,
-68.0, 40.0
]));
var box = Cesium.BoxGeometry.fromAxisAlignedBoundingBox(aabb);
See:
static Cesium.BoxGeometry.fromDimensions(options) → BoxGeometry
根据给定的尺寸创建以原点为中心的立方体。
Name | Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Object | 具有以下属性的对象:
|
Returns:
Throws:
-
DeveloperError :所有尺寸组件必须大于或等于零。
Example:
var box = Cesium.BoxGeometry.fromDimensions({
vertexFormat : Cesium.VertexFormat.POSITION_ONLY,
dimensions : new Cesium.Cartesian3(500000.0, 500000.0, 500000.0)
});
var geometry = Cesium.BoxGeometry.createGeometry(box);
See:
将提供的实例存储到提供的数组中。
Name | Type | Default | Description |
---|---|---|---|
value |
BoxGeometry | 要打包的值。 | |
array |
Array.<Number> | 要打包到的数组。 | |
startingIndex |
Number |
0
|
optional 数组中开始打包元素的索引。 |
Returns:
被压缩到的数组
static Cesium.BoxGeometry.unpack(array, startingIndex, result) → BoxGeometry
从压缩数组检索实例。
Name | Type | Default | Description |
---|---|---|---|
array |
Array.<Number> | 压缩数组。 | |
startingIndex |
Number |
0
|
optional 要解包的元素的起始索引。 |
result |
BoxGeometry | optional 要将结果存储到其中的对象。 |
Returns:
修改后的结果参数或新的BoxGeometry实例(如果未提供实例)。