BoxOutlineGeometry

new SuperMap3D.BoxOutlineGeometry(options)

以原点为中心的立方体轮廓的描述。
Name Type Description
options Object 具有以下属性的对象:
Name Type Description
minimum Cartesian3 box的最小 x、y 和 z 坐标。
maximum Cartesian3 box的最大 x、y 和 z 坐标。
Example:
var box = new SuperMap3D.BoxOutlineGeometry({
  maximum : new SuperMap3D.Cartesian3(250000.0, 250000.0, 250000.0),
  minimum : new SuperMap3D.Cartesian3(-250000.0, -250000.0, -250000.0)
});
var geometry = SuperMap3D.BoxOutlineGeometry.createGeometry(box);
See:

Members

staticSuperMap3D.BoxOutlineGeometry.packedLength : Number

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

Methods

staticSuperMap3D.BoxOutlineGeometry.createGeometry(boxGeometry)Geometry|undefined

计算box的轮廓的几何表示,包括其顶点、索引和包围球。
Name Type Description
boxGeometry BoxOutlineGeometry box轮廓的描述。
Returns:
计算的顶点和索引。

staticSuperMap3D.BoxOutlineGeometry.fromAxisAlignedBoundingBox(boundingBox)BoxOutlineGeometry

根据 AxisAlignedBoundingBox 的尺寸创建立方体的轮廓。
Name Type Description
boundingBox AxisAlignedBoundingBox AxisAlignedBoundingBox 的描述。
Returns:
Example:
var aabb = SuperMap3D.AxisAlignedBoundingBox.fromPoints(SuperMap3D.Cartesian3.fromDegreesArray([
     -72.0, 40.0,
     -70.0, 35.0,
     -75.0, 30.0,
     -70.0, 30.0,
     -68.0, 40.0
]));
var box = SuperMap3D.BoxOutlineGeometry.fromAxisAlignedBoundingBox(aabb);

 
See:

staticSuperMap3D.BoxOutlineGeometry.fromDimensions(options)BoxOutlineGeometry

创建给定尺寸的以原点为中心的立方体的轮廓。
Name Type Description
options Object 具有以下属性的对象:
Name Type Description
dimensions Cartesian3 分别存储在 Cartesian3 的 x、y 和 z 坐标中的框的宽度、深度和高度。
Returns:
Throws:
Example:
var box = SuperMap3D.BoxOutlineGeometry.fromDimensions({
  dimensions : new SuperMap3D.Cartesian3(500000.0, 500000.0, 500000.0)
});
var geometry = SuperMap3D.BoxOutlineGeometry.createGeometry(box);
See:

staticSuperMap3D.BoxOutlineGeometry.pack(value, array, startingIndex)Array.<Number>

将提供的实例存储到提供的数组中。
Name Type Default Description
value BoxOutlineGeometry 要打包的值。
array Array.<Number> 要打包的数组。
startingIndex Number 0 optional 开始打包元素的数组索引。
Returns:
装入的数组。

staticSuperMap3D.BoxOutlineGeometry.unpack(array, startingIndex, result)BoxOutlineGeometry

从打包数组中检索实例。
Name Type Default Description
array Array.<Number> 打包的数组。
startingIndex Number 0 optional 要解包的元素的起始索引。
result BoxOutlineGeometry optional 存储结果的对象。
Returns:
修改后的结果参数或新的 BoxOutlineGeometry 实例(如果未提供)。