X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FTools%2FblocFissure%2Fgmu%2FputName.py;h=af556e6229a602ae5f6f87bb8dfaf27316f925d0;hb=4e6f2284a44bc1da45d137fe825e31b2feadaa9a;hp=3db4a62f372ff880a5fabae06410124dc9e393d8;hpb=6d32f944a0a115b6419184c50b57bf7c4eef5786;p=modules%2Fsmesh.git diff --git a/src/Tools/blocFissure/gmu/putName.py b/src/Tools/blocFissure/gmu/putName.py index 3db4a62f3..af556e622 100644 --- a/src/Tools/blocFissure/gmu/putName.py +++ b/src/Tools/blocFissure/gmu/putName.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2014-2019 CEA/DEN, EDF R&D +# Copyright (C) 2014-2021 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -18,14 +18,27 @@ # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com # +"""Nommage des objets mesh (algorithme, hypothèse, subMesh)""" + from .geomsmesh import smesh -# ----------------------------------------------------------------------------- -# --- nommage des objets mesh (algorithme, hypothèse, subMesh) +def putName (objmesh, name, i_suff=-1, i_pref=-1): + """Nommage des objets mesh -def putName(objmesh,name, i=-1): - if i >= 0: - suffix = "_%d"%i - name += suffix - smesh.SetName(objmesh, name) + @objmesh objet à nommer + @name le nom brut + @i_suff un éventuel suffixe + @i_pref un éventuel préfixe + """ + + # suffixe éventuel : + if i_suff >= 0: + suffixe = "_{}".format(i_suff) + name += suffixe + # préfixe éventuel : + if i_pref >= 0: + prefixe = "Cas{:02d}_".format(i_pref) + name = prefixe + name + + smesh.SetName(objmesh, name)