module Coltrane::Theory

The main module for working with Music Theory

Constants

BASE_OCTAVE
BASE_PITCH_INTEGER

Public Class Methods

base_tuning() click to toggle source
# File lib/coltrane/theory.rb, line 16
def self.base_tuning
  @base_tuning
end
tuning=(f) click to toggle source
# File lib/coltrane/theory.rb, line 12
def self.tuning=(f)
  @base_tuning = Frequency[f].octave(-4)
end