Re: [matplotlib-devel] contains methods

2008-07-31 Thread Michael Droettboom
Paul Kienzle wrote: > Hi, > > I fixed some of the contains() methods so at least the simple > cases work. > > Degenerate rectangles cause problems in axes_demo: > > import matplotlib.patches r = matplotlib.patches.Rectangle((0,0),1,0) r.get_transform().inverted()

[matplotlib-devel] contains methods

2008-07-25 Thread Paul Kienzle
Hi, I fixed some of the contains() methods so at least the simple cases work. Degenerate rectangles cause problems in axes_demo: >>> import matplotlib.patches >>> r = matplotlib.patches.Rectangle((0,0),1,0) >>> r.get_transform().inverted() Traceback (most recent call last): File "", line 1,