Interface ILayerGeometry

Source
Expand description

Interface for layer geometry information.

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

Properties§

Source§

indices?: number[]

Optional array of indices for the geometry.

Source§

normal?: number[]

Optional array of normals for the geometry.

Source§

position: number[]

Array of positions for the geometry.

Source§

texCoord?: number[]

Optional array of texture coordinates for the geometry.