1 # GEOM GEOM_SWIG : binding of C++ omplementaion with Python
3 # Copyright (C) 2003 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
24 # File : GEOM_example4.py
35 geom = salome.lcc.FindOrLoadComponent("FactoryServer", "GEOM")
36 myBuilder = salome.myStudy.NewBuilder()
37 #from geompy import gg
39 #smeshgui = salome.ImportComponentGUI("SMESH")
40 #smeshgui.Init(salome.myStudyId);
42 ShapeTypeCompSolid = 1
52 # ---------------------------------------------
70 # ---------------------------------------------
71 point_0 = geompy.MakeVertex(0, 0, 0)
72 point_z = geompy.MakeVertex(0, 0, 1)
74 point_a = geompy.MakeVertex(xa, ya, za)
75 point_b = geompy.MakeVertex(xb, yb, zb)
76 point_c = geompy.MakeVertex(xc, yc, zc)
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)
83 cyl_1 = geompy.MakeCylinder(point_0, dir_z, rc1, 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)
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)
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)
99 inter_t = geompy.MakeBoolean(cyl_c,cyl_d, 1) # common
101 blob_t = geompy.MakeBoolean(cyl_1, cyl_a, 2) # cut
102 blob_t = geompy.MakeBoolean(blob_t, cyl_b, 2)
104 blob = geompy.MakeBoolean(blob_t, inter_t, 1) # common
106 idblob = geompy.addToStudy(blob,"blob")
107 #idc = geompy.addToStudy(cyl_c,"cyl_c")
108 #idd = geompy.addToStudy(cyl_d,"cyl_d")