//Music 220B: ChuckU #1 //by Cat Davis (catdavis) //This ChucKu is inspired by both the simple example of creating a //sine wave in ChucK and by the THX Deep Note. In this ChucKu, I create //two sine waves of related frequencies, which are taken from the list // of frequencies used in the deep note. SinOsc one => dac; SinOsc two => dac; 0.9 => one.gain; 150 => one.freq; 0.4 => two.gain; 600 => two.freq; 2000::ms => now;