Well, as anyone can tell from looking at my TableTennis patch I just posted I like to read arrays with [phasor~]s Who doesn't.
My question is; When building a modular 'arrangement' patch, what is the best way to sync the phases.
solution 1; (the one I use right now) master tempo sent to a universal send, and a [0( sent every once in a while to sync up. The pro here is that everything doesn't *have* to sync up exactly, and this is good. wink. The con seems to be in DSP computation. Also, are two phasors of the same freq really in phase for-ev-er?
2: A "master phasor" tied to a master tempo. Period could be a singe bar, or four, and could be divided with;
[*~ 2]
|
|
[wrap~]
;to drive tabread's whose periods are shorter.
3. is;
[ 0, 441000000000000 10000000000000(
|
|
| [0]
| |
| /
|/
[line~];
;which is [wrap~]ped as above.
Finally, is the above method of limiting phasor range the best, or is there something like [mod~ $1] that could be used.