[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[sc-users] controlling an array of synth with an array of moving points



Hello, one easy question , if i have 2 arrays, one storing synths and the other storing moving points, what would be the best way for controlling the synths frequency  with the position of the moving points?

a= { Synth(\sound, [\freq, 300] )}.dup(3);    //array with synths
d= {500.rand@xxxxxxxx}.dup(3);        //array with points



//move points
d= d.collect{|point|
point+(4.rand - 1@xxxxxx - 1);
};


thanks

A.