2 // InterplEnvs are a fixed duration
3 // Envelope specification for an IEnvGen, InterplEnv is not a UGen itself
7 *new { arg levels=#[0,1,0], times=#[1,1], curve='lin', offset = 0.0;
8 "InterplEnv is deprecated, please use Env.new instead.".warn;
9 ^Env.new(levels, times, curve, nil, nil, offset)
14 // InterplXYC([0, 0, \lin], [1, 2, \sin], [2, 0])
15 // at time 0, value 0, lin to time 1, value 2, sin to time 2, value 0
20 "InterplXYC is deprecated, please use Env.xyc instead.".warn;
27 *new { arg pairs, curve;
28 "InterplPairs is deprecated, please use Env.pairs instead.".warn;
29 ^Env.pairs(pairs, curve)
36 "InterplChord is deprecated, please use Env.pairs instead.".warn;