Re: [Matplotlib-users] Old-style/text figures

2014-11-11 Thread Andy Buckley
Hmm, no reply again. Are these emails getting through? I appreciate this was quite a long and detailed question -- maybe I should raise these sorts of things on the MPL dev list instead? I'm happy to contribute on improving the (TeX) font control, if there's interest, but for now found a workaroun

[Matplotlib-users] Axis default limits with a Circle patch

2014-11-11 Thread Amit Saha
Hi all, Consider the following code: import matplotlib.pyplot as plt fig = plt.figure() ax = fig.gca() circle = plt.Circle((0, 0), radius = 0.5) ax.add_patch(circle) print(plt.axis()) plt.show() The default axis limits are printed as: (0.0, 1.0, 0.0, 1.0) I am not sure why this is the case. S