scide: LookupDialog - redo lookup on classes after partial lookup
[supercollider.git] / SCClassLibrary / Common / Audio / InterplEnv.sc
blob3b784d56021fc13068ef3f0ea2ef93a4f16ecc88
2 // InterplEnvs are a fixed duration
3 // Envelope specification for an IEnvGen, InterplEnv is not a UGen itself
5 InterplEnv {
6         
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)
10         }
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
17 InterplXYC {
18         
19         *new { arg ... xyc;
20                 "InterplXYC is deprecated, please use Env.xyc instead.".warn;
21                 ^Env.xyc(xyc)
22         }
25 InterplPairs {
26         
27         *new { arg pairs, curve;
28                 "InterplPairs is deprecated, please use Env.pairs instead.".warn;
29                 ^Env.pairs(pairs, curve)
30         }
33 InterplChord {
34         
35         *new { arg pairs;
36                 "InterplChord is deprecated, please use Env.pairs instead.".warn;
37                 ^Env.pairs(pairs)
38         }