PAL13312 (EDF262 SMESH mesh concatenation operation needed):

add Concatenate()
This commit is contained in:
akl 2007-03-05 12:38:04 +00:00
parent 32a1c8d34e
commit 54b2957a41

View File

@ -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 );
};
};