xxxxxxxxxx
35
function setup() {
createCanvas(600, 600);
background(220);
fill('turquoise')
// circles
ellipse(0, 400, 200, 200);
ellipse(400, 400, 200, 200);
ellipse(0, 0, 200, 200);
ellipse(400, 0, 200, 200);
fill('pink');
noStroke();
// star
triangle(300, 200, 200, 400, 400, 400);
triangle(300, 450, 200, 250, 400, 250);
// box
fill('blue');
rect(150, 100, 100, 50);
textSize(50)
textAlign(CENTER, CENTER);
text('hello 🌊🍔', 300, 320)
}
function draw() {
}