Bitbybit Docs
    Preparing search index...

    Interface BRepGraphDumpResult (Models.OCCT)

    A complete structural dump of a shape - every solid, shell, face, edge and vertex with the relationships between them. The heaviest of the graph queries and the one to reach for when you need to reason about the whole topology at once rather than answer a single question.

    interface BRepGraphDumpResult {
        ok: boolean;
        error?: string;
        solids: BRepGraphDumpSolid[];
        shells: BRepGraphDumpShell[];
        faces: BRepGraphDumpFace[];
        edges: BRepGraphDumpEdge[];
        vertices: BRepGraphDumpVertex[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    ok: boolean
    error?: string