Sha256: 01603c89815bc0f5b849366587ed2534c1d9d7b6fcceaa8c52e49fd32c7a2a78
Contents?: true
Size: 1004 Bytes
Versions: 1
Compression:
Stored size: 1004 Bytes
Contents
# frozen_string_literal: true # A Circle of Fifths or Fourths shows relationships between pitch classes # TODO: Replace or empower with IntervalCycle (?) # https://en.wikipedia.org/wiki/Interval_cycle class HeadMusic::Circle def self.of_fifths get(7) end def self.of_fourths get(5) end def self.get(interval = 7) @circles ||= {} @circles[interval.to_i] ||= new(interval) end attr_reader :interval, :pitch_classes def initialize(interval) @interval = HeadMusic::Interval.get(interval.to_i) @pitch_classes = pitch_classes_by_interval(interval) end def index(pitch_class) @pitch_classes.index(HeadMusic::Spelling.get(pitch_class).pitch_class) end private_class_method :new private def pitch_classes_by_interval(interval) [HeadMusic::PitchClass.get(0)].tap do |list| loop do next_pitch_class = list.last + interval break if next_pitch_class == list.first list << next_pitch_class end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
head_music-0.22.0 | lib/head_music/circle.rb |