Salome HOME
Updated copyright comment
[modules/shaper.git] / src / SketchPlugin / Test / TestSnowflake.py
index 4a0a31e53c0c8df2ca94a0fcdb0c5e8df1e380f1..fd09ff0e9e05ed9dc3ae607259166938b37e1b28 100644 (file)
@@ -1,3 +1,22 @@
+# Copyright (C) 2014-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
+#
+
 """
     TestSnowflake.py
 """
@@ -61,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.))
@@ -82,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])
@@ -109,8 +128,6 @@ origin = geomDataAPI_Point(aSketchFeature.attribute("Origin"))
 origin.setValue(0, 0, 0)
 dirx = geomDataAPI_Dir(aSketchFeature.attribute("DirX"))
 dirx.setValue(1, 0, 0)
-diry = geomDataAPI_Dir(aSketchFeature.attribute("DirY"))
-diry.setValue(0, 1, 0)
 norm = geomDataAPI_Dir(aSketchFeature.attribute("Norm"))
 norm.setValue(0, 0, 1)
 #=========================================================================
@@ -157,3 +174,6 @@ aSession.finishOperation()
 #=========================================================================
 # End of test
 #=========================================================================
+
+from salome.shaper import model
+assert(model.checkPythonDump())