BoxOutlineGeometry

以原点为中心的立方体轮廓的描述。
new BoxOutlineGeometry(options)
Parameters:
options (Object)
Name Description
options.minimum
Cartesian3
框的最小X、Y和Z坐标。
options.maximum
Cartesian3
框的最大X、Y和Z坐标。
Example
var box = new bmgl.BoxOutlineGeometry({
  maximum : new bmgl.Cartesian3(250000.0, 250000.0, 250000.0),
  minimum : new bmgl.Cartesian3(-250000.0, -250000.0, -250000.0)
});
var geometry = bmgl.BoxOutlineGeometry.createGeometry(box);
See:

Members

(static) packedLength : Number

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

Methods

(static) createGeometry(boxGeometry) → {Geometry|undefined}
计算框轮廓的几何表示,包括其顶点、索引和边界球。
Parameters:
boxGeometry (BoxOutlineGeometry) 对方框轮廓的描述。
(static) fromAxisAlignedBoundingBox(boundingBox) → {BoxOutlineGeometry}
根据轴定位接地框的尺寸创建立方体的轮廓。
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.BoxOutlineGeometry.fromAxisAlignedBoundingBox(aabb);

 
See:
(static) fromDimensions(options) → {BoxOutlineGeometry}
根据给定的尺寸,创建以原点为中心的多维数据集的轮廓。
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
See:
(static) pack(value, array, startingIndex) → {Array.<Number>}
将提供的实例存储到提供的数组中。
Parameters:
value (BoxOutlineGeometry) 要打包的值。
array (Array.<Number>) 要打包的数组。
startingIndex (Number) (default 0) 数组中开始打包元素的索引。
(static) unpack(array, startingIndex, result) → {BoxOutlineGeometry}
从压缩数组中检索实例。
Parameters:
array (Array.<Number>) 压缩数组。
startingIndex (Number) (default 0) 要解包的元素的起始索引。
result (BoxOutlineGeometry) 存储结果的对象。