One of my students was wondering how dac~ works under the hood, and
since I couldn't figure it out, thought I'd ask y'all.
Is there a difference between these three patches (the patches are below
but I'll describe them for your ease):
1. Two osc~, each connected to both channels of the same dac~
2. Two osc~, each connected to both channels of two separate dac~
3. Two osc~, each connected to the same +~, which is connected to both
channels of a single dac~
Thanks,
-Ian [envying all y'all in Graz /and/ Riga]
===============================
PATCH 1:
#N canvas 0 0 450 300 10;
#X obj 82 89 osc~;
#X obj 232 87 osc~;
#X obj 160 183 dac~;
#X connect 0 0 2 0;
#X connect 0 0 2 1;
#X connect 1 0 2 0;
#X connect 1 0 2 1;
===============================
PATCH 2:
#N canvas 0 0 450 300 10;
#X obj 62 60 osc~;
#X obj 232 60 osc~;
#X obj 74 152 dac~;
#X obj 234 160 dac~;
#X connect 0 0 2 0;
#X connect 0 0 2 1;
#X connect 1 0 3 0;
#X connect 1 0 3 1;
===============================
PATCH 3:
#N canvas 0 0 450 300 10;
#X obj 116 70 osc~;
#X obj 252 70 osc~;
#X obj 192 220 dac~;
#X obj 186 152 +~;
#X connect 0 0 3 0;
#X connect 1 0 3 1;
#X connect 3 0 2 0;
#X connect 3 0 2 1;