On Fri, Nov 21, 2008 at 8:08 AM, Stan West <[EMAIL PROTECTED]> wrote: > While I check out the mplsizer toolkit, I'm still interested in any feedback > on my ideas for subplot layout features. Does anyone have any critiques, > concerns, preferences, suggestions, etc., to voice? Thanks.
My main comment is to not try and reuse subplot for this. Subplot is a very thin wrapper of Axes, which handles layout on a regular grid. You want your grids to be irregular, so make a new subclass of Axes that acts the way you want. This will be easier than trying to tack extras complexity on top of subplot. We can then expose it to the toplevel with ax = fig.add_your_new_axes(whatever) and to pyplot. ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Matplotlib-devel mailing list Matplotlib-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-devel