Note that for this review session, we spent time talking about the Final project and grading. Please watch the first part of this video for an understanding on expectations for the final project and class grading works.

CodeFall2024-Week6.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);

From Class,

Data Types and Strings