Class: AutoEQLoader::ParametricEqualizerFilter

Inherits:
Struct
  • Object
show all
Defined in:
lib/autoeq_loader.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#fObject

Returns the value of attribute f

Returns:

  • (Object)

    the current value of f



55
56
57
# File 'lib/autoeq_loader.rb', line 55

def f
  @f
end

#gObject

Returns the value of attribute g

Returns:

  • (Object)

    the current value of g



55
56
57
# File 'lib/autoeq_loader.rb', line 55

def g
  @g
end

#tObject

Returns the value of attribute t

Returns:

  • (Object)

    the current value of t



55
56
57
# File 'lib/autoeq_loader.rb', line 55

def t
  @t
end

#wObject

Returns the value of attribute w

Returns:

  • (Object)

    the current value of w



55
56
57
# File 'lib/autoeq_loader.rb', line 55

def w
  @w
end

Instance Method Details

#to_sObject



57
58
59
# File 'lib/autoeq_loader.rb', line 57

def to_s
  "equalizer=%s" % %w[f g w t].map { |k| '%s=%s' % [k, send(k)] }.join(':')
end