Mayavi how to show the axes grid
问题 In Mayavi I would like to see the grid of the axes in the following plot # Source: <<https://scicomp.stackexchange.com/a/23148/10048>>. import numpy as np from mayavi import mlab # Test data: Matlab `peaks()` x, y = np.mgrid[-3:3:50j, -3:3:50j] z = 3*(1 - x)**2 * np.exp(-x**2 - (y + 1)**2) \ - 10*(x/5 - x**3 - y**5)*np.exp(-x**2 - y**2) \ - 1./3*np.exp(-(x + 1)**2 - y**2) mlab.figure(bgcolor=(1, 1, 1)) # Make background white. surf = mlab.surf(x, y, z, colormap='RdYlBu', warp_scale=0.3,