I'm new to Matplotlib and not sure if it's right for my application.
I would like to build a simple audio (sound file) editor with the use of
Matplotlib. It will plot a waveform, hence the usefulness of matplotlib.
I will also need the user to be able to select regions of the waveform
by draggi
Not quite sure exactly what you need to do, but it sounds like separate
calls to `plot` for each quadrilateral will do the trick.
-paul
On Wed, Feb 5, 2014 at 4:57 PM, Pedro Marcal wrote:
> I don't know how to separately plot the quadrilaterals after plotting each
> of them in a closed loop eg
I don't know how to separately plot the quadrilaterals after plotting each
of them in a closed loop eg nodes 1,2,3,4,1 the next quad is 3,2,5,6,3 say.
I use a return to 1,0.0,3 and continue the curve numpy curve X,Y,Z as per
the example tutorials. I tried inserting a None in between the quads, but