BoxGeometry

new Cesium.BoxGeometry (options)

描述以原点为中心的立方体。
Name Type Description
options Object 具有以下属性的对象:
姓名 类型 默认 描述
minimum 笛卡尔3 框的最小 x、y 和 z 坐标。
maximum 笛卡尔3 框的最大 x、y 和 z 坐标。
vertexFormat 顶点格式 VertexFormat.DEFAULT 可选 要计算的顶点属性。
Example:
const box = new Cesium.BoxGeometry({
  vertexFormat : Cesium.VertexFormat.POSITION_ONLY,
  maximum : new Cesium.Cartesian3(250000.0, 250000.0, 250000.0),
  minimum : new Cesium.Cartesian3(-250000.0, -250000.0, -250000.0)
});
const geometry = Cesium.BoxGeometry.createGeometry(box);
Demo:
See:

Members

static Cesium.BoxGeometry.packedLength : Number

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

Methods

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

计算一个盒子的几何表示,包括它的顶点、索引和一个边界球体。
Name Type Description
boxGeometry BoxGeometry 盒子的描述。
Returns:
计算的顶点和索引。

static Cesium.BoxGeometry.fromAxisAlignedBoundingBox (boundingBox) BoxGeometry

根据 AxisAlignedBoundingBox 的尺寸创建立方体。
Name Type Description
boundingBox AxisAlignedBoundingBox AxisAlignedBoundingBox 的描述。
Returns:
Example:
const 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
]));
const box = Cesium.BoxGeometry.fromAxisAlignedBoundingBox(aabb);
See:

static Cesium.BoxGeometry.fromDimensions (options) BoxGeometry

在给定尺寸的情况下创建一个以原点为中心的立方体。
Name Type Description
options Object 具有以下属性的对象:
姓名 类型 默认 描述
dimensions 笛卡尔3 分别存储在 Cartesian3 的 x、y 和 z 坐标中的框的宽度、深度和高度。
vertexFormat 顶点格式 VertexFormat.DEFAULT 可选 要计算的顶点属性。
Returns:
Throws:
Example:
const box = Cesium.BoxGeometry.fromDimensions({
  vertexFormat : Cesium.VertexFormat.POSITION_ONLY,
  dimensions : new Cesium.Cartesian3(500000.0, 500000.0, 500000.0)
});
const geometry = Cesium.BoxGeometry.createGeometry(box);
See:

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

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

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

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