Sha256: 53f02ba25a4e8e190aacc80e50adbb9382f210230c3b1e048cc160ab2d54061a
Contents?: true
Size: 928 Bytes
Versions: 9
Compression:
Stored size: 928 Bytes
Contents
# frozen_string_literal: true # Module for style guidelines. module HeadMusic::Style::Guidelines; end # A counterpoint guideline class HeadMusic::Style::Guidelines::StepOutOfUnison < HeadMusic::Style::Annotation MESSAGE = "Exit a unison by step." def marks leaps_following_unisons.map do |skip| HeadMusic::Style::Mark.for_all(skip.notes) end.flatten end private def leaps_following_unisons melodic_intervals_following_unisons.select(&:leap?) end def melodic_intervals_following_unisons @melodic_intervals_following_unisons ||= perfect_unisons.map do |unison| note1 = voice.note_at(unison.position) note2 = voice.note_following(unison.position) HeadMusic::MelodicInterval.new(note1, note2) if note1 && note2 end.compact end def perfect_unisons @perfect_unisons ||= harmonic_intervals.select(&:perfect_consonance?).select(&:unison?) end end
Version data entries
9 entries across 9 versions & 1 rubygems