xxxxxxxxxx
18
/*Create an animation where five rectangles that are initially off-screen are animated to enter the
screen from left-hand side and exit from the right-hand side. They should also be moving at
different speeds.*/
//variables
function setup() {
createCanvas(800,400);
rectMode(CENTER);
}
function draw() {
background(220);
//rectangles
}