From: akl Date: Mon, 5 Mar 2007 12:38:04 +0000 (+0000) Subject: PAL13312 (EDF262 SMESH mesh concatenation operation needed): X-Git-Tag: V3_2_6a1~6 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=54b2957a41824a8546870185098752f79ed90e4d;p=modules%2Fsmesh.git PAL13312 (EDF262 SMESH mesh concatenation operation needed): add Concatenate() --- diff --git a/idl/SMESH_Gen.idl b/idl/SMESH_Gen.idl index 475d0253a..1e3c193c0 100644 --- a/idl/SMESH_Gen.idl +++ b/idl/SMESH_Gen.idl @@ -195,6 +195,19 @@ module SMESH in long theElementID) raises ( SALOME::SALOME_Exception ); + /*! + * Concatenate the given meshes into one mesh. + * Union groups with the same name and type if + * theUniteIdenticalGroups flag is true. + * Merge coincident nodes and elements if + * theMergeNodesAndElements flag is true. + */ + SMESH_Mesh Concatenate(in mesh_array theMeshesArray, + in boolean theUniteIdenticalGroups, + in boolean theMergeNodesAndElements, + in double theMergeTolerance) + raises ( SALOME::SALOME_Exception ); + }; };