Tutorial by Examples

The easiest way to use Processing is by downloading the Processing editor from the Processing download page. That comes as a zip file. Unzip that file anywhere, and you'll have a directory that contains an executable (on Windows, that's processing.exe). Running that executable opens up the Process...
The easiest way to write Processing code is to simply call a series of functions. Press the run button in the Processing editor, and Processing will run your code. Here's an example: size(200, 200); background(0, 0, 255); fill(0, 255, 0); ellipse(100, 100, 100, 100); This code creates a 200x2...

Page 1 of 1