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