brepjs API Reference
    Preparing search index...

    Interface BrokenVertexRef

    A vertex reference that could not be resolved.

    interface BrokenVertexRef {
        candidates?: readonly Vertex[];
        reason: "ambiguous" | "not-found";
        ref: VertexRef;
    }
    Index

    Properties

    candidates?: readonly Vertex[]
    reason: "ambiguous" | "not-found"