From 536efed3cc2eb1583928cba1a15e5690c6c21385 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Thu, 30 Aug 2012 15:07:24 +0200 Subject: updated master Bus to make use of Clipper UGen (simplified) --- lib/Bus.ck | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/lib/Bus.ck b/lib/Bus.ck index 17aaf42..d9cd2a4 100644 --- a/lib/Bus.ck +++ b/lib/Bus.ck @@ -17,18 +17,11 @@ new Gain[3] @=> Bus.oscope; new Gain[8] @=> Bus.channels; /* limiting and clipping for main stereo outputs */ -Clipper clipper1; -Bus.out_left => Dyno dyn1 => clipper1.input; -clipper1.output => dac.chan(0); +Bus.out_left => Dyno dyn1 => Clipper clipper1 => dac.chan(0); dyn1.limit(); -Clipper clipper2; -Bus.out_right => Dyno dyn2 => clipper2.input; -clipper2.output => dac.chan(1); +Bus.out_right => Dyno dyn2 => Clipper clipper2 => dac.chan(1); dyn2.limit(); -/* - * NOTE: need to keep shred running, probably because of the constructed patch - * (ChucK bug) - */ +/* keep shred running, so the graph persists */ while (day => now); -- cgit v1.2.3