2 summary:: Scramble bins.
7 Randomizes the order of the bins. The trigger will select a new random ordering.
21 Scrambles more bins as wipe moves from 0 to 1.
26 A value from zero to one, indicating the maximum randomized
27 distance of a bin from its original location in the spectrum.
32 A trigger, that selects a new random ordering.
40 b = Buffer.read(s, Help.dir +/+ "sounds/a11wlk01.wav");
44 SynthDef("help-binScramble", { arg out=0, soundBufnum=2;
46 in = PlayBuf.ar(1, soundBufnum, BufRateScale.kr(soundBufnum), loop: 1);
47 chain = FFT(LocalBuf(2048), in);
48 chain = PV_BinScramble(chain, MouseX.kr , 0.1, MouseY.kr > 0.5 );
49 Out.ar(out, 0.1 * IFFT(chain).dup);
50 }).play(s, [\soundBufnum, b]);