Salome HOME
correct previous integration (Porting to Python 2.6)
[modules/smesh.git] / src / SMESH_SWIG / SMESH_test3.py
1 #  -*- coding: iso-8859-1 -*-
2 #  Copyright (C) 2007-2008  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 #  File   : SMESH_test3.py
24 #  Module : SMESH
25 #import salome
26 #
27 import math
28 import geompy
29
30 pi = math.pi
31
32 # ---------------------------------------------
33 xa = math.sin(pi/12)
34 ya = 0
35 za = math.cos(pi/12)
36
37 xb = 0
38 yb = math.sin(pi/18)
39 zb = math.cos(pi/18)
40
41 xc = math.cos(-pi/18)
42 yc = 0
43 zc = math.sin(-pi/18)
44
45 rc1 = 150
46 rc2 = 150
47 rc3 = 150
48 rc4 = 300
49
50 hc1 = 300
51 hc2 = 2*hc1
52 hc3 = 2*hc1
53 hc4 = 2*hc1
54
55 # ---------------------------------------------
56 point_0 = geompy.MakeVertex(0, 0, 0)
57 point_z = geompy.MakeVertex(0, 0, 1)
58
59 point_a = geompy.MakeVertex(xa, ya, za)
60 point_b = geompy.MakeVertex(xb, yb, zb)
61 point_c = geompy.MakeVertex(xc, yc, zc)
62
63 dir_z = geompy.MakeVector(point_0, point_z)
64 dir_a = geompy.MakeVector(point_0, point_a)
65 dir_b = geompy.MakeVector(point_0, point_b)
66 dir_c = geompy.MakeVector(point_0, point_c)
67
68 axe_z = dir_z
69 axe_a = dir_a
70 axe_b = dir_b
71 axe_c = dir_c
72
73 cyl_1 = geompy.MakeCylinder(point_0, dir_z, rc1, hc1)
74
75 cyl_t = geompy.MakeCylinder(point_0, dir_a, rc2, hc2)
76 cyl_a = geompy.MakeTranslation(cyl_t, 1.2*rc1, 0.1*rc1, -0.5*hc1)
77
78 cyl_t = geompy.MakeCylinder(point_0, dir_b, rc3, hc3)
79 cyl_b = geompy.MakeTranslation(cyl_t, -1.2*rc1, -0.1*rc1, -0.5*hc1)
80
81 cyl_t = geompy.MakeCylinder(point_0, dir_c, rc4, hc4)
82 cyl_t = geompy.MakeRotation(cyl_t, axe_c, pi/2)
83 cyl_c = geompy.MakeTranslation(cyl_t, -hc1, 0, 0)
84 cyl_d = geompy.MakeTranslation(cyl_t, -hc1, 0, 1.3*rc4)
85
86 inter_t = geompy.MakeBoolean(cyl_c,cyl_d, 1) # common
87
88 blob_t = geompy.MakeBoolean(cyl_1, cyl_a, 2) # cut
89 blob_t = geompy.MakeBoolean(blob_t, cyl_b, 2)
90
91 blob = geompy.MakeBoolean(blob_t, inter_t, 1) # common
92
93 idblob = geompy.addToStudy(blob,"blob")
94 #idc = geompy.addToStudy(cyl_c,"cyl_c")
95 #idd = geompy.addToStudy(cyl_d,"cyl_d")