hi, i have some trouble with the pulsedivider in sc. does pulsedivider understand unrounded numbers as input ??? sound is good ! SynthDef("help-PulseDivider",{ arg out=0; /// var p, a, b; a = 2.0; p = Impulse.ar(a); e = SinOsc.ar(60, 0, Decay2.ar(PulseDivider.ar(p, 2), 0.0005, 0.65)); Out.ar(out,Pan2.ar((e) * 1)) }).play; sound is bad ! SynthDef("help-PulseDivider",{ arg out=0; /// var p, a, b; a = 2.2; p = Impulse.ar(a); e = SinOsc.ar(60, 0, Decay2.ar(PulseDivider.ar(p, 2), 0.0005, 0.65)); Out.ar(out,Pan2.ar((e) * 1)) }).play; any suggestions ? i running an intel macbook with newest svn checkout. thanks ... dan |