BoxGeometry

描述以原点为中心的多维数据集。
new BoxGeometry(options)
Parameters:
options (Object)
Name Description
options.minimum
Cartesian3
框的最小X、Y和Z坐标。
options.maximum
Cartesian3
框的最大X、Y和Z坐标。
options.vertexFormat
VertexFormat
default VertexFormat.DEFAULT
要计算的顶点属性。
Example
var box = new bmgl.BoxGeometry({
  vertexFormat : bmgl.VertexFormat.POSITION_ONLY,
  maximum : new bmgl.Cartesian3(250000.0, 250000.0, 250000.0),
  minimum : new bmgl.Cartesian3(-250000.0, -250000.0, -250000.0)
});
var geometry = bmgl.BoxGeometry.createGeometry(box);
See:

Members

(static) packedLength : Number

用于将对象打包到数组中的元素数。

Methods

(static) createGeometry(boxGeometry) → {Geometry|undefined}
计算框的几何表示,包括其顶点、索引和边界球。
Parameters:
boxGeometry (BoxGeometry) 框的说明。
(static) fromAxisAlignedBoundingBox(boundingBox) → {BoxGeometry}
从axisalignedboundingbox的维度创建多维数据集。
Parameters:
boundingBox (AxisAlignedBoundingBox) 轴磁场接地盒的描述。
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.BoxGeometry.fromAxisAlignedBoundingBox(aabb);
See:
(static) fromDimensions(options) → {BoxGeometry}
根据给定的尺寸,创建一个以原点为中心的多维数据集。
Parameters:
options (Object)
Name Description
options.dimensions
Cartesian3
分别存储在Cartesian3的x、y和z坐标中的框的宽度、深度和高度。
options.vertexFormat
VertexFormat
default VertexFormat.DEFAULT
要计算的顶点属性。
Example
var box = bmgl.BoxGeometry.fromDimensions({
  vertexFormat : bmgl.VertexFormat.POSITION_ONLY,
  dimensions : new bmgl.Cartesian3(500000.0, 500000.0, 500000.0)
});
var geometry = bmgl.BoxGeometry.createGeometry(box);
Throws
See:
(static) pack(value, array, startingIndex) → {Array.<Number>}
将提供的实例存储到提供的数组中。
Parameters:
value (BoxGeometry) 要打包的值。
array (Array.<Number>) 要打包的数组。
startingIndex (Number) (default 0) 数组中开始打包元素的索引。
(static) unpack(array, startingIndex, result) → {BoxGeometry}
从压缩数组中检索实例。
Parameters:
array (Array.<Number>) 压缩数组。
startingIndex (Number) (default 0) 要解包的元素的起始索引。
result (BoxGeometry) 存储结果的对象。