linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Classes / InterplXYC.schelp
blob540902680e7c51a8873c8fea1791229d069f1784
1 class:: InterplXYC
2 summary:: envelope specification
3 related:: Classes/InterplEnv
4 categories:: Control, Envelopes
6 description::
7 Takes sets of x, y and curve values and returns a new instance of InterplEnv.
8 x values can be negative (for use in indexing with negartive values or signals).
9 See link::Classes/InterplEnv:: Help for more info.
11 Examples::
13 code::
14 a = InterplXYC([0, 0, \lin], [1, 2, \sin], [2, 0]);
15 a.plot;
17 a = InterplXYC([[-1, 1, \sin], [0, 2, \lin], [1, 0]]);
18 a.plot;
19 a.at(-0.5);
20 a.at(0.2);