Sha256: 4e97ac0cd0c83173d1900b5652b54f42891f47a64416ca229c5eaef1bb3c4998
Contents?: true
Size: 685 Bytes
Versions: 9
Compression:
Stored size: 685 Bytes
Contents
# frozen_string_literal: true # Module for style guidelines. module HeadMusic::Style::Guidelines; end # marks the voice if the first note is not the first or fifth scale degree of the key. class HeadMusic::Style::Guidelines::StartOnPerfectConsonance < HeadMusic::Style::Annotation MESSAGE = "Start on the tonic or a perfect consonance above the tonic (unless bass voice)." def marks return unless first_note && ((bass_voice? && !starts_on_tonic?) || !starts_on_perfect_consonance?) HeadMusic::Style::Mark.for(first_note) end private def starts_on_perfect_consonance? diatonic_interval_from_tonic(first_note).perfect_consonance?(:two_part_harmony) end end
Version data entries
9 entries across 9 versions & 1 rubygems