Re: [matplotlib-devel] pylab.imshow() does not handle clip_path properly

2009-10-12 Thread Andrew Straw
Gellule Xg wrote: >>> This is a bug report for matplotlib version 0.99.1.1 >>> >>> The clip_path keyword of imshow() does not work when setting it to >>> (Path, Transform) for two reasons: >>> >> Hi, Thanks for the report. Do you have a simple test script that we can >> use to see the probl

Re: [matplotlib-devel] pylab.imshow() does not handle clip_path properly

2009-10-06 Thread Gellule Xg
>> This is a bug report for matplotlib version 0.99.1.1 >> >> The clip_path keyword of imshow() does not work when setting it to >> (Path, Transform) for two reasons: > > Hi, Thanks for the report. Do you have a simple test script that we can > use to see the problem and then fix it? We will then

Re: [matplotlib-devel] pylab.imshow() does not handle clip_path properly

2009-10-06 Thread Eric Firing
Gellule Xg wrote: > This is a bug report for matplotlib version 0.99.1.1 > > The clip_path keyword of imshow() does not work when setting it to > (Path, Transform) for two reasons: > > 1. On line 622 of artist.py, v is now the tuple (Path,Transform) and > should be apply to func with apply(func

Re: [matplotlib-devel] pylab.imshow() does not handle clip_path properly

2009-10-06 Thread Andrew Straw
Gellule Xg wrote: > This is a bug report for matplotlib version 0.99.1.1 > > The clip_path keyword of imshow() does not work when setting it to > (Path, Transform) for two reasons: Hi, Thanks for the report. Do you have a simple test script that we can use to see the problem and then fix it? We

[matplotlib-devel] pylab.imshow() does not handle clip_path properly

2009-10-06 Thread Gellule Xg
This is a bug report for matplotlib version 0.99.1.1 The clip_path keyword of imshow() does not work when setting it to (Path, Transform) for two reasons: 1. On line 622 of artist.py, v is now the tuple (Path,Transform) and should be apply to func with apply(func,v). Hence the following sugges