2013-02-12 17:35:16 +06:00
|
|
|
# Propagate
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
# create a box
|
2013-02-28 20:00:05 +06:00
|
|
|
check_box = geompy.MakeBoxDXDYDZ(200, 200, 200)
|
2013-02-12 17:35:16 +06:00
|
|
|
|
|
|
|
# build all possible propagation groups
|
|
|
|
listChains = geompy.Propagate(check_box)
|
|
|
|
|
|
|
|
# add objects in the study
|
|
|
|
geompy.addToStudy(check_box, "Box")
|
|
|
|
ii = 1
|
|
|
|
for chain in listChains:
|
|
|
|
geompy.addToStudyInFather(check_box, chain, "propagation chain " + `ii`)
|
|
|
|
ii = ii + 1
|
|
|
|
pass
|
|
|
|
|
2016-10-06 12:55:17 +05:00
|
|
|
salome.sg.updateObjBrowser(True)
|