Bitbybit Docs
    Preparing search index...

    Interface BRepGraphEdgeFace (Models.OCCT)

    One edge together with the faces on either side of it. An edge with two faces is interior, one with a single face is on an open boundary, and one with more than two indicates non-manifold geometry - which is the usual reason a shape refuses to become a solid.

    interface BRepGraphEdgeFace {
        index: number;
        faces: number[];
        nbFaces: number;
        boundary: boolean;
        manifold: boolean;
        degenerated: boolean;
        startVertex: number;
        endVertex: number;
        tolerance: number;
    }
    Index

    Properties

    index: number
    faces: number[]
    nbFaces: number
    boundary: boolean
    manifold: boolean
    degenerated: boolean
    startVertex: number
    endVertex: number
    tolerance: number