Salome HOME
Updated copyright comment
[modules/hexablock.git] / src / TEST_PY / test_unit / test_shapes.py
index 0e2a2c9ad1fc8c3c9deecd2d62c4fbc2e54dc5d8..caac964f3ae0ad7c4d66a043dfcf0fec43503ff1 100644 (file)
@@ -1,12 +1,29 @@
 # -*- coding: latin-1 -*-
-
-# Francis KLOSS : 2011-2012 : CEA-Saclay, DEN, DM2S, SFME, LGLS, F-91191 Gif-sur-Yvette, France
+# Copyright (C) 2009-2024  CEA, 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
+#
+
+# Francis KLOSS : 2011-2013 : CEA-Saclay, DEN, DM2S, SFME, LGLS, F-91191 Gif-sur-Yvette, France
 # =============================================================================================
 
 import math
-
-import geompy
 import hexablock
+geompy = hexablock.geompy
 
 # Construire le modèle de bloc
 # ============================
@@ -26,23 +43,23 @@ shape  = doc.addShape (bielle, "bielle")
 sommets = geompy.SubShapeAllIDs (bielle, geompy.ShapeType["VERTEX"])
 aretes  = geompy.SubShapeAllIDs (bielle, geompy.ShapeType["EDGE"])
 
-print " ... Aretes  = ", aretes
-print " ... Sommets = ", sommets
+print(" ... Aretes  = ", aretes)
+print(" ... Sommets = ", sommets)
 
 nbfaces  = shape.countFace ()
 nbedges  = shape.countEdge ()
 nbvertex = shape.countVertex ()
 
 for n in range (nbfaces) :
-    print " Face nro %d = %s" % (n , shape.getNameFace (n))
-print
+    print(" Face nro %d = %s" % (n , shape.getNameFace (n)))
+print()
 
 for n in range (nbedges) :
-    print " Edge nro %d = %s" % (n , shape.getNameEdge (n))
-print
+    print(" Edge nro %d = %s" % (n , shape.getNameEdge (n)))
+print()
 
 for n in range (nbvertex) :
-    print " Vertex nro %d = %s" % (n , shape.getNameVertex (n))
+    print(" Vertex nro %d = %s" % (n , shape.getNameVertex (n)))