1 # Copyright (C) 2014-2021 CEA/DEN, EDF R&D
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.
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.
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
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 Test case for Construction Plane feature. Written on High API.
23 from ModelAPI import *
26 from salome.shaper import model
29 aSession = ModelAPI_Session.get()
32 aDocument = aSession.activeDocument()
33 aSession.startOperation()
34 model.addPart(aDocument)
35 aDocument = aSession.activeDocument()
36 aSession.finishOperation()
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)
45 aSession.startOperation()
46 aPoint1 = model.addPoint(aDocument, 0, 0, 0)
47 aSession.finishOperation()
50 aSession.startOperation()
51 aPoint2 = model.addPoint(aDocument, 100, 0, 0)
52 aSession.finishOperation()
55 aSession.startOperation()
56 aPoint3 = model.addPoint(aDocument, 50, 50, 50)
57 aSession.finishOperation()
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)
66 aSession.startOperation()
67 anAxis = model.addAxis(aDocument, 0, 0, 100)
68 aSession.finishOperation()
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)
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)
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)
89 aSession.startOperation()
90 anAxis = model.addAxis(aDocument, 100, 0, 0)
91 aSession.finishOperation()
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)
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)
105 assert(model.checkPythonDump())