X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FTest%2FTestSnowflake.py;h=ebdcd2b11c67fcc0344da6ac7f053669aa4f8152;hb=964cad2613a9a40164fcdac4fc62c73a65244465;hp=e324fd2dab9d03fcfcca604eafa30a58b31f8974;hpb=f60865d3a392bb23530a2f59532c4701d318e0d6;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/Test/TestSnowflake.py b/src/SketchPlugin/Test/TestSnowflake.py index e324fd2da..ebdcd2b11 100644 --- a/src/SketchPlugin/Test/TestSnowflake.py +++ b/src/SketchPlugin/Test/TestSnowflake.py @@ -1,3 +1,23 @@ +## 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 +## + """ TestSnowflake.py """ @@ -61,7 +81,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 +102,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]) @@ -155,3 +175,6 @@ aSession.finishOperation() #========================================================================= # End of test #========================================================================= + +from salome.shaper import model +assert(model.checkPythonDump())