xxxxxxxxxx
21
function setup() {
createCanvas(600, 600);
}
function draw() {
background(255);
fill('#ed225d') //fill color
strokeWeight(1) //line thickness
//code for shapes
line(60,60,120,100)
triangle(320,40,280,80,360,100)
ellipse(100,240,100,80)
rect(380,200,120,80)
quad(40,440,120,400,160,460,80,480)
angleMode(DEGREES)
arc(450,500,150,100,90,270)
}