You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
310 B

(
{
var pitchOsc;
var ampOsc;
pitchOsc = { 300 + SinOsc.kr(20, 1.5pi, 300, 300); };
ampOsc = SinOsc.kr(0.1, 1.5pi, 0.5, 0.5);
[
SinOsc.ar(pitchOsc, 0, ampOsc),
SinOsc.ar(pitchOsc, 0, ampOsc)
];
}.play;
)
(
{ [SinOsc.ar(440, 0, 0.2), SinOsc.ar(442, 0, 0.2)] }.play;
)