xxxxxxxxxx
25
function setup() {
createCanvas(600, 400);
}
function draw() {
background('#E692F4');
fill(200);
rect(200,200,50,100);
point(50,50);
noStroke()
line(40,20,200,50);
square(220,200,50);
fill(0,255,0,50);
circle(200,200,60);
ellipse(60,60,30,90);
fill(255,0,0,150);
stroke(255);
strokeWeight(5)
quad(200,200,150,100,80,70,20,70);
point(100,100);
noFill();
triangle(300,250,350,200,400,300);
fill('yellow')
arc(200,200,50,50,0,HALF_PI);
}