mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-12-28 10:20:35 +05:00
15 lines
340 B
Python
15 lines
340 B
Python
|
# Changing Color
|
||
|
|
||
|
import salome
|
||
|
import geompy
|
||
|
box = geompy.MakeBox(0,0,0, 50,50,50)
|
||
|
|
||
|
sphere = geompy.MakeSphere(50,50,50, 30)
|
||
|
fuse = geompy.MakeBoolean(box,sphere,3)
|
||
|
fuse_id = geompy.addToStudy(fuse,"Fuse")
|
||
|
|
||
|
gg = salome.ImportComponentGUI("GEOM")
|
||
|
gg.createAndDisplayGO(fuse_id)
|
||
|
gg.setDisplayMode(fuse_id,1)
|
||
|
gg.setColor(fuse_id,218,165,31)
|