scide: implement selectionLength for openDocument
[supercollider.git] / HelpSource / Classes / RHPF.schelp
blob7bd59b426655753073dea52dec10cf5782c6c401
1 class:: RHPF
2 summary:: A resonant high pass filter.
3 related:: Classes/Formlet, Classes/RLPF, Classes/Resonz, Classes/Ringz
4 categories::  UGens>Filters>Linear
7 Description::
9 A resonant high pass filter.
12 classmethods::
14 method::ar, kr
16 argument::in
18 The input signal.
21 argument::freq
23 Cuttoff frequency in Hertz.
26 argument::rq
28 The reciprocal of Q (bandwidth / cutoffFreq).
31 argument::mul
33 Output will be multiplied by this value.
36 argument::add
38 This value will be added to the output.
41 Examples::
43 code::
45 { RHPF.ar(Saw.ar(200,0.1), FSinOsc.kr(XLine.kr(0.7,300,20), 0, 3600, 4000), 0.2) }.play;
48 {       var ctl = RHPF.kr(LFSaw.kr(2), SinOsc.kr(XLine.kr(0.07,30,20), 0, 35, 40), 0.05);
49         SinOsc.ar(ctl * 200 + 500);
50 }.play;