I am using jupyter ipython notebook to generate 3d plots using matplotlib. I can get zoom and and pan options with the %matplotlib notebook command. I would like to download the plots with a specific camera angle that I choose with the pan/rotate option. Using savefig saves the default camera angle of the plot. How can I do this?
Asked
Active
Viewed 112 times
0
Tanmay Bhore
- 59
- 1
- 7
-
1Possible duplicate of [how to set "camera position" for 3d plots using python/matplotlib?](https://stackoverflow.com/questions/12904912/how-to-set-camera-position-for-3d-plots-using-python-matplotlib) – Sheldore Jun 17 '19 at 12:46
-
1`savefig` should save the figure in its currently active state. Of course `savefig` should be called only once the zooming and panning is finished. If that is not the case for you, you might want to show a [mcve] of the issue. – ImportanceOfBeingErnest Jun 17 '19 at 12:48