I'm currently trying to import a 16-note-per-octave JustIntonation tuning into SC:
Tuning.all.put(\sixteenppo, Tuning.new([1/1, 25/24,10/9, 9/8, 32/27, 6/5, 5/4, 4/3, 25/18, 45/32, 3/2, 25/16, 5/3, 16/9,9/5, 15/8].ratiomidi));
Unfortunately, this doesn't seem to be playing very nicely with the other stuff..
If I run:
Scale.new((0..16), 16, tuning: \sixteenppo).stepsPerOctave;
It says there are 12 steps Per Octave.
Essentially, I'd just like to play a 16-note chromatic scale of the new Tuning.
Any suggestions?