Interface for height field data.

高度场数据接口。

interface heightFieldData {
    flag: Uint8Array;
    heightData: Float32Array;
    numCols: number;
    numRows: number;
    scale: Vector3;
}

属性

flag: Uint8Array

The tessellation flags for the height field, where 0 and 1 indicate whether the terrain triangle faces left or right.

镶嵌标志,0 和 1 分别表示地形三角形朝向左还是朝右。

heightData: Float32Array

The height data of the field.

高度场的高度数据。

numCols: number

The number of columns in the height field.

高度场中的列数。

numRows: number

The number of rows in the height field.

高度场中的行数。

scale: Vector3

The scale of the height field.

高度场的缩放。