Forgot a help fix: Drag a dock's title bar, not divider, to reposition
[supercollider.git] / HelpSource / Classes / Filter.schelp
blob9ccc6a798677cc2bd9d95bb1f0bb1e23381e3b7c
1 class:: Filter
2 summary:: Base class for filter UGens
3 categories:: UGens>Filters
5 description::
7 "Filter" is an abstract class - in other words, a class that you do not use directly. Instead, use one of its subclasses. Many common filters inherit from this abstract class, including LPF, HPF, MoogFF, Ringz, Integrator, Median, LeakDC... and many more.
9 The Filter class also provides a simple way to visualise the frequency-wise effect of applying a filter, see code::scopeResponse:: below.
11 classmethods::
12 private:: categories
14 method:: scopeResponse
15 Provides a simple way to visualise the frequency-wise effect of applying a filter
16 discussion::
17 code::
18 Stethoscope.defaultServer.boot // boot the server that will be scoped
19 MoogFF.scopeResponse
20 HPF.scopeResponse
21 BRF.scopeResponse
22 Median.scopeResponse
25 instancemethods::
26 private:: checkInputs