Pattern: PStutter
Play each note of pattern
count
times.
Is really a more convenient way to do: PCreep(pattern, 1, 1, count)
Example output
>>> p = PStutter(PSeries(), 2)
>>> p.nextn(16)
[0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7]
Play each note of pattern
count
times.
Is really a more convenient way to do: PCreep(pattern, 1, 1, count)
>>> p = PStutter(PSeries(), 2)
>>> p.nextn(16)
[0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7]