Recording:

GMT20230620-180837_Recording_1920x1080.mp4

Recommended Coding Train Videos

Watch the videos under "Transformations" (38 minutes) :

https://thecodingtrain.com/tracks/transformations-in-p5

What the video for Arrays (13 mins):

https://thecodingtrain.com/tracks/code-programming-with-p5-js/code/7-arrays/1-arrays

Watch the video for Arrays of Loops (8 mins):

https://thecodingtrain.com/tracks/code-programming-with-p5-js/code/7-arrays/2-arrays-loops

Shared Document:

https://docs.google.com/document/d/1bECZwf3ATRL3WTJaKOkUtqrcqNcM_bl8JJSFwcEDAOc/edit

How do we use Text in our Sketch?

Use the text function to place text within your sketch:

// text(aStringToDisplay,xposition,yposition)

text("Dave Was Here, 100,40 ",100,40);