Files
processing4/java/examples/Books/Nature of Code/introduction/RandomWalkTraditional2/RandomWalkTraditional2.pde
2012-12-11 20:04:34 +00:00

21 lines
251 B
Plaintext

// The Nature of Code
// Daniel Shiffman
// http://natureofcode.com
Walker w;
void setup() {
size(200,200);
// Create a walker object
w = new Walker();
background(0);
}
void draw() {
// Run the walker object
w.step();
w.render();
}