diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-08-14 02:18:35 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-08-14 02:18:35 +0200 |
| commit | 0ba30e46c0bb9cd8a4ee74cbb0e215ebab1263c4 (patch) | |
| tree | 595348b286b3c22e5b6702e223c7dcf5b5fc6bf9 /client/lib | |
| parent | 71853816c933e95ee23ba741c4c8d6c97246681a (diff) | |
switch seq/ interv behavior
Diffstat (limited to 'client/lib')
| -rw-r--r-- | client/lib/scales.js | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/client/lib/scales.js b/client/lib/scales.js index 2d59f8a..25d1ced 100644 --- a/client/lib/scales.js +++ b/client/lib/scales.js @@ -131,6 +131,63 @@ Colundi scale 2/1 ` +const liu_major = `! liu_major.scl +! +Linus Liu's Major Scale, see his 1978 book, "Intonation Theory" + 7 +! + 10/9 + 100/81 + 4/3 + 3/2 + 5/3 + 50/27 + 2/1 +` +const liu_pentatonic = `! liu_pent.scl +! +Linus Liu's "pentatonic scale" + 7 +! + 9/8 + 81/64 + 27/20 + 3/2 + 27/16 + 243/128 + 81/40 +` + +const liu_minor = `! LIU_MINor.scl +! +Linus Liu's Harmonic Minor + 7 +! + 10/9 + 6/5 + 4/3 + 40/27 + 8/5 + 50/27 + 2/1 +` + +const liu_melodic_minor = `! liu_mel.scl +! +Linus Liu's Melodic Minor, use 5 and 7 descending and 6 and 8 ascending + 9 +! + 10/9 + 6/5 + 4/3 + 3/2 + 81/50 + 5/3 + 9/5 + 50/27 + 2/1 +` + const scales = [ { intervals: '1/1 9/8 5/4 4/3 3/2 5/3 15/8 2/1', |
