xxxxxxxxxx
//This is a comment. Check out the Processing Reference at https://processing.org/reference/
//This sets up our sketch. It is the first thing that happens when we run our project, and only happens once.
void setup() {
size(900,900); //Size of our sketch
background(126,157,255); //Background colour
noStroke(); //Removes the outline around our shapes
}
//This is where we add our code for drawings and animations.
//This happens next, but loops over and over, in the same order (or sequence) that the code is listed.
void draw() {
//Emoji Head
fill(146,247,134); //pink
ellipse(300, 300, 400, 400); //circle
//Right Eye - open
fill(255,255,255); //white
ellipse(220, 225, 120, 120); //circle
//Right Eye Pupil
fill(0,0,0); //black
ellipse(200, 225, 60, 60); //circle
//nose
fill(146,247,134); //pink
ellipse(100,350,200,250); //circle
//nose holes
fill(0,0,0); //black
ellipse(100,350,100,100); //circle
//body
fill(146,247,134); //rect
rect(300,300,50,450); //rect
//body
fill(146,247,134); //rect
rect(200,750,250,50); //rect
}