cl-patterns icon indicating copy to clipboard operation
cl-patterns copied to clipboard

Library for writing patterns to generate or process (a)musical sequences of mathematically (un)related (non-)compound values in Lisp.

Results 5 cl-patterns issues
Sort by recently updated
recently updated
newest added

Is it possible to have a new tempo start immediately (restarting/resyncing the clock), instead of only changing on the next beat?

From the documentation on special keys I got the impression that the following should work, but it doesn't: ``` (pb :foo :midinote 60 :tempo 140/60) ``` The tempo is unchanged......

Hi, is it possible to change the steps in the pbjorklund function interactively? For example, using this [script](https://gitlab.com/drumbook/accents/-/raw/658e6d39eb067f3f897f0650e241f34d3160e3c0/bjorklund.lisp), if I change 7 to some other integer while the pattern is...

Hi, I'm trying to stop a running pseq: ```common-lisp (defparameter *7s* (pseq (list (pseq (list (ppar (list sub kick))) 4) (pseq (list (ppar (list sub kick door))) 4) (pseq (list...

Hi there, I bumped into this situation: ```common-lisp :db (ptrace (pseq (p- (list -9 (prest) -12 (prest) -15 (prest) (prest)) 10))) ``` Gives me this output: ``` -19 -9 -22...