geom/doc/salome/examples/complex_objs_ex03.py

41 lines
1005 B
Python
Raw Normal View History

2013-02-12 17:35:16 +06:00
# Creation of a Filling
import salome
salome.salome_init()
import GEOM
from salome.geom import geomBuilder
2017-06-13 14:57:14 +05:00
geompy = geomBuilder.New()
2013-02-12 17:35:16 +06:00
gg = salome.ImportComponentGUI("GEOM")
mindeg = 2
maxdeg = 5
tol3d = 0.0001
tol2d = 0.0001
nbiter = 5
# create a vertex and a vector
p1 = geompy.MakeVertex( -30., -30., 50.)
p2 = geompy.MakeVertex( -60., -60., 30.)
p3 = geompy.MakeVertex( -30., -30., 10.)
# create an arc from three points
arc = geompy.MakeArc(p1, p2, p3)
ContoursList = []
for i in range(4):
2013-02-12 17:35:16 +06:00
S = geompy.MakeTranslation(arc, i * 50., 0., 0.)
ContoursList.append(S)
2013-02-12 17:35:16 +06:00
compound = geompy.MakeCompound(ContoursList)
2013-02-12 17:35:16 +06:00
# create a filling
filling = geompy.MakeFilling(compound, mindeg, maxdeg, tol3d, tol2d, nbiter)
# add objects in the study
id_compound = geompy.addToStudy(compound,"Compound")
id_filling = geompy.addToStudy(filling,"Filling")
# display the compound and the filling
gg.createAndDisplayGO(id_compound)
gg.createAndDisplayGO(id_filling)
gg.setDisplayMode(id_filling,1)