geom/doc/salome/examples/viewing_geom_objs_ex04.py

20 lines
541 B
Python
Raw Normal View History

2013-02-12 17:35:16 +06:00
# Set Point Marker
import os
2013-02-12 17:35:16 +06:00
import salome
salome.salome_init()
2013-02-28 20:00:05 +06:00
import GEOM
from salome.geom import geomBuilder
geompy = geomBuilder.New(salome.myStudy)
2013-02-12 17:35:16 +06:00
texture_file = os.path.join(os.getenv("GEOM_ROOT_DIR"), "share", "salome", "resources", "geom", "textures", "texture1.dat")
texture = geompy.LoadTexture(texture_file)
2013-02-12 17:35:16 +06:00
v1 = geompy.MakeVertex(0, 0, 0)
v2 = geompy.MakeVertex(100, 0, 0)
v3 = geompy.MakeVertex(0, 100, 0)
v1.SetMarkerStd(GEOM.MT_O_PLUS, GEOM.MS_25)
v2.SetMarkerStd(GEOM.MT_BALL, GEOM.MS_40)
v3.SetMarkerTexture(texture)