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