xxxxxxxxxx
21
function setup() {
createCanvas(400, 400, SVG);
noFill();
}
function draw() {
background("white");
setCenter(200, 200);
fill(random(255), random(255), random(255), 50);
noStroke();
/* Experiment with the numbers here! */
polarPentagons(15, 100x, 100);
noLoop();
}
/* Click on your drawing to download a copy */
function mouseClicked() {
save("myDesign.svg");
}