I am trying to draw plasmid maps in matplotlib. This requires drawing
arrows with a circular curvature (see here for example
http://www.encyclon.net/docs/plasmidmap/images/ex6.gif). However, when I
try to curve the arrows, for instance using this example (
http://matplotlib.org/api/artist_api.html#
Thanks Ben, that solved my issue. I guess I got thrown off because the
plot stayed open, as you described. It's hard to troubleshoot when you
don't get any errors. In the future I will attach all of my objects.
-Mark
On Fri, Sep 7, 2012 at 12:03 PM, Benjamin Root wrote:
> I think I see your probl
self, label='Open Lasso')
self.Bind(wx.EVT_BUTTON, self.open_lasso, button)
self.Show(True)
def open_lasso(self, event):
lasso_test.start_lasso()
app = wx.App(False)
frame = MyFrame(None, 'Small editor')
app.MainLoop()
-----
T
Hi,
I'm not an expert so please go easy on me. I am using the pyplot lasso
demo, and have got it to work how I would like. I am having a problem,
however, where I cannot get it to work if my python file is not the
main file (where __name__ is not __main__).
I took the part at the bottom in the "if