Closed Dominic-DallOsto closed 1 month ago
matplotlib v3.9 has the extra factor of 25/24 added to the zoom that earlier versions didn't have, which causes 3D plots to appear slightly zoomed in on newer versions
25/24
Old:
New:
This is explained in the matplotlib docs here. To force the old behaviour we just have to set plt.rcParams['axes3d.automargin'] = True
plt.rcParams['axes3d.automargin'] = True
Problem
matplotlib v3.9 has the extra factor of
25/24
added to the zoom that earlier versions didn't have, which causes 3D plots to appear slightly zoomed in on newer versionsOld:
New: