Archive > September 2008

links for 2008-09-08

» 08 September 2008 » In Links from delicious » No Comments

Continue reading...

Repeat

» 08 September 2008 » In Observation notes » No Comments

  1. Go to work;
  2. Send your kids to school;
  3. Follow fashion;
  4. Act normal;
  5. Walk on the pavement;
  6. Watch tv;
  7. Save for the old age;
  8. Obey the law;
  9. Repeat after me: I’m free.

source: FFFFOUND!

Continue reading...

Drawing modes of rectangles and ellipsis

» 02 September 2008 » In Personal projects » No Comments

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

Continue reading...

Tags:

Processing the processing

» 02 September 2008 » In Personal projects » No Comments

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.

Continue reading...

Tags: