X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FTools%2FblocFissure%2Fgmu%2FcompoundFromList.py;h=5c866915c012e74bae7933d83f16d7496ef3be96;hp=8f1ed19629d4582e35c827b9c476c94c264da8ce;hb=HEAD;hpb=7a65c9fad427b1ccba6b9ccae612296e5092a324 diff --git a/src/Tools/blocFissure/gmu/compoundFromList.py b/src/Tools/blocFissure/gmu/compoundFromList.py index 8f1ed1962..5ab95e27c 100644 --- a/src/Tools/blocFissure/gmu/compoundFromList.py +++ b/src/Tools/blocFissure/gmu/compoundFromList.py @@ -1,34 +1,52 @@ # -*- coding: utf-8 -*- +# Copyright (C) 2014-2024 EDF +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +# +"""compoundFromList""" import logging -from geomsmesh import geompy -from geomsmesh import geomPublish -from geomsmesh import geomPublishInFather -import initLog +from .geomsmesh import geompy +from .geomsmesh import geomPublish +from . import initLog def compoundFromList(elements, nom=None): - """ - - """ + """compoundFromList""" + logging.debug('start') - - shapeList = [] - for a in elements: - if not isinstance(a, list): - shapeList.append(a) + + l_shapes = list() + for elem in elements: + if not isinstance(elem, list): + l_shapes.append(elem) else: - if a[0] is not None: - shapeList.append(a[0]) - + if elem[0] is not None: + l_shapes.append(elem[0]) + if nom is not None: - for i,a in enumerate(shapeList): - nom = nom +"%d"%i - logging.debug('nom: %s',nom) - geomPublish(initLog.debug, a, nom) + for indice, elem in enumerate(l_shapes): + nomi = nom +"%d"%indice + logging.debug('nom: %s',nomi) + geomPublish(initLog.debug, elem, nomi) shapeCompound = None - if len(shapeList) > 0: - shapeCompound =geompy.MakeCompound(shapeList) + if l_shapes: + shapeCompound = geompy.MakeCompound(l_shapes) + nomc = "compound_%s"%nom + geomPublish(initLog.debug, shapeCompound, nomc) return shapeCompound -