Day 2
//If you missed today you should get a copy of the Processing worksheet and the Processing presentation.
Conditional statements - Boolean logic- George Booole
- && Logical AND
- for Loop
- for (init; test; update) {
Statements
}
- for (int i=20; i < 80; i +=5) {
line (20, i, 80, i+15);
}
- Assignment:
- Write a for loop inside void draw( ) { that creates several lines, circles, squares, etc.
- Use the keyPressed ‘s’ function to save your work.
- Attach your file to Google Classroom.