pixi.js
    Preparing search index...

    Interface MeshGeometryOptionsAdvanced

    Options for the mesh geometry.

    interface MeshGeometryOptions {
        indices?: Uint32Array;
        positions?: Float32Array;
        shrinkBuffersToFit?: boolean;
        topology?: Topology;
        uvs?: Float32Array;
    }
    Index

    Properties

    indices?: Uint32Array

    The indices of the mesh.

    positions?: Float32Array

    The positions of the mesh.

    shrinkBuffersToFit?: boolean

    Whether to shrink the buffers to fit the data.

    topology?: Topology

    The topology of the mesh.

    The UVs of the mesh. If not provided, they will be filled with 0 and match the size of the positions.