Salome HOME
Merge branch 'V9_2_2_BR'
[modules/shaper.git] / src / ConstructionPlugin / Test / TestPlane.py
1 # Copyright (C) 2014-2019  CEA/DEN, EDF R&D
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 """
21 Test case for Construction Plane feature. Written on High API.
22 """
23 from ModelAPI import *
24 from GeomAPI import *
25
26 from salome.shaper import model
27
28 # Get session
29 aSession = ModelAPI_Session.get()
30
31 # Create a part
32 aDocument = aSession.activeDocument()
33 aSession.startOperation()
34 model.addPart(aDocument)
35 aDocument = aSession.activeDocument()
36 aSession.finishOperation()
37
38 # Test a plane by general equation
39 aSession.startOperation()
40 aPlane = model.addPlane(aDocument, 1, 1, 1, 0)
41 aSession.finishOperation()
42 assert (len(aPlane.results()) > 0)
43
44 # Create a point 1
45 aSession.startOperation()
46 aPoint1 = model.addPoint(aDocument, 0, 0, 0)
47 aSession.finishOperation()
48
49 # Create a point 2
50 aSession.startOperation()
51 aPoint2 = model.addPoint(aDocument, 100, 0, 0)
52 aSession.finishOperation()
53
54 # Create a point 3
55 aSession.startOperation()
56 aPoint3 = model.addPoint(aDocument, 50, 50, 50)
57 aSession.finishOperation()
58
59 # Test a plane by three points
60 aSession.startOperation()
61 aPlane = model.addPlane(aDocument, aPoint1.result(), aPoint2.result(), aPoint3.result())
62 aSession.finishOperation()
63 assert (len(aPlane.results()) > 0)
64
65 # Create an axis
66 aSession.startOperation()
67 anAxis = model.addAxis(aDocument, 0, 0, 100)
68 aSession.finishOperation()
69
70 # Test a plane by line and point
71 aSession.startOperation()
72 aPlane = model.addPlane(aDocument, anAxis.result(), aPoint3.result(), True)
73 aSession.finishOperation()
74 assert (len(aPlane.results()) > 0)
75
76 # Test a plane by distance from other
77 aSession.startOperation()
78 aPlane = model.addPlane(aDocument, aPlane.result(), 50, False)
79 aSession.finishOperation()
80 assert (len(aPlane.results()) > 0)
81
82 # Test a plane by coincidence to point
83 aSession.startOperation()
84 aCoincidentPlane = model.addPlane(aDocument, aPlane.result(), aPoint2.result())
85 aSession.finishOperation()
86 assert (len(aCoincidentPlane.results()) > 0)
87
88 # Create an axis
89 aSession.startOperation()
90 anAxis = model.addAxis(aDocument, 100, 0, 0)
91 aSession.finishOperation()
92
93 # Test a plane by rotation
94 aSession.startOperation()
95 aRotatedPlane = model.addPlane(aDocument, aCoincidentPlane.result(), anAxis.result(), 45)
96 aSession.finishOperation()
97 assert (len(aRotatedPlane.results()) > 0)
98
99 # Test plane by two parallel planes
100 aSession.startOperation()
101 aPlane = model.addPlane(aDocument, aCoincidentPlane.result(), aPlane.result())
102 aSession.finishOperation()
103 assert (len(aPlane.results()) > 0)
104
105 assert(model.checkPythonDump())