1 # Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
3 # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 # File : SMESH_test3.py
31 # ---------------------------------------------
54 # ---------------------------------------------
55 point_0 = geompy.MakeVertex(0, 0, 0)
56 point_z = geompy.MakeVertex(0, 0, 1)
58 point_a = geompy.MakeVertex(xa, ya, za)
59 point_b = geompy.MakeVertex(xb, yb, zb)
60 point_c = geompy.MakeVertex(xc, yc, zc)
62 dir_z = geompy.MakeVector(point_0, point_z)
63 dir_a = geompy.MakeVector(point_0, point_a)
64 dir_b = geompy.MakeVector(point_0, point_b)
65 dir_c = geompy.MakeVector(point_0, point_c)
72 cyl_1 = geompy.MakeCylinder(point_0, dir_z, rc1, hc1)
74 cyl_t = geompy.MakeCylinder(point_0, dir_a, rc2, hc2)
75 cyl_a = geompy.MakeTranslation(cyl_t, 1.2*rc1, 0.1*rc1, -0.5*hc1)
77 cyl_t = geompy.MakeCylinder(point_0, dir_b, rc3, hc3)
78 cyl_b = geompy.MakeTranslation(cyl_t, -1.2*rc1, -0.1*rc1, -0.5*hc1)
80 cyl_t = geompy.MakeCylinder(point_0, dir_c, rc4, hc4)
81 cyl_t = geompy.MakeRotation(cyl_t, axe_c, pi/2)
82 cyl_c = geompy.MakeTranslation(cyl_t, -hc1, 0, 0)
83 cyl_d = geompy.MakeTranslation(cyl_t, -hc1, 0, 1.3*rc4)
85 inter_t = geompy.MakeBoolean(cyl_c,cyl_d, 1) # common
87 blob_t = geompy.MakeBoolean(cyl_1, cyl_a, 2) # cut
88 blob_t = geompy.MakeBoolean(blob_t, cyl_b, 2)
90 blob = geompy.MakeBoolean(blob_t, inter_t, 1) # common
92 idblob = geompy.addToStudy(blob,"blob")
93 #idc = geompy.addToStudy(cyl_c,"cyl_c")
94 #idd = geompy.addToStudy(cyl_d,"cyl_d")