Module: Muse::Config
- Defined in:
- lib/muse/config/chords.rb
Class Method Summary collapse
- ._BbM(options = {}) ⇒ Object
-
._C7(options = {}) ⇒ Object
dominant 7th.
-
._CM(options = {}) ⇒ Object
major.
-
._Dm(options = {}) ⇒ Object
minor.
- ._FM(options = {}) ⇒ Object
Class Method Details
._BbM(options = {}) ⇒ Object
40 41 42 |
# File 'lib/muse/config/chords.rb', line 40 def _BbM(={}) add_to_stream chord(%w(ais2 d3 f3), ) end |
._C7(options = {}) ⇒ Object
dominant 7th
36 37 38 |
# File 'lib/muse/config/chords.rb', line 36 def _C7(={}) add_to_stream chord(%w(c2 e2 g2 ais2), ) end |
._CM(options = {}) ⇒ Object
major
22 23 24 |
# File 'lib/muse/config/chords.rb', line 22 def _CM(={}) add_to_stream chord(%w(c2 e2 g2), ) end |
._Dm(options = {}) ⇒ Object
minor
31 32 33 |
# File 'lib/muse/config/chords.rb', line 31 def _Dm(={}) add_to_stream chord(%w(d2 f2 a2), ) end |
._FM(options = {}) ⇒ Object
26 27 28 |
# File 'lib/muse/config/chords.rb', line 26 def _FM(={}) add_to_stream chord(%w(f2 a2 c3), ) end |