In this review we will cover the following:

GMT20230301-191621_Recording_1728x984.mp4

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.

In today;s

Last week we covered objects

There is something that shows up in video 7.1 that was not covered… the ability to simply initialize a variable as an object. The following is an object without any methods or constructors:

let dObj = { x: 100, y: 200};