I have a question and hope someone can give me the answer.
I have 2 faces, and I want to make then as one big face. How should I do that?
Thanks!
Hugues Delorme Fri, 02/27/2004 - 11:19
If you have TopoDS_Face objects you can try to compose them in TopoDS_Compound(this will be not a TopoDS_Face).
Use class BRep_Builder and its routines "Add" and "MakeCompound".
If you want to produce another face from 2 faces, you may look at fusion algorithms(boolean operations) in the OCC documentation(I've never used fusion yet).
Fri, 02/27/2004 - 11:19
If you have TopoDS_Face objects you can try to compose them in TopoDS_Compound(this will be not a TopoDS_Face).
Use class BRep_Builder and its routines "Add" and "MakeCompound".
If you want to produce another face from 2 faces, you may look at fusion algorithms(boolean operations) in the OCC documentation(I've never used fusion yet).