xxxxxxxxxx
31
function setup() {
createCanvas(400, 400);
background('#E762CC');
noStroke();
//rectangle
fill('#4BE5D2')
rect(50,50,300,200)
//circles
fill(255, 204, 0);
circle(100,100,50);
fill(255,200,250);
circle(300,300,170);
fill(200,255,255);
circle(200,200,80);
//line
stroke(0,0,180);
strokeWeight(4);
line(70,360,380,170)
}
function draw() {
}