BoxOutlineGeometry

new Cesium.BoxOutlineGeometry (options)

以原点为中心的立方体轮廓的描述。
Name Type Description
options Object 具有以下属性的对象:
名称 类型 说明
最小 Cartesian3 框的最小x,y和z坐标。
最大 Cartesian3 框的最大x,y和z坐标。
Example:
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);
See:

Members

static Cesium.BoxOutlineGeometry.packedLength : Number

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

Methods

static Cesium.BoxOutlineGeometry.createGeometry (boxGeometry) Geometry |undefined

计算框的轮廓的几何表示形式,包括其顶点,索引和边界球。
Name Type Description
boxGeometry BoxOutlineGeometry 框轮廓的描述。
Returns:
计算的顶点和索引。

static Cesium.BoxOutlineGeometry.fromAxisAlignedBoundingBox (boundingBox) BoxOutlineGeometry

根据AxisAlignedBoundingBox的尺寸创建立方体的轮廓。
Name Type Description
boundingBox AxisAlignedBoundingBox AxisAlignedBoundingBox的说明。
Returns:
Example:
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);

 
See:

static Cesium.BoxOutlineGeometry.fromDimensions (options) BoxOutlineGeometry

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

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

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

static Cesium.BoxOutlineGeometry.unpack (array, startingIndex , result ) BoxOutlineGeometry

从压缩数组中检索实例。
Name Type Default Description
array Array.<Number> 压缩数组。
startingIndex Number 0 可选 要解压缩的元素的起始索引。
result BoxOutlineGeometry 可选 将结果存储到的对象。
Returns:
修改后的结果参数;如果未提供,则为新的BoxOutlineGeometry实例。