Skip to content

Instantly share code, notes, and snippets.

View osresearch's full-sized avatar
☢️
Frequently takes things apart

Trammell Hudson osresearch

☢️
Frequently takes things apart
View GitHub Profile
@osresearch
osresearch / swarm.pde
Created December 20, 2018 23:05
Creative Coding Utrecht live coding swarm demo
class Bee
{
Bee() {}
float x = random(1000);
float y = random(1000);
float vx = random(10);
float vy = random(10);
float ox = x, oy = y;