]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/FeaturesPlugin/Test/TestRevolution_ByAngle.py
Salome HOME
updated copyright message
[modules/shaper.git] / src / FeaturesPlugin / Test / TestRevolution_ByAngle.py
index bd565e28cae39c563e2c7c478688f18d13110a25..e50d672cff361f6770525bc6c3ad54e079da36f2 100644 (file)
@@ -1,22 +1,21 @@
-## Copyright (C) 2018-20xx  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) 2018-2023  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
+#
 
 from salome.shaper import model
 from GeomAPI import *
@@ -41,12 +40,12 @@ SketchCircle_1 = Sketch_1.addCircle(30, 20, 15)
 Revolution_1.setNestedSketch(Sketch_1)
 model.do()
 Shape = Revolution_1.results()[0].resultSubShapePair()[0].shape()
-checkMiddlePoint(Shape, -19.9197187127138, 19.9197187127138, 20)
+checkMiddlePoint(Shape, -20.29227355, 20.29227355, 20)
 
 Revolution_1.setAxis(model.selection("EDGE", "PartSet/OY"))
 model.do()
 Shape = Revolution_1.results()[0].resultSubShapePair()[0].shape()
-checkMiddlePoint(Shape, 14.2731178230633, 30, 14.2731178230633)
+checkMiddlePoint(Shape, 14.5229101, 30, 14.5229101)
 
 model.end()