Salome HOME
[bos #40653][CEA] New mesh import export formats with meshio.
[modules/smesh.git] / src / Tools / blocFissure / gmu / sortGeneratrices.py
index a72f83c642dbd016a609c5839ea1df15b8edef9e..6564291746ac44f2db40dcff677ab269fbbfa764 100644 (file)
@@ -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' )