Hi, I'm glad you liked my Tk patch! Along the same line, I patched axes3d.py to allow the creation of non-interactive 3D plots.
Currently, the 3D axis object (matplotlib.axes3d.Axes3D) can only be created in an interactive session (i.e. while the figure is being displayed), as it attempts to connect mouse events during initialisation. This simple patch removes this restriction. If you later decide to display a figure that was created offline, you can restore mouse events by calling the following on all axis objects in the figure: if isinstance(axis, matplotlib.axes3d.Axes3DI): axis.mouse_init() Regards, Ludwig
axes3d.py.patch
Description: Binary data
------------------------------------------------------------------------- SF.Net email is sponsored by: The Future of Linux Business White Paper from Novell. From the desktop to the data center, Linux is going mainstream. Let it simplify your IT future. http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4
_______________________________________________ Matplotlib-devel mailing list Matplotlib-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-devel