X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=inline;f=src%2FSketchPlugin%2FTest%2FTestMultiRotation.py;h=39c75a995e4833b1a6b68631a5dbe65a033fdfc1;hb=19d86ac992480629a9f1865886f112724a157564;hp=905117ae394ef5908c7a39abbed283f7f8f2221b;hpb=1de75803e9baf3de59fa755f9eccb6ef60bb64e4;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/Test/TestMultiRotation.py b/src/SketchPlugin/Test/TestMultiRotation.py index 905117ae3..39c75a995 100644 --- a/src/SketchPlugin/Test/TestMultiRotation.py +++ b/src/SketchPlugin/Test/TestMultiRotation.py @@ -1,7 +1,26 @@ +# Copyright (C) 2014-2019 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 +# + """ TestMultiRotation.py Unit test of SketchPlugin_MultiRotation class - + SketchPlugin_MultiRotation static const std::string MY_CONSTRAINT_ROTATION_ID("SketchMultiRotation"); data()->addAttribute(ANGLE_TYPE(), ModelAPI_AttributeString::typeId()); @@ -35,7 +54,7 @@ def createSketch(theSketch): allFeatures.append(aSketchArc) theSketch.execute() return allFeatures - + def createLine(theSketch): aSketchLine = theSketch.addFeature("SketchLine") aStartPoint = geomDataAPI_Point2D(aSketchLine.attribute("StartPoint")) @@ -44,7 +63,7 @@ def createLine(theSketch): aEndPoint.setValue(1., 3.) theSketch.execute() return aSketchLine - + def checkRotation(theObjects, theNbObjects, theCenterX, theCenterY, theAngle): # Verify distances of the objects and the number of copies aFeatures = [] @@ -53,17 +72,17 @@ def checkRotation(theObjects, theNbObjects, theCenterX, theCenterY, theAngle): feat = ModelAPI_Feature.feature(theObjects.object(i)) assert(feat is not None) aFeatures.append(feat) - + cosA = math.cos(theAngle * math.pi / 180.) - - anInd = 0 + + anInd = 0 for feat, next in zip(aFeatures[:-1], aFeatures[1:]): anInd = anInd + 1 if (anInd > theNbObjects-1): anInd = 0 continue assert(feat.getKind() == next.getKind()) - + anAttributes = [] if (feat.getKind() == "SketchLine"): anAttributes.append('StartPoint') @@ -72,7 +91,7 @@ def checkRotation(theObjects, theNbObjects, theCenterX, theCenterY, theAngle): anAttributes.append('center_point') anAttributes.append('start_point') anAttributes.append('end_point') - + for attr in anAttributes: aPoint1 = geomDataAPI_Point2D(feat.attribute(attr)) aPoint2 = geomDataAPI_Point2D(next.attribute(attr))