X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FTools%2FblocFissure%2Fgmu%2FcompoundFromList.py;h=aff8071d38cfea91d05986f2bcf9de62b5a3288c;hb=120207d740662965e1ca6dfe8325d1e7edad0e73;hp=bca83796601c7684430fc6173f56364ff78c9f19;hpb=f6ad065a7480ec5057c0340183c1b70cc3d495f4;p=modules%2Fsmesh.git diff --git a/src/Tools/blocFissure/gmu/compoundFromList.py b/src/Tools/blocFissure/gmu/compoundFromList.py index bca837966..aff8071d3 100644 --- a/src/Tools/blocFissure/gmu/compoundFromList.py +++ b/src/Tools/blocFissure/gmu/compoundFromList.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2014-2020 EDF R&D +# Copyright (C) 2014-2023 EDF # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -17,36 +17,36 @@ # # 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 from . import initLog def compoundFromList(elements, nom=None): """compoundFromList""" logging.debug('start') - - shapeList = list() - 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): - nomi = nom +"%d"%i + for indice, elem in enumerate(l_shapes): + nomi = nom +"%d"%indice logging.debug('nom: %s',nomi) - geomPublish(initLog.debug, a, 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 -