xxxxxxxxxx
34
function setup() {
createCanvas(800, 800);
}
function draw() {
//this is the background color
background(209, 242, 165);
// rgb values
fill(250, 244,140);
//stroke thickness
strokeWeight(5);
//stroke color
stroke(255, 159, 128);
//four values: x, y, width,height
ellipse(100, 100, 100);
fill(245,105,145,200);
noStroke();
rect(250, 200, 50, 400);
fill(239,250,180);
arc(300,180, 150,150,4, HALF_PI);
fill(239,250,150);
arc(270,190, 150,150,PI, PI +QUARTER_PI);
stroke(100);
line(200, 300, 250, 175);
}