VertexFormat

new Cesium.VertexFormat ( options )

顶点格式定义了构成顶点的属性。可以将 VertexFormat 提供给 Geometry 以请求计算某些属性,例如仅位置、位置和法线等。
Name Type Description
options Object 可选 具有对应于 VertexFormat 属性的布尔属性的对象,如代码示例中所示。
Example:
// Create a vertex format with position and 2D texture coordinate attributes.
const format = new Cesium.VertexFormat({
  position : true,
  st : true
});
See:

Members

static constant Cesium.VertexFormat.ALL : VertexFormat

具有众所周知的属性的不可变顶点格式:位置、法线、st、切线和双切线。
See:

static constant Cesium.VertexFormat.DEFAULT : VertexFormat

具有位置、法线和 st 属性的不可变顶点格式。这与大多数外观和材料兼容;然而, normal 和 st 属性并不总是必需的。如果事先知道这一点,则应使用另一种 VertexFormat
See:

static Cesium.VertexFormat.packedLength : Number

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

static constant Cesium.VertexFormat.POSITION_AND_COLOR : VertexFormat

具有位置和颜色属性的不可变顶点格式。
See:

static constant Cesium.VertexFormat.POSITION_AND_NORMAL : VertexFormat

具有位置和法线属性的不可变顶点格式。这与 PerInstanceColorAppearance 等每个实例的颜色外观兼容。
See:

static constant Cesium.VertexFormat.POSITION_AND_ST : VertexFormat

具有 position 和 st 属性的不可变顶点格式。这与 EllipsoidSurfaceAppearance 兼容。
See:

static constant Cesium.VertexFormat.POSITION_NORMAL_AND_ST : VertexFormat

具有位置、法线和 st 属性的不可变顶点格式。当 MaterialAppearance#materialSupport TEXTURED/code>. 时,这与 MaterialAppearance 兼容。
See:

static constant Cesium.VertexFormat.POSITION_ONLY : VertexFormat

只有位置属性的不可变顶点格式。
See:

bitangent : Boolean

当为 true 时,顶点有一个双切线属性(归一化),用于像凹凸贴图这样的切线空间效果。

32 位浮点数。每个属性 3 个组件。

Default Value: false
当为 true 时,顶点具有 RGB 颜色属性。

8 位无符号字节。每个属性 3 个组件。

Default Value: false
当为 true 时,顶点有一个法线属性(归一化),通常用于光照。

32 位浮点数。每个属性 3 个组件。

Default Value: false

position : Boolean

当为 true 时,顶点具有 3D 位置属性。

64 位浮点(用于精度)。每个属性 3 个组件。

Default Value: false
当为 true 时,顶点具有 2D 纹理坐标属性。

32 位浮点数。每个属性 2 个组件

Default Value: false
当为 true 时,顶点有一个切线属性(归一化),用于像凹凸贴图这样的切线空间效果。

32 位浮点数。每个属性 3 个组件。

Default Value: false

Methods

static Cesium.VertexFormat.clone (vertexFormat, result ) VertexFormat

复制一个 VertexFormat 实例。
Name Type Description
vertexFormat VertexFormat 要复制的顶点格式。
result VertexFormat 可选 存储结果的对象。
Returns:
修改后的结果参数或新的 VertexFormat 实例(如果未提供)。 (如果 vertexFormat 未定义,则返回 undefined)

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

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

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

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