// Slork 2013 // Week 2 ChucK Tutorial // basic multichannel operation // Spencer Salazar - spencer@ccrma.stanford.edu // Use 6 channels for Slork station // Use 2 channels without the full slork station Math.min(6, dac.channels()) $ int => int NUM_CHANNELS; // chuck a different osc to each channel for(0 => int i; i < NUM_CHANNELS; i++) { TriOsc osc => NRev reverb => dac.chan(i); 0.1 => reverb.mix; 0.01 => osc.gain; i*110 => osc.freq; } // listen 1::day => now;