Salome HOME
Merge with version on tag OCC-V2_1_0d
[modules/geom.git] / src / GEOM_SWIG / GEOM_example4.py
1 #  GEOM GEOM_SWIG : binding of C++ omplementaion with Python
2 #
3 #  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5
6 #  This library is free software; you can redistribute it and/or 
7 #  modify it under the terms of the GNU Lesser General Public 
8 #  License as published by the Free Software Foundation; either 
9 #  version 2.1 of the License. 
10
11 #  This library is distributed in the hope that it will be useful, 
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 #  Lesser General Public License for more details. 
15
16 #  You should have received a copy of the GNU Lesser General Public 
17 #  License along with this library; if not, write to the Free Software 
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19
20 #  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 #
22 #
23 #
24 #  File   : GEOM_example4.py
25 #  Module : GEOM
26
27 #import SMESH
28 #import smeshpy
29 import salome
30 from salome import sg
31 import math
32
33 import geompy
34
35 geom = salome.lcc.FindOrLoadComponent("FactoryServer", "GEOM")
36 myBuilder = salome.myStudy.NewBuilder()
37 from geompy import gg
38
39 #smeshgui = salome.ImportComponentGUI("SMESH")
40 #smeshgui.Init(salome.myStudyId);
41
42 ShapeTypeCompSolid = 1
43 ShapeTypeSolid = 2
44 ShapeTypeShell = 3
45 ShapeTypeFace = 4
46 ShapeTypeWire = 5
47 ShapeTypeEdge = 6
48 ShapeTypeVertex = 7
49
50 pi=math.pi
51
52 # ---------------------------------------------
53 xa=math.sin(pi/12)
54 ya=0
55 za=math.cos(pi/12)
56
57 xb=0
58 yb=math.sin(pi/18)
59 zb=math.cos(pi/18)
60
61 xc=math.cos(-pi/18)
62 yc=0
63 zc=math.sin(-pi/18)
64
65 rc1=150
66 hc1=300
67 rc2=150
68 rc3=150
69 rc4=300
70 # ---------------------------------------------
71 point_0 = geompy.MakeVertex(0, 0, 0)
72 point_z = geompy.MakeVertex(0, 0, 1)
73
74 point_a = geompy.MakeVertex(xa, ya, za)
75 point_b = geompy.MakeVertex(xb, yb, zb)
76 point_c = geompy.MakeVertex(xc, yc, zc)
77
78 dir_z = geompy.MakeVector(point_0,point_z)
79 dir_a = geompy.MakeVector(point_0,point_a)
80 dir_b = geompy.MakeVector(point_0,point_b)
81 dir_c = geompy.MakeVector(point_0,point_c)
82
83 cyl_1 = geompy.MakeCylinder(point_0, dir_z, rc1, hc1)
84
85 hc2=2*hc1
86 cyl_t = geompy.MakeCylinder(point_0, dir_a, rc2, hc2)
87 cyl_a = geompy.MakeTranslation(cyl_t, 1.2*rc1, 0.1*rc1, -0.5*hc1)
88
89 hc3=2*hc1
90 cyl_t = geompy.MakeCylinder(point_0, dir_b, rc3, hc3)
91 cyl_b = geompy.MakeTranslation(cyl_t, -1.2*rc1, -0.1*rc1, -0.5*hc1)
92
93 hc4=2*hc1
94 cyl_t = geompy.MakeCylinder(point_0, dir_c, rc4, hc4)
95 cyl_t = geompy.MakeRotation(cyl_t, dir_c, pi/2)
96 cyl_c = geompy.MakeTranslation(cyl_t, -hc1, 0, 0)
97 cyl_d = geompy.MakeTranslation(cyl_t, -hc1, 0, 1.3*rc4)
98
99 inter_t = geompy.MakeBoolean(cyl_c,cyl_d, 1) # common
100
101 blob_t = geompy.MakeBoolean(cyl_1, cyl_a, 2) # cut
102 blob_t = geompy.MakeBoolean(blob_t, cyl_b, 2)
103
104 blob = geompy.MakeBoolean(blob_t, inter_t, 1) # common
105
106 idblob = geompy.addToStudy(blob,"blob")
107 #idc = geompy.addToStudy(cyl_c,"cyl_c")
108 #idd = geompy.addToStudy(cyl_d,"cyl_d")