Now fix logic error in makeHornInF.sh.
And we get some playable tunes. We might be able to improve the transposition further by taking the Cello approach of calculating the minimum distance outside the comfortable range. One for the future.
This commit is contained in:
parent
2509e70c1c
commit
4362163e75
|
@ -10,7 +10,7 @@ fi
|
|||
# Transpose down (return 0) if top note was > e (> a for horn).
|
||||
transposedown()
|
||||
{
|
||||
(($2 <= 109))
|
||||
(($2 > 109))
|
||||
}
|
||||
|
||||
dir=`pwd`
|
||||
|
|
Loading…
Reference in New Issue