On Thu, Mar 19, 2009 at 2:33 PM, Eric Firing <efir...@hawaii.edu> wrote:
>
>
> def noclip(ax):
>     "Turn off all clipping in axes ax; call immediately before drawing"
>     ax.set_clip_on(False)
>     artists = []



Or even better::

for o in fig.findobj():
    o.set_clip_on(False)

findobj is an artist method that recursive searches all the artists
contained in it -- you can optionally specify the type of artist you want
returned.  See


http://matplotlib.sourceforge.net/examples/pylab_examples/findobj_demo.html

JDH
------------------------------------------------------------------------------
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to