This function is called once when the program starts. (HAPPENS ONCE)
setup()
This function is called repeatedly as the program executes. (FOREVER)
draw()
What is mouseX & what direction does it change in?
The x-coordinate position of the mouse. Changes as the mouse moves horizontally.
What is mouseY & what direction does it change in?
The y-coordinate position of the mouse. Changes as the mouse moves vertically.
What is mousePressed()?
When user presses mouse button
What is keyPressed?
When user presses key
What is floor()?
Round to the nearest whole number
What is textAlign()?
Used to set the alignment for displaying text on the canvas