You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for making this extremely useful program.
As you may have known already, you cannot play two 1/4 notes consecutively: the program should consider this constraint and stretch the holes accordingly. After that, it depends on the operator to turn the crank faster.
The idea is simple:
Scan the notes, retrieve the lowest value note that precedes another note of the same pitch, named L
Calculate the scale, relative to a quarter note. S = L/(1/4) =L*4
Apply the scale all the notes value: N *= S
The text was updated successfully, but these errors were encountered:
Thank you for making this extremely useful program.
As you may have known already, you cannot play two 1/4 notes consecutively: the program should consider this constraint and stretch the holes accordingly. After that, it depends on the operator to turn the crank faster.
The idea is simple:
S = L/(1/4) =L*4
N *= S
The text was updated successfully, but these errors were encountered: