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.
https://docs.google.com/document/d/1OTHaG50mQ-Ff4jOpxjFX1x2eVVUMydZoX3TBjkO0xkk/edit#heading=h.gjdgxs
In this review we will cover the following:
Working With Text
Data Types
Arrays and Arrays of Objects:
Introduction to Arrays Reviewing Objects and Classes Creating a huge number of Objects and placing them in an Array
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,