xxxxxxxxxx
71
var bg;
function preload() {
}
function setup() {
createCanvas(500, 500);
bg = loadImage("https://cdn.glitch.com/87836090-8683-448f-a8fb-3af0c0f82bac%2Fworksheets-03.png?v=1598505804708")
}
function draw() {
background(bg);
push();
let s1 = color(182, 47, 47);
stroke(s1);
strokeWeight(4)
push();
noFill();
circle(width / 2, height / 2, 300, 300);
push();
noStroke();
let b = color(255, 102, 255, 130);
fill (b);
circle(100, 250, 40);
circle(399, 250, 40);
circle(105, 209, 40);
circle(393, 209, 40);
circle(378, 170, 40);
circle(123, 170, 40);
circle(150, 137, 40);
circle(349, 139, 40);
circle(186, 115, 40);
circle(315, 115, 40);
circle(229, 102, 40);
circle(274, 102, 40);
circle(107, 290, 40);
circle(121, 327, 40);
circle(148, 360, 40);
circle(182, 383, 40);
circle(222, 395, 40);
circle(266, 397, 40);
circle(308, 389, 40);
circle(345, 365, 40);
circle(375, 333, 40);
circle(393, 293, 40);
push();
noStroke();
fill(255, 255, 255, 180);
circle(394, 260, 5);
circle(280, 90, 3);
circle(119, 182, 7);
}