2 summary:: Granular synthesis with sine tones
3 categories:: UGens>Generators>Granular
4 related:: Classes/GrainIn, Classes/GrainFM, Classes/GrainBuf
11 argument:: numChannels
12 the number of channels to output. If 1, mono is returned and pan is ignored.
15 a kr or ar trigger to start a new grain. If ar, grains after the start of the synth are sample accurate.
18 size of the grain (in seconds).
21 the input to granulate
24 determines where to pan the output.
26 ## If numChannels = 1, no panning is done.
27 ## If numChannels = 2, panning is similar to Pan2.
28 ## If numChannels > 2, pannins is the same as PanAz.
32 the buffer number containing a singal to use for the grain envelope. -1 uses a built-in Hann envelope.
35 the maximum number of overlapping grains that can be used at a given time. This value is set at the UGens init time and can't be modified. Defaults to 512. This can be set lower for more efficient use of memory.
37 warning:: The above parameter is new (post SC 3.3.1) and has the potential to break code written <= 3.3.1. This parameter is BEFORE the mul slot, and you may need to update code to account for this difference. ::
39 discussion:: All args except numChannels and trigger are polled at grain creation time.
41 private:: init, argNamesInputsOffset
51 winenv = Env([0, 1, 0], [0.5, 0.5], [8, -8]);
52 z = Buffer.sendCollection(s, winenv.discretize, 1);
54 SynthDef(\sin_grain_test, {arg gate = 1, amp = 1, envbuf;
55 var pan, env, freqdev;
56 // use mouse x to control panning
57 pan = MouseX.kr(-1, 1);
58 // use WhiteNoise and mouse y to control deviation from center pitch
59 freqdev = WhiteNoise.kr(MouseY.kr(0, 400));
61 Env([0, 1, 0], [1, 1], \sin, 1),
66 GrainSin.ar(2, Impulse.kr(10), 0.1, 440 + freqdev, pan, envbuf) * env)
72 x = Synth(\sin_grain_test, [\envbuf, -1])
74 // switch to the custom env