xxxxxxxxxx
22
/*
Equipe:
Nome Completo do Aluno I - Subturma X (Líder)
Nome Completo do Aluno II - Subturma Z
Etapa 1
*/
// https://editor.p5js.org/
var xi = 200;
function setup() {
createCanvas(400, 400);
}
function draw() {
background(100);
rect(xi, 20, 55, 55);
ellipse(200, 350, 30, 50);
}