@wendylabsinc/react-three-mesh-editor - v0.0.1
    Preparing search index...

    Interface VertexData

    Represents a unique vertex in the mesh geometry. Vertices at the same position are deduplicated and share the same VertexData.

    interface VertexData {
        index: number;
        originalIndices?: number[];
        position: [number, number, number];
        selected: boolean;
    }
    Index

    Properties

    index: number

    Unique index of this vertex in the deduplicated vertex array

    originalIndices?: number[]

    Original buffer attribute indices that map to this unique vertex position

    position: [number, number, number]

    3D position as [x, y, z] tuple

    selected: boolean

    Whether this vertex is currently selected