background(255, 50, 0); var drawCircles = function() { stroke(0); strokeWeight(10); fill(175, 0, 0); ellipse(200, 200, 300, 300); stroke(0, 0, 0, 70); strokeWeight(7); ellipse(200, 200, 150, 150); noStroke(); fill(0); ellipse(200, 200, 50, 50); }; var drawTomoe = function() { ellipse(200, 125, 40, 40); arc(210, 115, 50, 30, 180, 360); }; var drawBorder = function() { noFill(); stroke(0); strokeWeight(20); quad(0, 400, 400, 400, 400, 0, 0, 0); }; var draw = function() { drawBorder(); drawCircles(); drawTomoe(); rotate(80); translate(85, -340); drawTomoe(); rotate(80); translate(70, -260); drawTomoe(); };