alternative for BRepAlgoAPI_Fuse

At the moment im using BRepAlgoAPI_Fuse to merge solids. But for large solids this is very slow.
I know that two solids only share one face(or parts of a face). There is no other intersection.
I have tried MakeCompound but than the face is not removed and i have an unwanted dividing wall.
Is there any other function as BRepAlgoAPI_Fuse or can i set some options for BRepAlgoAPI_Fuse?

Bearloga's picture

Try using the class BRepFeat_Gluer. It performs "local" operation. But you should specify for it which face from one shape has a contact with which face from other shape.