Sha256: d650d725f32b8f0378add8b40d00721172c5b901ea43eaba2a2bc45076b17025
Contents?: true
Size: 686 Bytes
Versions: 3
Compression:
Stored size: 686 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? functional_interval_from_tonic(first_note).perfect_consonance?(:two_part_harmony) end end
Version data entries
3 entries across 3 versions & 1 rubygems