Reorganize Book folder

This commit is contained in:
2026-04-08 12:47:30 -04:00
parent c818c43dcc
commit 95b4610927
28 changed files with 2880 additions and 1 deletions

View File

@@ -12,7 +12,7 @@ MODE_PATTERNS = {
def build_scale(root, pattern):
idx = NOTES.index(root)
scale = [NOTES[idx]]
scale = [NOTES[idx]
for step in pattern[:-1]:
idx = (idx + step) % 12
scale.append(NOTES[idx])