mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-14 02:30:33 +05:00
Remark of issue 0019967: EDF SMESH 806: TUI script example is missing for the ConcatenateWithGroups function
This commit is contained in:
parent
eb732dc62e
commit
1503787ed9
@ -93,6 +93,6 @@ Compound1 = smesh.smesh.Concatenate([Mesh_inf.GetMesh(), Mesh_sup.GetMesh()], 0,
|
||||
smesh.SetName(Compound1, 'Compound_with_RenamedGrps_and_MergeElems')
|
||||
# create a compound of two meshes with uniting groups with the same names and
|
||||
# creating groups of all elements
|
||||
Compound2 = smesh.smesh.ConcatenateWithGroups([Mesh_inf.GetMesh(), Mesh_sup.GetMesh()], 1, 0, 1e-05)
|
||||
Compound2 = smesh.smesh.Concatenate([Mesh_inf.GetMesh(), Mesh_sup.GetMesh()], 1, 0, 1e-05, True)
|
||||
smesh.SetName(Compound2, 'Compound_with_UniteGrps_and_GrpsOfAllElems')
|
||||
#end
|
||||
|
@ -557,24 +557,6 @@ class smeshDC(SMESH._objref_SMESH_Gen):
|
||||
aMesh = Mesh(self, self.geompyD, aSmeshMesh)
|
||||
return aMesh
|
||||
|
||||
## Concatenate the given meshes into one mesh.
|
||||
# @return an instance of Mesh class
|
||||
# @param meshes the meshes to combine into one mesh
|
||||
# @param uniteIdenticalGroups if true, groups with same names are united, else they are renamed
|
||||
# @param mergeNodesAndElements if true, equal nodes and elements aremerged
|
||||
# @param mergeTolerance tolerance for merging nodes
|
||||
# @param allGroups forces creation of groups of all elements
|
||||
def Concatenate( self, meshes, uniteIdenticalGroups,
|
||||
mergeNodesAndElements = False, mergeTolerance = 1e-5, allGroups = False):
|
||||
if allGroups:
|
||||
aSmeshMesh = SMESH._objref_SMESH_Gen.ConcatenateWithGroups(
|
||||
self,meshes,uniteIdenticalGroups,mergeNodesAndElements,mergeTolerance)
|
||||
else:
|
||||
aSmeshMesh = SMESH._objref_SMESH_Gen.Concatenate(
|
||||
self,meshes,uniteIdenticalGroups,mergeNodesAndElements,mergeTolerance)
|
||||
aMesh = Mesh(self, self.geompyD, aSmeshMesh)
|
||||
return aMesh
|
||||
|
||||
## From SMESH_Gen interface
|
||||
# @return the list of integer values
|
||||
# @ingroup l1_auxiliary
|
||||
|
Loading…
Reference in New Issue
Block a user