[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[sc-users] multiple envelope




------------------------------

Message: 5
Date: Fri, 3 Mar 2006 11:34:46 -0500
From: "James Harkins" <jamshark70@xxxxxxxxx>
Subject: Re: [sc-users] multiple envelope plot?
To: "SuperCollider users mailing list" <sc-users@xxxxxxxxxxxxxxx>
Message-ID:
	<52d6e990603030834p2cb2ffecue6b70bc36811e41d@xxxxxxxxxxxxxx>
Content-Type: text/plain; charset=ISO-8859-1

I think no, because it uses multislider and each x-position can have
only one y-value.

.plot could be rewritten to use Pen I suppose.

Or, a cheater hackaround might be to render each envelope into an
array, then interleave them before plotting.

[(0..9), (10..19)].lace(20)

But you would have to turn off the connecting lines between data points.

hjh



Crucial mentioned doing this with transparency and multiple multisliders. The top slider gets assigned to altering one of the underlying sliders. (I tried this, it worked pretty welll.)

But doing plot with Pen would be a good idea,

RJK