Class: Beeps::HighPass
- Inherits:
-
Object
- Object
- Beeps::HighPass
- Defined in:
- lib/beeps/processor.rb
Instance Method Summary collapse
-
#initialize(cutoff = nil, **kwargs, &block) ⇒ HighPass
constructor
A new instance of HighPass.
Constructor Details
#initialize(cutoff = nil, **kwargs, &block) ⇒ HighPass
Returns a new instance of HighPass.
185 186 187 188 189 |
# File 'lib/beeps/processor.rb', line 185 def initialize(cutoff = nil, **kwargs, &block) super(**kwargs, &block) self.cutoff = cutoff if cutoff end |