1024-648-pixeldrawing-####.jpg
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...