The frequency depency seems to appear when ploting a sweep and toggle to fit the curve range (N)
(
{
var sig, bpf, rez;
sig = WhiteNoise.ar(0.5);
bpf = BPF.ar(sig, XLine.ar(9000,15000,0.1), 0.2, 3);
rez = Resonz.ar(sig, XLine.ar(9000,15000,0.1), 0.2, 3);
[sig, bpf, rez, bpf - rez]
}.plot(0.1)
)
But sonically, I could not hear any critical difference (on headphones) between basic cases like:
{BPF.ar(WhiteNoise.ar(0.1), 5000, 0.5)!2}.play
{Resonz.ar(WhiteNoise.ar(0.1), 5000, 0.5)!2}.play
{BPF.ar(WhiteNoise.ar(0.1), SinOsc.ar(1).range(100,15000), 0.2)!2}.play
{Resonz.ar(WhiteNoise.ar(0.1), SinOsc.ar(1).range(100,15000), 0.2)!2}.play
{BPF.ar(WhiteNoise.ar(0.1), SinOsc.ar(1).range(9000,15000), 0.5)!2}.play
{Resonz.ar(WhiteNoise.ar(0.1), SinOsc.ar(1).range(9000,15000), 0.5)!2}.play
I am curious about it as well⦠maybe it was implemented in order to check practically what the article was proposingā¦