
void setup() {
size(1000, 1000);
background(255);
}
void draw() {
// Nara.
}
void mousePressed() {
background(255); // limpiesito
dibujateSesamo();
// circulito();
}
void dibujateSesamo() {
float x1 = random(width);
float y1 = random(height);
float x2 = random(width);
float y2 = random(height);
line(x1, y1, x2, y2);
}
// void circulito() {
// float centerX = random(width);
// float centerY = random(height);
//float radius = random(100);
//ellipse(centerX, centerY, radius * 2, radius * 2);
// }