- Show Sketch
/* @peep sketchcode */
void setup() {
size(200, 200);
smooth();
}
void draw() {
float i = random(10);
strokeWeight(i);
noFill();
noStroke();
if(mousePressed) {
line(0, random(height), 0, random(height));
line(width, random(height), width, random(height));
stroke(random(255), random(255), random(255));
bezier(0, random(height), 0, random(height), width, random(height), width, random(height));
bezier(random(width), 0, random(width), 0, random(width), height, random(width), height);
bezier(0, random(height), 0, random(height), width, random(height), width, random(height));
bezier(random(width), 0, random(width), 0, random(width), height, random(width), height);
bezier(0, random(height), 0, random(height), width, random(height), width, random(height));
bezier(random(width), 0, random(width), 0, random(width), height, random(width), height);
}
}
Nothing in the gallery yet!
Comments
Nobody has said anything yet.