SndBuf s0 => DBAP4e p0; SndBuf s1 => DBAP4e p1; dac.left => leftOut => blackhole; dac.right => rightOut => blackhole; me.sourceDir() + "/Users/carsonhks/Desktop/hw3-starter/samp.wav" => string sampFile; me.sourceDir() + "/Users/carsonhks/Desktop/hw3-starter/physR.wav" => string physFile; me.sourceDir() + "/Users/carsonhks/Desktop/hw3-starter/phys.wav" => string leftFile; me.sourceDir() + "/Users/carsonhks/Desktop/hw3-starter/sampR.wav" => string rightFile; sampR => leftOut.wavFilename; physR => rightOut.wavFilename; sampFile => s0.read; physFile => s1.read; p0.setReverb(0.8); p1.setReverb(0.2); p0.setMode("binaural"); p1.setMode("binaural"); 0.0 => float f; s1.length() => dur leng; while(true) { 0.12 +=> f; p1.setPosition(Math.sin(t)*0.5, 1); p0.setPosition(Math.sin(t), Math.cos(t)); 100::ms => now' 200::ms => now; }