X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FTools%2FblocFissure%2Fgmu%2FsortGeneratrices.py;h=f96929a6a7c3089660293859140a4ce63fad7080;hp=a72f83c642dbd016a609c5839ea1df15b8edef9e;hb=HEAD;hpb=8d297d6698f361d4f2dde723050bcfbaea050920 diff --git a/src/Tools/blocFissure/gmu/sortGeneratrices.py b/src/Tools/blocFissure/gmu/sortGeneratrices.py index a72f83c64..656429174 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-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 +# +"""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' )