sprunk-engine
    Preparing search index...

    MeshData is a data structure that holds the vertices and indices of a mesh. Supports both direct triangle indices and N-gon faces that will be triangulated.

    interface MeshData {
        faces?: Face[];
        indices?: Uint16Array;
        normals?: Float32Array;
        uvs?: Float32Array;
        vertices: Float32Array;
    }
    Index

    Properties

    faces?: Face[]
    indices?: Uint16Array
    normals?: Float32Array
    uvs?: Float32Array
    vertices: Float32Array