examples\book\digital-artists\chapter7\Listing7.9.ck
// Listing 7.9 Trying out the many presets of the ModalBar UGen
// Demo of modal bar presets
ModalBar bar => dac;
while (true) {
// pick a random object type
Math.random2(0,8) => bar.preset;
// and random frequency
Math.random2f(200.0,1000.0) => bar.freq;
// Then whack it!!
1 => bar.noteOn;
0.4 :: second => now;
}