Skip to content

Commit

Permalink
added minor scales
Browse files Browse the repository at this point in the history
  • Loading branch information
rl337 committed Jan 11, 2014
1 parent 8a88705 commit 00de2e9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/classes/Scales.ck
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,11 @@ public class Scales {
return result;
}

public static Scale Minor(int tonic) {
Scale result;
[ 2, 1, 2, 2, 1, 2, 2 ] @=> int major_intervals[];
result.init(tonic, major_intervals);
return result;
}

}

0 comments on commit 00de2e9

Please sign in to comment.