This is just a quick tutorial to explain the different parts of a processing sketch. Hopefully this will have you quickly creating your own processing applications.
If you haven’t already done so – follow the Processing.js getting started tutorial to learn how to run Processing.js in a website.
Now we are going to walk through a couple of examples to get you started in Processing.
Here is the Processing sketch from the previous tutorial:
//Hello World Processing Application
void setup(){
size(500,500);
}
void draw(){
background(200,100,100);
fill(100,200,100);
...
Read more...