Archive > September 2008
Repeat
- Go to work;
- Send your kids to school;
- Follow fashion;
- Act normal;
- Walk on the pavement;
- Watch tv;
- Save for the old age;
- Obey the law;
- Repeat after me: I’m free.
source: FFFFOUND!
Drawing modes of rectangles and ellipsis
rectMode();
ellipseMode();
Both can have 4 different modes:
CENTER: xCenter, yCenter, width, height (The default for ellipses)
RADIUS: xCenter, yCenter, xRadius, yRadius
CORNER: xTopLeftCorner, yTopLeftCorner, width, height (The default for rectangles)
CORNERS: xTopLeftCorner, yTopLeftCorner, xBottomRightCorner, yBottomRightCorner
Processing the processing
Processing is a simple programming language based in Java (so, OO) and commonly used to create interactive digital art pieces. Examples will come later. I’m a very beginner in this language, I have some experience with Java, PHP and C. As I’m a designer and not a developer, some stuff here can look a little dummy (or totally).
The main structure:
setup();
This runs once at the program start-up.
draw();
This loops continuously during the running program.








