Class: Ruck::Generators::SinOsc

Inherits:
Object
  • Object
show all
Includes:
Oscillator, Source
Defined in:
lib/ruck/ugen/oscillators.rb

Constant Summary

Constants included from Oscillator

Oscillator::TWO_PI

Instance Attribute Summary

Attributes included from UGen

#name

Instance Method Summary collapse

Methods included from Oscillator

included, #phase_forward

Methods included from UGen

#to_s

Methods included from Source

#<<, #>>, #last, #out, #out_channels

Constructor Details

#initialize(attrs = {}) ⇒ SinOsc

Returns a new instance of SinOsc.



29
30
31
32
33
34
# File 'lib/ruck/ugen/oscillators.rb', line 29

def initialize(attrs = {})
  parse_attrs({ :freq => 440.0,
                :gain => 1.0 }.merge(attrs))
  @phase = 0.0
  @last = 0.0
end

Instance Method Details

#attr_namesObject



44
45
46
# File 'lib/ruck/ugen/oscillators.rb', line 44

def attr_names
  [:freq, :gain, :phase]
end

#next(now) ⇒ Object



36
37
38
39
40
41
42
# File 'lib/ruck/ugen/oscillators.rb', line 36

def next(now)
  return @last if @now == now
  @now = now
  @last = gain * Math.sin(phase * TWO_PI)
  phase_forward
  @last
end