xxxxxxxxxx
21
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
push();
translate(20, 20);
cube();
pop();
push();
translate(90, 20);
cube();
pop();
}
function cube(){
rect(0, 0, 50, 50);
}