Code: Alles auswählen
from enthought.mayavi import mlab
x = [0.0,0.5] #Koordinaten
y = [0.0,0.5]
z = [0.0,0.5]
an = [70, 25] #Radien
mlab.points3d(x, y, z, an, color=(1,0.5,1))
mlab.show()
Code: Alles auswählen
from enthought.mayavi import mlab
x = [0.0,0.5] #Koordinaten
y = [0.0,0.5]
z = [0.0,0.5]
an = [70, 25] #Radien
mlab.points3d(x, y, z, an, color=(1,0.5,1))
mlab.show()
Code: Alles auswählen
mlab.points3d(x, y, z, s, scale_factor = 1)
Code: Alles auswählen
pts = mlab.points3d(x, y, z, s)
pts.glyph.glyph.clamping = False
Code: Alles auswählen
In [3]: x = [0, 0.5]
In [4]: pts = mlab.points3d(x, x, x, [1,2])
In [5]: pts.glyph.glyph.clamping = False
In [6]: mlab.show()
Code: Alles auswählen
In [7]: pts = mlab.points3d(x, x, x, [1,2])
In [8]: mlab.show()