Preventing axis from updating on camera move - mayavi python -
Preventing axis from updating on camera move - mayavi python -
i found flag command set allowed me prevent axes of scene updating on photographic camera move. can't find again. i've been digging through documentation not having luck.
to farther explain, don't want axes update positioning shown in these 2 images:
before move:
after move:
not sure understand need maybe can try:
axes.axes.fly_mode = 'none'
for example:
from mayavi import mlab myfig = mlab.figure() myplot = mlab.plot3d([0,1,2],[0,1,2],[0,1,1]) myaxes = mlab.axes() myaxes.axes.fly_mode = 'none' mlab.show()
python axis-labels mayavi mlab
Comments
Post a Comment