How is it possible to zoom such a picture? I tried calling zoom!(m.figure.scene, [0,0,0],10.,false))
(where m is the result of the plot command above), but this does not change anything when saving the plot to a file.
For zooming, it should be enough to call zoom!(scene, zoom_step) for your figure’s scene where it zooms in for values of zoom_step smaller than 1, and zooms out if greater than 1.
If you’re using an older version you may need to call update_cam!(scene, cameracontrols(scene)) after calling zoom. Also you should be passing ax.scene rather than fig.scene.