Files
BuboQuark/Classes/BuboClock.sc
Raphaël Forment 26f744c575 Saving state after latest Lyon Algorave
This is the current state of the system after the 27/04 algorave.

NOTE: this is my personal live coding system, it is not fine-tuned for general usage. You might have to update paths and various parts of the code to get it to run on your system.
2024-04-29 12:10:30 +02:00

18 lines
153 B
Python

+ Clock {
dur {
^this.beatDur
}
mod {
arg modulo;
^this.beats % modulo
}
modbar {
arg modulo;
^this.bar % modulo
}
}