GMT20231011-173401_Recording_1870x812.mp4

Module 6 - Arrays

https://docs.google.com/document/d/1OTHaG50mQ-Ff4jOpxjFX1x2eVVUMydZoX3TBjkO0xkk/edit#heading=h.gjdgxs

In this review we will cover the following:

Working with Text in your Sketch

The following are a bunch of functions you can use to stylize text on your canvas:

fill(200,0,0);

textFont('Courier');
//textFont('Georgia');
//textFont('Helvetica');
//textFont('Verdana');
//textFont('Arial');
//textFont('Times');
//textFont('Comic Sans MS');

textStyle(NORMAL);
//textStyle(ITALIC);
//textStyle(BOLD);
//textStyle(BOLDITALIC);

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

Data Types and Strings

We covered numbers and Booleans in past classes.