xxxxxxxxxx
function setup() {
createCanvas(600, 600);
background(254, 53, 251)
}
function draw () {
stroke (1)
rect (150,150, 5, 5);
rect (300,150, 5, 5);
rect (450,150, 5, 5);
rect (150,300, 5, 5);
rect (300,300, 5, 5);
rect (450,300, 5, 5);
rect (150,450, 5, 5);
rect (300,450, 5, 5);
rect (450,450, 5, 5);
fill ( 250, 150, 0, 250);
triangle (300,150,150,300,150,100);
fill ( 250, 150, 0, 270);
triangle (300,150,450,300,450,100);
fill (250,125,125);
triangle (250,155,175,230,175,125);
fill (250,125,125);
triangle (350,155,425,230,425,125);
fill ( 250, 150, 0, 270);
ellipse (300,300,310,305);
fill ( 0, 0, 0,250);
triangle (350,350,250,350,300,370);
strokeWeight (0);
fill ( 0,250, 0,250);
ellipse (225,275,100, 75);
ellipse (370,275,100, 75);
fill ( 0, 0, 0,250);
ellipse (225,275, 50, 75);
ellipse (370,275, 50, 75);
fill ( 0, 0, 0,250);
noStroke ();
ellipse (300,400, 100, 50);
fill ( 250, 150, 0, 275);
ellipse (300,390, 100, 41);
fill (0,0,0,0);
strokeWeight (9);
arc (350,350,350,350, PI+QUARTER_PI, OPEN);
stroke (100);
fill (250,30,40);
rect (50,40,75,100);
fill (40,200,15,200);
rect ( 50,15,95,100);
fill ( 90, 20, 200, 100);
ellipse ( 40, 40,200,200);
}