2013-02-12 17:35:16 +06:00
|
|
|
# Cut
|
|
|
|
|
|
|
|
import salome
|
2013-04-04 13:06:43 +06:00
|
|
|
salome.salome_init()
|
|
|
|
import GEOM
|
|
|
|
from salome.geom import geomBuilder
|
|
|
|
geompy = geomBuilder.New(salome.myStudy)
|
2013-02-12 17:35:16 +06:00
|
|
|
gg = salome.ImportComponentGUI("GEOM")
|
|
|
|
|
|
|
|
# create a vertex and a vector
|
|
|
|
p1 = geompy.MakeVertex(25, 55, 0)
|
|
|
|
p2 = geompy.MakeVertex( 0, 0, 0)
|
|
|
|
v = geompy.MakeVector(p1, p2)
|
|
|
|
|
|
|
|
# create a cylinder
|
|
|
|
height = 35
|
|
|
|
radius1 = 20
|
|
|
|
cylinder = geompy.MakeCylinder(p1, v, radius1, height)
|
|
|
|
|
|
|
|
# create a sphere
|
|
|
|
sphere = geompy.MakeSphereR(40)
|
|
|
|
|
2013-05-23 12:42:48 +06:00
|
|
|
# create a box
|
|
|
|
box = geompy.MakeBoxDXDYDZ(80, 80, 80)
|
|
|
|
|
2013-02-12 17:35:16 +06:00
|
|
|
#cut
|
2013-05-23 12:42:48 +06:00
|
|
|
cut1 = geompy.MakeCut(cylinder, sphere)
|
|
|
|
cut2 = geompy.MakeCutList(cylinder, [sphere, box])
|
2013-02-12 17:35:16 +06:00
|
|
|
|
|
|
|
# add objects in the study
|
2013-05-23 12:42:48 +06:00
|
|
|
id_cylinder = geompy.addToStudy(cylinder, "Cylinder")
|
|
|
|
id_sphere = geompy.addToStudy(sphere, "Sphere")
|
|
|
|
id_box = geompy.addToStudy(box, "Box")
|
|
|
|
id_cut1 = geompy.addToStudy(cut1, "Cut_1")
|
|
|
|
id_cut2 = geompy.addToStudy(cut2, "Cut_2")
|
2013-02-12 17:35:16 +06:00
|
|
|
|
|
|
|
# display the results
|
2013-05-23 12:42:48 +06:00
|
|
|
gg.createAndDisplayGO(id_cylinder)
|
|
|
|
gg.setDisplayMode(id_cylinder,1)
|
|
|
|
gg.createAndDisplayGO(id_sphere)
|
|
|
|
gg.setDisplayMode(id_sphere,1)
|
|
|
|
gg.createAndDisplayGO(id_box)
|
|
|
|
gg.setDisplayMode(id_box,1)
|
|
|
|
gg.createAndDisplayGO(id_cut1)
|
|
|
|
gg.setDisplayMode(id_cut1,1)
|
|
|
|
gg.createAndDisplayGO(id_cut2)
|
|
|
|
gg.setDisplayMode(id_cut2,1)
|