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
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