Method: Coltrane::Theory::PitchClass#descending_interval_to

Defined in:
lib/coltrane/theory/pitch_class.rb

#descending_interval_to(other) ⇒ Object



64
65
66
67
68
69
70
# File 'lib/coltrane/theory/pitch_class.rb', line 64

def descending_interval_to(other)
  Interval.new(
    self,
    (other.is_a?(PitchClass) ? other : Note.new(other)),
    ascending: false
  )
end