void setup() { size(1024, 648); } void draw(){ background(255); int x = (width); int y = (height); noFill(); stroke(0); strokeWeight(random(20)); bezier(random(y), random(x), random(y), random(x),random(y), random(x),random(y), random(x)); strokeWeight(random(20)); bezier(random(y), random(x), random(y), random(x),random(y), random(x),random(y), random(x)); strokeWeight(random(20)); bezier(random(y), random(x), random(y), random(x),random(y), random(x),random(y), random(x)); strokeWeight(random(20)); bezier(random(x), random(y), random(x), random(y),random(x), random(y),random(x), random(y)); strokeWeight(random(20)); bezier(random(x), random(y), random(x), random(y),random(x), random(y),random(x), random(y)); strokeWeight(random(20)); […]
More...
/* Desktop: */ void setup() { size(1920, 1200); } void draw(){ background(255); int x = (width); int y = (height); noFill(); stroke(0); strokeWeight(random(20)); bezier(random(y), random(x), random(y), random(x),random(y), random(x),random(y), random(x)); strokeWeight(random(20)); bezier(random(y), random(x), random(y), random(x),random(y), random(x),random(y), random(x)); strokeWeight(random(20)); bezier(random(y), random(x), random(y), random(x),random(y), random(x),random(y), random(x)); strokeWeight(random(20)); bezier(random(x), random(y), random(x), random(y),random(x), random(y),random(x), random(y)); strokeWeight(random(20)); bezier(random(x), random(y), random(x), random(y),random(x), […]
More...
void setup() { size(800, 800); background(255); } void draw(){} void mousePressed(){ int x = (width); int y = (height); noFill(); bezier(random(x), random(y), random(x), random(y),random(x), random(y),random(x), random(y)); bezier(random(x), random(y), random(x), random(y),random(x), random(y),random(x), random(y)); bezier(random(x), random(y), random(x), random(y),random(x), random(y),random(x), random(y)); bezier(random(x), random(y), random(x), random(y),random(x), random(y),random(x), random(y)); bezier(random(x), random(y), random(x), random(y),random(x), random(y),random(x), random(y)); stop(); saveFrame(“800x800pixeldrawing-####.tif”); exit(); }
More...