Salome HOME
4e36e13689d9e0225f1b87c291e4da0c113aa8e7
[modules/shaper.git] / src / FeaturesPlugin / Test / TestLimitTolerance_Face.py
1 # Copyright (C) 2021-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 import os
21 import salome
22 from salome.shaper import model
23 from GeomAPI import GeomAPI_Shape
24
25 salome.salome_init()
26
27 # Use the 'data' subfolder to search for the BREP files
28 data_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data")
29
30 # Create part
31 model.begin()
32 partSet = model.moduleDocument()
33 Part_1 = model.addPart(partSet)
34 Part_1_doc = Part_1.document()
35
36 # Import first shape (part of torus)
37 Import_1 = model.addImport(Part_1_doc, os.path.join(data_dir, "face_peau_bug1868.brep"))
38 model.do()
39 Import_1.setName("Torus_1")
40 Import_1.result().setName("Torus_1_1")
41
42 # Import second shape (planar face)
43 Import_2 = model.addImport(Part_1_doc, os.path.join(data_dir, "PLANFISS_bug1868.brep"))
44 model.do()
45 Import_2.setName("Face_1")
46 Import_2.result().setName("Face_1_1")
47
48 # Limit the tolerance of the planar face (in order to get a good intersection result)
49 LimitTolerance_1 = model.addLimitTolerance(Part_1_doc, model.selection("FACE", "Face_1_1"), 0.0001)
50
51 # Create intersection
52 Intersection_1 = model.addIntersection(Part_1_doc, [model.selection("FACE", "LimitTolerance_1_1"), model.selection("FACE", "Torus_1_1")], keepSubResults = True)
53 model.end()
54
55 # Result should be single edge with 2 vertices
56 model.checkResult(Intersection_1, model, 1, [0], [0], [0], [1], [2])