On Fri, Aug 27, 2010 at 1:16 PM, Eric Firing 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 in axes
On 08/27/2010 07:15 AM, Ryan May wrote:
> On Thu, Aug 26, 2010 at 2:24 PM, Ben Edwards 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, interactivel
On Thu, Aug 26, 2010 at 2:24 PM, Ben Edwards 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 figure. I am usin
That doesn't quite work the way I want. I guess a good example of the
behavior I am looking for is what 'scatter' does. It seems that regardless
of the size of the figure the points stay the same size. I would use scatter
but would like to have access to the individual patches later to modify
them.
On Thu, Aug 26, 2010 at 2:24 PM, Ben Edwards 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 figure. I am usi
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.pyp