Hello, I've used matplotlib for a while but never had cause to ask a
question until now. I am trying to add a patch to an axis, but would like
the patch to remain the same size when, interactively, I resize the
resulting figure. I am using TkAgg, and trying the following:

>>> import matplotlib.pyplot as plt
>>> import matplotlib.patches as patches
>>> ax = plt.gca()
>>> cp = patches.Circle((.5,.5),.025)
>>> ax.add_patch(cp)
>>> ax.set_aspect('equal')
>>> plt.draw()
>>> plt.show()

This gives me a nice blue circle in the middle of the plot, and using
ax.set_aspect('equal') I know that it will not be distorted into an ellipse.
But is there a way to ensure that when I make the Tk window bigger, that the
circle appears to be the same size as it was previously? I assume this would
entail some sort of transform, but I don't quite understand how they work...

Ben
------------------------------------------------------------------------------
Sell apps to millions through the Intel(R) Atom(Tm) Developer Program
Be part of this innovative community and reach millions of netbook users 
worldwide. Take advantage of special opportunities to increase revenue and 
speed time-to-market. Join now, and jumpstart your future.
http://p.sf.net/sfu/intel-atom-d2d
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to