in class processing basics [1/29]

in class notes:
coding is a process for thinking. ex walking up the stairs. its a type of logic.
programming is codings aplication in a specific language. its a subset of coding that links back to its bigger implications.
Processing is esentailly java, it is an "integrated development envrionment", and it is a community

3 modes of processing: basic, java, and continuos


in class coding experiment:
void setup(){
size (900, 300);
background (0);
//stroke (255, 0, 0);
smooth();
}

void draw () {
line(mouseX, mouseY, 0, 0);
stroke (255, mouseX, mouseY);
}

void mousePressed() {
saveFrame();
}



image capture created from code above