Bitbybit Docs
    Preparing search index...

    Interface BRepGraphAssemblyResult (Models.OCCT)

    The assembly structure of a shape: its products, their occurrences, and which products sit at the root. This is what STEP assembly import produces, and what you walk to build a tree view.

    interface BRepGraphAssemblyResult {
        ok: boolean;
        error?: string;
        rootProducts: number[];
        products: BRepGraphProduct[];
        occurrences: BRepGraphOccurrence[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    ok: boolean
    error?: string
    rootProducts: number[]
    products: BRepGraphProduct[]
    occurrences: BRepGraphOccurrence[]