scide: implement selectionLength for openDocument
[supercollider.git] / HelpSource / Classes / SelectX.schelp
blob1f98fdaccfec66581a440eb7ed8a419932039d74
1 class:: SelectX
2 summary:: Mix one output from many sources
3 categories:: UGens>Multichannel>Select
4 related:: Classes/Select, Classes/SelectXFocus, Classes/LinSelectX
6 description::
7 The output is mixed from an array of inputs, performing an equal power crossfade between two adjacent channels.
9 classmethods::
10 method:: ar, kr
12 argument:: which
13 argument:: array
14 argument:: wrap
15 wrap does not work yet.
17 examples::
18 code::
21         var a;
22         a = [
23                         SinOsc.ar,
24                         Saw.ar(300),
25                         Pulse.ar(230)
26                 ];
28         SelectX.ar(MouseX.kr(0, 1) * a.size, a) * 0.2
29 }.play;
34         var a;
35         a = [
36                         SinOsc.kr(0.25),
37                         LFSaw.kr(10),
38                         LFPulse.kr(0.3)
39                 ];
41         SinOsc.ar(SelectX.kr(MouseX.kr(0, 1) * a.size, a) * 300 + 400) * 0.2
42 }.play;
46 note::
47 all the ugens are continously running. This may not be the most efficient way if each input is  cpu-expensive. The array is fixed at the time of writing the SynthDef, and the whole array is embedded in the SynthDef file itself.  For small arrays this is more efficient than reading from a buffer.
50 wrap does not work yet.
52 (by adc)