From e44e43fed44829929519370c456ca79f1d8c3f41 Mon Sep 17 00:00:00 2001 From: Paul RASCLE Date: Thu, 14 Jan 2016 16:14:39 +0100 Subject: [PATCH] t_shape_fluid: glue faces --- src/Tools/t_shape/t_shape_builder.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Tools/t_shape/t_shape_builder.py b/src/Tools/t_shape/t_shape_builder.py index 72ab22bd2..0cff46b98 100644 --- a/src/Tools/t_shape/t_shape_builder.py +++ b/src/Tools/t_shape/t_shape_builder.py @@ -236,7 +236,8 @@ def build_shape(study, r1, r2, h1, h2, solid_thickness=0, progressBar=None ): compound = geompy.MakeCompound([final, extru3]) plane = geompy.MakePlane(O,OX,2000) compound_mirrored = geompy.MakeMirrorByPlane(compound, plane) - final = geompy.MakeCompound([compound, compound_mirrored]) + compound_total = geompy.MakeCompound([compound, compound_mirrored]) + final = geompy.MakeGlueFaces(compound_total, 1e-07) if progressBar is not None: progressBar.addSteps(1) -- 2.39.2