xxxxxxxxxx
13
function setup() {
createCanvas(windowWidth, 200);
rectMode(CENTER);
frameRate(10);
}
function draw() {
background(220);
//ellipse(50, 50, 80, 90);
translate(width/2, height/2);
rotate(frameCount);
rect(0, 0, 80, 90);
}