QcPenPrinter: no need to allocate QPrintDialog on heap
[supercollider.git] / HelpSource / Classes / BHiPass4.schelp
blob701171d68d20a6f9737ce98c948ce5652cdaaa75
1 class:: BHiPass4
2 summary:: 24db/oct rolloff - 4th order resonant  Hi Pass Filter [1]
3 categories:: UGens>Filters>BEQSuite
4 related:: Classes/SOS, Classes/BLowPass, Classes/BLowPass4, Classes/BHiPass, Classes/BPeakEQ, Classes/BLowShelf, Classes/BHiShelf, Classes/BBandPass, Classes/BBandStop, Classes/BAllPass
6 description::
7 The B equalization suite is based on the Second Order Section (link::Classes/SOS::) biquad UGen.
9 note::
10 Biquad coefficient calculations imply certain amount of CPU overhead. These plugin UGens contain optimizations such that the coefficients get updated only when there has been a change to one of the filter's parameters. This can cause spikes in CPU performance and should be considered when using several of these units.
13 [1] this is a pseudo link::Classes/UGen::. BHiPass4 is built by cascading 2 link::Classes/SOS:: sections.
15 classmethods::
17 method:: ar
18 argument:: in
19 input signal to be processed.
20 argument:: freq
21 cutoff frequency.
22 argument:: rq
23 the reciprocal of Q.  bandwidth / cutoffFreq.
25 examples::
26 code::
27 s.boot;
29 z = {
30         BHiPass4.ar(
31                 SoundIn.ar([0,1]),
32                 MouseX.kr(10, 20000, \exponential), // cutoff freq.
33                 MouseY.kr(0.1, 1.0, \linear), // rq
34                 0.5); // mul
35 }.play)
36 z.release;