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

    Interface EdgeLoopValidation

    Result of validating an edge loop.

    interface EdgeLoopValidation {
        error?: string;
        isValid: boolean;
        orderedVertices: number[];
    }
    Index

    Properties

    error?: string

    Error message if not valid

    isValid: boolean

    Whether the edges form a valid closed loop

    orderedVertices: number[]

    Ordered vertex indices forming the loop (if valid)