Interface ILayerGeometry

Source
Expand description

Interface for layer geometry information.

interface ILayerGeometry {
    indices?: number[];
    normal?: number[];
    position: number[];
    texCoord?: number[];
}

Properties§

§indices?: number[]

Optional array of indices for the geometry.

§normal?: number[]

Optional array of normals for the geometry.

§position: number[]

Array of positions for the geometry.

§texCoord?: number[]

Optional array of texture coordinates for the geometry.