Salome HOME
updated copyright message
[modules/shaper.git] / src / SketchPlugin / Test / Test3240.py
1 # Copyright (C) 2020-2023  CEA, EDF
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 from GeomAPI import *
21 from SketchAPI import *
22
23 from salome.shaper import model
24
25 ORIGIN = GeomAPI_Pnt(0, 0, 0)
26 NB_COPIES = 8
27 TOLERANCE = 1.e-7
28
29 model.begin()
30 partSet = model.moduleDocument()
31 Sketch_1 = model.addSketch(partSet, model.defaultPlane("XOY"))
32 SketchProjection_1 = Sketch_1.addProjection(model.selection("EDGE", "OX"), True)
33 SketchLine_1 = SketchProjection_1.createdFeature()
34 SketchMultiRotation_1 = Sketch_1.addRotation([SketchLine_1.result()], SketchAPI_Line(SketchLine_1).startPoint(), 360, NB_COPIES, True)
35 [SketchLine_1, SketchLine_2, SketchLine_3, SketchLine_4, SketchLine_5, SketchLine_6, SketchLine_7, SketchLine_8] = SketchMultiRotation_1.rotated()
36 model.do()
37 model.end()
38
39 model.testNbResults(Sketch_1, 1)
40 model.testNbSubShapes(Sketch_1, GeomAPI_Shape.EDGE, [NB_COPIES])
41 model.testNbSubShapes(Sketch_1, GeomAPI_Shape.VERTEX, [2 * NB_COPIES])
42
43 midPnt = Sketch_1.defaultResult().shape().middlePoint()
44 assert(midPnt.distance(ORIGIN) < TOLERANCE)
45
46 assert(model.checkPythonDump())