Salome HOME
Merge from V6_main 01/04/2013
[modules/geom.git] / src / GEOM_SWIG / GEOM_example4.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2013  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.
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 #  GEOM GEOM_SWIG : binding of C++ omplementaion with Python
25 #  File   : GEOM_example4.py
26 #  Module : GEOM
27 #import SMESH
28 #import smeshpy
29 #
30 import salome
31 from salome import sg
32 import math
33
34 import geompy
35
36 geom = salome.lcc.FindOrLoadComponent("FactoryServer", "GEOM")
37 myBuilder = salome.myStudy.NewBuilder()
38 #from geompy import gg
39
40 #smeshgui = salome.ImportComponentGUI("SMESH")
41 #smeshgui.Init(salome.myStudyId);
42
43 ShapeTypeCompSolid = 1
44 ShapeTypeSolid = 2
45 ShapeTypeShell = 3
46 ShapeTypeFace = 4
47 ShapeTypeWire = 5
48 ShapeTypeEdge = 6
49 ShapeTypeVertex = 7
50
51 pi=math.pi
52
53 # ---------------------------------------------
54 xa=math.sin(pi/12)
55 ya=0
56 za=math.cos(pi/12)
57
58 xb=0
59 yb=math.sin(pi/18)
60 zb=math.cos(pi/18)
61
62 xc=math.cos(-pi/18)
63 yc=0
64 zc=math.sin(-pi/18)
65
66 rc1=150
67 hc1=300
68 rc2=150
69 rc3=150
70 rc4=300
71 # ---------------------------------------------
72 point_0 = geompy.MakeVertex(0, 0, 0)
73 point_z = geompy.MakeVertex(0, 0, 1)
74
75 point_a = geompy.MakeVertex(xa, ya, za)
76 point_b = geompy.MakeVertex(xb, yb, zb)
77 point_c = geompy.MakeVertex(xc, yc, zc)
78
79 dir_z = geompy.MakeVector(point_0,point_z)
80 dir_a = geompy.MakeVector(point_0,point_a)
81 dir_b = geompy.MakeVector(point_0,point_b)
82 dir_c = geompy.MakeVector(point_0,point_c)
83
84 cyl_1 = geompy.MakeCylinder(point_0, dir_z, rc1, hc1)
85
86 hc2=2*hc1
87 cyl_t = geompy.MakeCylinder(point_0, dir_a, rc2, hc2)
88 cyl_a = geompy.MakeTranslation(cyl_t, 1.2*rc1, 0.1*rc1, -0.5*hc1)
89
90 hc3=2*hc1
91 cyl_t = geompy.MakeCylinder(point_0, dir_b, rc3, hc3)
92 cyl_b = geompy.MakeTranslation(cyl_t, -1.2*rc1, -0.1*rc1, -0.5*hc1)
93
94 hc4=2*hc1
95 cyl_t = geompy.MakeCylinder(point_0, dir_c, rc4, hc4)
96 cyl_t = geompy.MakeRotation(cyl_t, dir_c, pi/2)
97 cyl_c = geompy.MakeTranslation(cyl_t, -hc1, 0, 0)
98 cyl_d = geompy.MakeTranslation(cyl_t, -hc1, 0, 1.3*rc4)
99
100 inter_t = geompy.MakeBoolean(cyl_c,cyl_d, 1) # common
101
102 blob_t = geompy.MakeBoolean(cyl_1, cyl_a, 2) # cut
103 blob_t = geompy.MakeBoolean(blob_t, cyl_b, 2)
104
105 blob = geompy.MakeBoolean(blob_t, inter_t, 1) # common
106
107 idblob = geompy.addToStudy(blob,"blob")
108 #idc = geompy.addToStudy(cyl_c,"cyl_c")
109 #idd = geompy.addToStudy(cyl_d,"cyl_d")