<div dir="ltr">Hi everyone,<div><br></div><div>When combining two domains using an opencascade union, the seams will still be respected by the mesher. As an example, check out the geometry of a union of two overlapping circles:</div><div>```</div><div><div>SetFactory("OpenCASCADE");</div><div>s0 = news;</div><div>Disk(s0) = {-5.0, 0.0, 0.0, 10.0};</div><div>s1 = news;</div><div>Disk(s1) = {5.0, 0.0, 0.0, 10.0};</div><div>bo1[] = BooleanUnion{Surface {s0}; Delete;} {Surface {s1}; Delete;};</div></div><div>```</div><div>After the meshing process, the outlines of both circles are still recognizable.</div><div><br></div><div>Is it possible to give the mesher the freedom to disregard the outlines?</div><div><br></div><div>Cheers,</div><div>Nico</div></div>