Search results

  1. D

    Find the new Faces created by BRepAlgoAPI_Cut

    Thanks for the reply, i could get the new faces on the Obj created by cut operation by a tool. Here is the code snippet. TopoDS_Shape GetImage(const TopoDS_Shape& source, BOPAlgo_BOP& API) { const TopTools_ListOfShape& modified = API.Modified(source); // if (modified.Extent() == 1) return...
  2. D

    Find the new Faces created by BRepAlgoAPI_Cut

    I have two box shapes of type TopoDS_Solid (Obj and Tool), intersecting each other. I could cut them BRepAlgoAPI_Cut but I also need the new faces created on Obj due to Tool cut. Thanks!
Top