He has a bunch of interesting material and a book called The Geometry of Musical Rhythm. Being a CS prof, though, he has the intensely annoying habit of counting everything from zero. Musicians don't do this, they count from 1 (like everyone else except programmers), and so all his diagrams, notation etc. have to been mentally shifted by one step every time you reach for an instrument or talk to another musician.
I personally think that counting from zero is a really harmful habit. I understand how it originated and of course switching to counting from 1 would involve all sorts of kludges and result in all sorts of bugs. But it strikes me as a classic case of abstraction gone wrong, as 'the nth step' is going to mean entirely different things in the problem and the software domain.
The top level site (http://www.groovemechanics.com/) has some other cool instruments like a virtual analog sequencer and synthesizer. It would be awesome to be able to use multiple instruments at once in an integrated session - who doesn't want to be a JS-plug-in one-man-band?
If you navigate to a different tab, and then come back to groovemechanics.com, the sound pops in VERY LOUDLY...it was painful and a bit scary to my eardrums.
Holy coolness, can you make a version that runs in node-webkit so I can hook it up to ableton and other DAWs via OSC? That would be 100% groovy. Do you mind if i do it myself some time?
Are you referring to the adjustable reset counter in the bottom right (which by default resets every 32 steps)? I wish the option were available to disable it and simply have the rhythm reset at its natural period. Alas...
If the least common multiple of two elements is high, the rhythm would have a very long period, which doesn't sound very well. Three elements of periods 16,9 and 7 would have a period of 1008 steps, which at a tempo of 100 would take 10 seconds to reset. That's not a rhythm, that's a tune.
I actually thought it would be interesting to do a tune along those lines.
Have a quartet where each one is playing something with a different time signature. Hellish to coordinate, but could be interesting at the same time, as instruments wander in and out of sync with each other. Chord progressions forming with two and three instruments while the others are doing something else.
That it doesn't sound well is a very subjective notion. Polyrhythm is quite common in some types of music, and a staple of traditional music in many places outside europe. In western music you can usually find it art music, film soundtracks, jazz, IDM, progressive rock... With well placed accents and syncopation I don't think it's that bothersome to the untrained ear even.
var patch = [ {steps:11,pulses:4,offset:0}, {steps:7,pulses:1,offset:8}, {steps:5,pulses:2,offset:0}, {steps:3,pulses:1,offset:0}, {steps:1,pulses:16,offset:0}, ]; patch.forEach(function(hit,index){ index = index + 1; $('.space-'+index).val(hit.steps).trigger('change'); $('.fill-'+index).val(hit.pulses).trigger('change'); $('.offset-'+index).val(hit.offset).trigger('change'); });
just drop that into your F12 tools' watch window and we can share configs/patches