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