xxxxxxxxxx
26
function setup() {
createCanvas(800,800);
strokeWeight(1);
noFill();
stroke(0);
rectMode(CENTER);
noLoop();
}
function draw() {
background(255);
for (let i = 10; i < 300; i) {
rect(width / 2 + random(-30, 30), height / 2 + random(-30, 30), i, i);
i = i + 10;
}
}
function mousePressed() {
// when the user clicks, export the current image and stop
save("Vera_Molnar.svg",SVG); // give file name
print("saved svg");
}