Salome HOME
Copyright update 2020
[modules/shaper.git] / src / SketchPlugin / Test / TestSnowflake.py
index c98b5a4dab8d5ac9a6cd339ab5fc33486f88fc3f..b101e71d77303667201eeb07eec62ed6fa50179d 100644 (file)
@@ -1,22 +1,21 @@
-## Copyright (C) 2014-2017  CEA/DEN, EDF R&D
-##
-## 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<mailto:webmaster.salome@opencascade.com>
-##
+# Copyright (C) 2014-2020  CEA/DEN, EDF R&D
+#
+# 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
+#
 
 """
     TestSnowflake.py
@@ -81,7 +80,7 @@ def initContour(theNumLines):
     prevPoint = (35, 0)
     result = []
     deltaY = random.uniform(20, 25)
-    for i in xrange(1, theNumLines):
+    for i in range(1, theNumLines):
         rangeXMax = (prevPoint[1] + deltaY) * (30. / i if i % 2 != 0 else 2)
         newX = random.uniform(prevPoint[1] + deltaY,
                               max(rangeXMax, prevPoint[1] + deltaY + 25.))
@@ -102,9 +101,9 @@ def makeLinesCoincident(theSketch, allLines):
         anEndPointValue = (anEndPoint.x(), anEndPoint.y())
         allPoints[aStartPointValue].append(aStartPoint)
         allPoints[anEndPointValue].append(anEndPoint)
-    for keyPoint, valuePoints in allPoints.iteritems():
+    for keyPoint, valuePoints in allPoints.items():
         if len(valuePoints) != 2:
-            print "Strange point: ", keyPoint, "has in coincidence: ", len(valuePoints)
+            print("Strange point: ", keyPoint, "has in coincidence: ", len(valuePoints))
             continue
         aConstraint = theSketch.addFeature("SketchConstraintCoincidence")
         aConstraint.refattr("ConstraintEntityA").setAttr(valuePoints[0])