以原点为中心的立方体轮廓的描述。
new BoxOutlineGeometry(options)
Parameters:
options
(Object)
Name | Description |
---|---|
options.minimum
Cartesian3
|
框的最小X、Y和Z坐标。 |
options.maximum
Cartesian3
|
框的最大X、Y和Z坐标。 |
Members
(static) packedLength : Number
用于将对象打包到数组中的元素数。
Methods
(static) createGeometry(boxGeometry) → {Geometry|undefined}
计算框轮廓的几何表示,包括其顶点、索引和边界球。
Parameters:
根据轴定位接地框的尺寸创建立方体的轮廓。
Parameters:
Example
var aabb = bmgl.AxisAlignedBoundingBox.fromPoints(bmgl.Cartesian3.fromDegreesArray([
-72.0, 40.0,
-70.0, 35.0,
-75.0, 30.0,
-70.0, 30.0,
-68.0, 40.0
]));
var box = bmgl.BoxOutlineGeometry.fromAxisAlignedBoundingBox(aabb);
根据给定的尺寸,创建以原点为中心的多维数据集的轮廓。
Parameters:
options
(Object)
Name | Description |
---|---|
options.dimensions
Cartesian3
|
分别存储在Cartesian3 的x、y和z坐标中的框的宽度、深度和高度。
|
Example
var box = bmgl.BoxOutlineGeometry.fromDimensions({
dimensions : new bmgl.Cartesian3(500000.0, 500000.0, 500000.0)
});
var geometry = bmgl.BoxOutlineGeometry.createGeometry(box);
Throws
-
DeveloperError : 所有维度组件必须大于或等于零。
将提供的实例存储到提供的数组中。
Parameters:
array
(Array.<Number>)
要打包的数组。
startingIndex
(Number)
(default 0
)
数组中开始打包元素的索引。
从压缩数组中检索实例。
Parameters:
array
(Array.<Number>)
压缩数组。
startingIndex
(Number)
(default 0
)
要解包的元素的起始索引。