Class: Beeps::HighPass

Inherits:
Object
  • Object
show all
Defined in:
lib/beeps/processor.rb

Instance Method Summary collapse

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