xxxxxxxxxx
26
function setup() {
createCanvas(600, 600);
background(210);
}
function draw() {
rectMode(CENTER);
const c = color(255, 204, 0);
fill(c);
rect(200,200,70,100);
const d = color(255, 0, 0);
fill(d);
circle(300,300,90);
const e = color(0, 255, 0,10);
fill(e);
quad(400,400,500,500,400,550,350,500);
fill(100, 0, 220,10);
arc(70,400,100,100,PI+QUARTER_PI,PI);
fill(200,20,100);
strokeWeight(4);
line(50,30,400,500);
fill('red');
}