xxxxxxxxxx
19
function setup() {
createCanvas(400, 400, SVG);
noFill();
}
function draw() {
background("white");
setCenter(200, 200);
/* Experiment with the numbers here! */
polarSquares(12, 100, 50);
noLoop();
}
/* Click on your drawing to download a copy */
function mouseClicked() {
save("myDesign.svg");
}