From ef5b4584d0c9302877026bea2b6c31f03bbc7566 Mon Sep 17 00:00:00 2001 From: Nils Date: Tue, 3 May 2022 22:37:34 +0200 Subject: [PATCH] add 3/2 to standard metrical instructions --- engine/api.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/engine/api.py b/engine/api.py index 4bce43b..ee82e0a 100644 --- a/engine/api.py +++ b/engine/api.py @@ -1730,6 +1730,7 @@ def commonMetricalInstructionsAsList(): "6/4", "3/8", "1/1", + "3/2", ] def insertCommonMetricalInstrucions(scheme): @@ -1745,6 +1746,7 @@ def insertCommonMetricalInstrucions(scheme): "6/4" : ((D4, D4, D4),(D4, D4, D4)), "3/8" : (D8, D8, D8), "1/1" : (D1,), + "3/2" : (D2, D2, D2), } lilypond = { "off" : "\\mark \"X\" \\cadenzaOn ", @@ -1756,6 +1758,7 @@ def insertCommonMetricalInstrucions(scheme): "6/4" : "\\cadenzaOff \\time 6/4", "3/8" : "\\cadenzaOff \\time 3/8", "1/1" : "\\cadenzaOff \\time 1/1", + "3/2" : "\\cadenzaOff \\time 3/2", } insertMetricalInstruction(schemes[scheme], lilypondOverride = lilypond[scheme])