Re: [Matplotlib-users] Not scaling patches.

2010-08-27 Thread Benjamin Root
On Thu, Aug 26, 2010 at 2:24 PM, Ben Edwards bedwa...@cs.unm.edu wrote: 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

Re: [Matplotlib-users] Not scaling patches.

2010-08-27 Thread Ryan May
On Thu, Aug 26, 2010 at 2:24 PM, Ben Edwards bedwa...@cs.unm.edu wrote: 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

Re: [Matplotlib-users] Not scaling patches.

2010-08-27 Thread Eric Firing
On 08/27/2010 07:15 AM, Ryan May wrote: On Thu, Aug 26, 2010 at 2:24 PM, Ben Edwardsbedwa...@cs.unm.edu wrote: 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,

Re: [Matplotlib-users] Not scaling patches.

2010-08-27 Thread Ryan May
On Fri, Aug 27, 2010 at 1:16 PM, Eric Firing efir...@hawaii.edu wrote: On 08/27/2010 07:15 AM, Ryan May wrote: You can make the circle this way, specifying everything in axes coordinates: cp = patches.Circle((.5,.5),.025, transform=ax.transAxes) However, this puts the circle in the same spot

[Matplotlib-users] Not scaling patches.

2010-08-26 Thread Ben Edwards
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