X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=doc%2Fsalome%2Fexamples%2Fcreating_meshes_ex07.py;h=4ddb69702ac8697566ef2d860b3353d0d890deec;hb=c7c2aff92bed5c3175522c77d6bbd70b2ec085e8;hp=acaaf5dc302834c98cb14127fc692e8c0c4e6a5d;hpb=e18c7bf13376458fb15a7866f246fe376702c9fb;p=modules%2Fsmesh.git diff --git a/doc/salome/examples/creating_meshes_ex07.py b/doc/salome/examples/creating_meshes_ex07.py index acaaf5dc3..4ddb69702 100644 --- a/doc/salome/examples/creating_meshes_ex07.py +++ b/doc/salome/examples/creating_meshes_ex07.py @@ -69,13 +69,13 @@ Ginf2=Mesh_sup.Group(Finf2, "Inf") ## create compounds # create a compound of two meshes with renaming namesake groups and -# merging of elements with the given tolerance +# merging elements with the given tolerance Compound1 = smesh.Concatenate([Mesh_inf, Mesh_sup], 0, 1, 1e-05, - name='Compound_with_RenamedGrps_and_MergeElems') + name='Compound with RenamedGrps and MergeElems') # create a compound of two meshes with uniting namesake groups and # creating groups of all elements Compound2 = smesh.Concatenate([Mesh_inf, Mesh_sup], 1, 0, 1e-05, True, - name='Compound_with_UniteGrps_and_GrpsOfAllElems') + name='Compound with UniteGrps and GrpsOfAllElems') if salome.sg.hasDesktop(): salome.sg.updateObjBrowser(True)