Salome HOME
a3b89f371dad7a77e7f017c2e1ee2c068811c225
[modules/geom.git] / src / GEOM_SWIG / GEOM_Nut.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2023  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 #
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License, or (at your option) any later version.
11 #
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20 #
21 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #
23
24 #####################################################################
25 #Created                :17/02/2005
26 #Author                 :MASLOV Eugeny, KOVALTCHUK Alexey 
27 #####################################################################
28 #
29 import os
30 import math
31
32 import salome
33 salome.salome_init()
34 import GEOM
35 from salome.geom import geomBuilder
36 geompy = geomBuilder.New()
37
38 #Sketcher_1 creation
39 Sketcher_1 = geompy.MakeSketcher("Sketcher:F 100 -57.7:TT 100 57.7:TT 0 115.47:TT -100 57.7:TT -100 -57.7:TT 0 -115.47:WW") 
40 geompy.addToStudy(Sketcher_1, "Sketcher_1")
41 Face_1 = geompy.MakeFace(Sketcher_1, 1)
42 geompy.addToStudy(Face_1, "Face_1")
43
44 #Line creation
45 Line_1 = geompy.MakeLineTwoPnt(geompy.MakeVertex(0,0,0), geompy.MakeVertex(0,0,100))
46 geompy.addToStudy(Line_1, "Line_1")
47
48 #Prism creation
49 Prism_1 = geompy.MakePrismVecH(Face_1, Line_1, 100)
50 geompy.addToStudy(Prism_1, "Prism_1")
51
52 #Sketcher_2 creation
53 Sketcher_2 = geompy.MakeSketcher("Sketcher:F 50 0:TT 80 0:TT 112 13:TT 112 48:TT 80 63:TT 80 90:TT 50 90:WW", [0,0,0, 1,0,0, 0,1,0]) 
54 geompy.addToStudy(Sketcher_2, "Sketcher_2")
55 Face_2 = geompy.MakeFace(Sketcher_2, 1)
56 geompy.addToStudy(Face_2, "Face_2")
57
58 #Revolution creation
59 Revolution_1 = geompy.MakeRevolution(Face_2, Line_1, 2*math.pi)
60 geompy.addToStudy(Revolution_1, "Revolution_1")
61
62 #Common applying
63 Common_1 = geompy.MakeBoolean(Revolution_1, Prism_1, 1)
64 geompy.addToStudy(Common_1, "Common_1")
65
66 #Explode Common_1 on edges
67 CommonExplodedListEdges = geompy.SubShapeAll(Common_1, geompy.ShapeType["EDGE"])
68 for i in range(0, len(CommonExplodedListEdges)):
69     name = "Edge_"+str(i+1)
70     geompy.addToStudyInFather(Common_1, CommonExplodedListEdges[i], name)
71
72 #Fillet applying
73 #ID = geompy.GetSubShapeID(Common_1, CommonExplodedListEdges[0])
74 Fillet_1 = geompy.MakeFillet(Common_1, 10, geompy.ShapeType["EDGE"], [5])
75 geompy.addToStudy(Fillet_1, "Fillet_1")
76
77 #Chamfer applying
78 Chamfer_1 = geompy.MakeChamferEdge(Fillet_1, 10, 10, 44, 114 )
79 geompy.addToStudy(Chamfer_1, "Chamfer_1")
80
81 Chamfer_2 = geompy.MakeChamferEdge(Chamfer_1, 10, 10, 20, 30 )
82 geompy.addToStudy(Chamfer_2, "Chamfer_2")
83
84 #Import of the shape from "slots.brep"
85 thePath = os.getenv("DATA_DIR")
86 theFileName = thePath + "/Shapes/Brep/slots.brep"
87 theShapeForCut = geompy.ImportBREP(theFileName)
88 geompy.addToStudy(theShapeForCut, "slot.brep_1")
89
90 #Cut applying
91 Cut_1 = geompy.MakeBoolean(Chamfer_2, theShapeForCut, 2)
92 geompy.addToStudy(Cut_1, "Cut_1")
93
94 salome.sg.updateObjBrowser()
95