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_example3.py
25 # Author : Paul RASCLE, EDF
32 from time import sleep
33 import salome_ComponentGUI
34 geom = salome.lcc.FindOrLoadComponent("FactoryServer", "GEOM")
35 myBuilder = salome.myStudy.NewBuilder()
37 gg = salome.ImportComponentGUI("GEOM")
39 BasicOp = geom.GetIBasicOperations(salome.myStudyId)
40 PrimOp = geom.GetI3DPrimOperations(salome.myStudyId)
41 InsertOp = geom.GetIInsertOperations(salome.myStudyId)
42 TrsfOp = geom.GetITransformOperations(salome.myStudyId)
44 point0 = BasicOp.MakePointXYZ(0.,0.,0.)
45 pointz1 = BasicOp.MakePointXYZ(0.,0.,1.)
46 dirz = BasicOp.MakeVectorTwoPnt(point0,pointz1)
48 torus1 = PrimOp.MakeTorusPntVecRR(point0,dirz,150.,25.)
49 id_torus1 = geompy.addToStudy(torus1,"torus1")
50 if not isinstance(gg, type(salome_ComponentGUI)):
51 gg.createAndDisplayGO(id_torus1)
53 torus2 = InsertOp.MakeCopy(torus1)
55 vec1 = BasicOp.MakeVectorDXDYDZ(0.,0.,100.)
56 torus2 = TrsfOp.TranslateVectorCopy(torus2,vec1)
57 id_torus2 = geompy.addToStudy(torus2,"torus2")
58 if not isinstance(gg, type(salome_ComponentGUI)):
59 gg.createAndDisplayGO(id_torus2)
61 cylz1 = PrimOp.MakeCylinderPntVecRH(point0,dirz,25.,100.)
67 acyl = InsertOp.MakeCopy(cylz1)
68 x = 150. * math.cos(ind * math.pi/3.)
69 y = 150. * math.sin(ind * math.pi/3.)
71 vec_i = BasicOp.MakeVectorDXDYDZ(x,y,z)
73 acyl = TrsfOp.TranslateVectorCopy(acyl,vec_i)
74 id_acyl = geompy.addToStudy(acyl,name)
75 if not isinstance(gg, type(salome_ComponentGUI)):
76 gg.createAndDisplayGO(id_acyl)
77 shapeList.append(acyl)
78 idList.append(id_acyl)
81 shapeList.append(torus1)
82 shapeList.append(torus2)
83 idList.append(id_torus1)
84 idList.append(id_torus2)
86 cage = geompy.MakeCompound(shapeList)
87 id_cage = geompy.addToStudy(cage,"cage")
88 if not isinstance(gg, type(salome_ComponentGUI)):
89 gg.createAndDisplayGO(id_cage)
106 sg.Display(id_torus1)
107 sg.Display(id_torus2)
109 if not isinstance(gg, type(salome_ComponentGUI)):
110 gg.setTransparency(id_torus1,0.5)
112 gg.setDisplayMode(id_torus1,1)
113 gg.setDisplayMode(id_torus2,1)
114 gg.setDisplayMode(id_acyl,1)
115 #gg.setDisplayMode(id_cage,1)
117 gg.setColor(id_torus1,0,0,255)
118 gg.setColor(id_torus2,255,0,0)
119 gg.setColor(id_acyl,0,255,0)
120 #gg.setColor(id_cage,255,255,0)