new Cesium.BoxOutlineGeometry(options)
以原点为中心的立方体轮廓的描述。
Name | Type | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
options |
Object |
对象,具有以下属性:
|
示例:
var box = new Cesium.BoxOutlineGeometry({
maximum : new Cesium.Cartesian3(250000.0, 250000.0, 250000.0),
minimum : new Cesium.Cartesian3(-250000.0, -250000.0, -250000.0)
});
var geometry = Cesium.BoxOutlineGeometry.createGeometry(box);
参考:
成员变量
用于将对象包装成数组的元素数。
内置方法
计算盒子轮廓的几何表示,包括其顶点、索引和包围球。
Name | Type | Description |
---|---|---|
boxGeometry |
BoxGeometry | 盒子轮廓的描述。 |
返回值:
计算的顶点和索引。
从AxisAlignedBoundingBox的尺寸创建一个立方体的轮廓。
Name | Type | Description |
---|---|---|
boundingBox |
AxisAlignedBoundingBox | AxisAlignedBoundingBox的描述。 |
返回值:
示例:
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.BoxOutlineGeometry.fromAxisAlignedBoundingBox(aabb);
参考:
创建一个给定尺寸的以原点为中心的立方体的轮廓。
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
options |
Object |
对象,具有以下属性:
|
返回值:
异常情况:
-
DeveloperError : 所有的维度分量必须大于或等于零。
示例:
var box = Cesium.BoxOutlineGeometry.fromDimensions({
dimensions : new Cesium.Cartesian3(500000.0, 500000.0, 500000.0)
});
var geometry = Cesium.BoxOutlineGeometry.createGeometry(box);
参考:
staticCesium.BoxOutlineGeometry.pack(value, array, startingIndex) → Array.<Number>
将提供的实例存储到提供的数组中。
Name | Type | Default | Description |
---|---|---|---|
value |
BoxOutlineGeometry | 要包装的值。 | |
array |
Array.<Number> | 要被包装到的数组。 | |
startingIndex |
Number |
0
|
optional 开始包装元素的数组索引。 |
返回值:
被包装到的数组。
从已包装的数组中检索实例。
Name | Type | Default | Description |
---|---|---|---|
array |
Array.<Number> | 包装的数组。 | |
startingIndex |
Number |
0
|
optional 要解包的元素的起始索引。 |
result |
BoxOutlineGeometry | optional 存储结果的对象。 |
返回值:
修改后的结果参数或新的BoxOutlineGeometry实例(如果没有提供)。