2 summary:: index into a scale
3 related:: Classes/Scale
4 categories:: Streams-Patterns-Events>Patterns>Math
8 Returns a series of notes derived from an index into a scale.
15 integer index into the scale.
18 an array or pattern. If a pattern, it streams the scales accordingly.
20 argument::stepsPerOctave
21 the number of steps per octave in the scale.
27 Pbind(\note, PdegreeToKey(
28 Pseq([1, 2, 3, 2, 5, 4, 3, 4, 2, 1], 2),
39 scales = #[[0, 2, 3, 6, 7, 9], [0, 1, 5, 6, 7, 9, 11], [0, 2, 3]];
40 Pbind(\note, PdegreeToKey(
41 Pseq([1, 2, 3, 2, 5, 4, 3, 4, 2, 1], 4),
42 Pstutter(3, Prand(scales, inf)),