Rename interpretor to interpreter.
[Faustine.git] / interpreter / preprocessor / faust-0.9.47mr3 / examples / APF.dsp
1 import("maxmsp.lib");
2
3 G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
4 F = hslider("Freq", 1000, 100, 10000, 1);
5 Q = hslider("Q", 1, 0.01, 100, 0.01);
6
7 process(x) = APF(x,F,G,Q);
8