Salome HOME
PAL13312 (EDF262 SMESH mesh concatenation operation needed):
authorakl <akl@opencascade.com>
Mon, 5 Mar 2007 12:38:04 +0000 (12:38 +0000)
committerakl <akl@opencascade.com>
Mon, 5 Mar 2007 12:38:04 +0000 (12:38 +0000)
  add Concatenate()

idl/SMESH_Gen.idl

index 475d0253a294bff99fd64ae31f96910a505441f5..1e3c193c0db0e3ff7961cf6668d981fccceed4a6 100644 (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 );
+
   };
 
 };