xxxxxxxxxx
31
function setup() {
createCanvas(400, 400, SVG);
stroke("black")
strokeWeight(3)
}
function draw() {
background("black");
setCenter(width/2, height/2);
stroke("white")
line(-185,-100,-185,100)
line(185,-100,185,100)
stroke("#89FF00")
fill("#48C06A")
polarOctagons( 24, 40, 257);
rotate(frameCount / 100)
stroke("black")
/* Experiment with the numbers here! */
//polarEllipses(4, 50, 50, 50);
fill("yellow")
polarTriangles(3, 100, 100);
fill("#FFD700")
polarTriangle(180, 100, 0)
}
/* Click on your drawing to download a copy */
function mouseClicked() {
save("myDesign.svg");
}