.png)
On a sheet of paper, create a(n)
- description of motion
- sketch
- motion diagram
- position vs time graph
- velocity vs time graph
- acceleration vs time graph
On a sheet of paper, create a(n)
- description of motion
- sketch
- motion diagram
- position vs time graph
- velocity vs time graph
- 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();
}
}