X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FTools%2FblocFissure%2Fgmu%2FsortGeneratrices.py;h=8615c6b2be25e45423486fb8e7ba65144b718ad4;hb=274fd4f2db8d3a7fa23701764280ea1d175b194b;hp=a72f83c642dbd016a609c5839ea1df15b8edef9e;hpb=7a3ecab720cc517ace17c5c4677fd3c20c0051ee;p=modules%2Fsmesh.git diff --git a/src/Tools/blocFissure/gmu/sortGeneratrices.py b/src/Tools/blocFissure/gmu/sortGeneratrices.py index a72f83c64..8615c6b2b 100644 --- a/src/Tools/blocFissure/gmu/sortGeneratrices.py +++ b/src/Tools/blocFissure/gmu/sortGeneratrices.py @@ -1,13 +1,30 @@ # -*- coding: utf-8 -*- +# 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 +# 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 +# +"""tri par longueur des 3 generatrices""" import logging + from .geomsmesh import geompy -from .geomsmesh import geomPublish from .geomsmesh import geomPublishInFather -from . import initLog -# ----------------------------------------------------------------------------- -# --- tri par longueur des 3 generatrices +from . import initLog def sortGeneratrices(tore, geners): """ @@ -20,24 +37,23 @@ def sortGeneratrices(tore, geners): genx = geompy.ExtractShapes(geners[0], geompy.ShapeType["EDGE"], True) - lenx = [] - for i in range(len(genx)): - props = geompy.BasicProperties(genx[i]) + lenx = list() + for gene in genx: + props = geompy.BasicProperties(gene) lenx.append(props[0]) - pass + minlen = min(lenx) maxlen = max(lenx) genext=None gencnt=None genint=None - for i in range(len(genx)): - if lenx[i] == minlen: - genint = genx[i] - elif lenx[i] == maxlen: - genext = genx[i] + for i_aux, gene in enumerate(genx): + if lenx[i_aux] == minlen: + genint = gene + elif lenx[i_aux] == maxlen: + genext = gene else: - gencnt= genx[i] - pass + gencnt= gene geomPublishInFather(initLog.debug, tore, genext, 'genext' ) geomPublishInFather(initLog.debug, tore, genint, 'genint' )