On a sheet of paper, create a(n)

  1. description of motion
  2. sketch
  3. motion diagram
  4. position vs time graph
  5. velocity vs time graph
  6. acceleration vs time graph

On a sheet of paper, create a(n)

  1. description of motion
  2. sketch
  3. motion diagram
  4. position vs time graph
  5. velocity vs time graph
  6. acceleration vs time graph

-----

Complete the code below to match the motion above.

let squarePosition = ___;
let squareVelocity = ___;
let squareAcceleration = ___;

function draw() {
  square(squarePosition, -squareSize/2, squareSize);
  squarePosition += squareVelocity;
  squareVelocity += squareAcceleration;

  if (squarePosition ___) {
    noLoop();
  }
}