Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mayavi, python axes INDICATOR

does anyone know how to switch on the axes INDICATOR in python code? I can switch it on when the graph is plotted, but I wanna know how to do it in code. I have found only how to switch on the axes:

mlab.axes()

but it is not the indicator (I mean that three arrows X,Y and Z)

Thank you

like image 530
Nic Taky Nic Avatar asked Dec 12 '22 03:12

Nic Taky Nic


1 Answers

The following code switches on the axes indicator:

mlab.orientation_axes()
like image 178
pberkes Avatar answered Jan 01 '23 02:01

pberkes