xxxxxxxxxx
33
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
//big circle
fill('black');
stroke(0);
strokeWeight(2);
ellipse(200,200,200,200);
//white tail
fill('white');
arc(200,200,200,200,HALF_PI,PI+HALF_PI);
//WHITE
noStroke();
fill('white');
ellipse(200,250,100,100);
fill('black');
noStroke();
ellipse(200,250,30,30);
//black
fill('black');
noStroke();
ellipse(200,150,100,100);
fill('white');
noStroke();
ellipse(200,150,30,30);
}