23 lines
256 B
Plaintext
23 lines
256 B
Plaintext
// The Nature of Code
|
|
// Daniel Shiffman
|
|
// http://natureofcode.com
|
|
|
|
Walker w;
|
|
|
|
void setup() {
|
|
size(640,360);
|
|
// Create a walker object
|
|
w = new Walker();
|
|
|
|
}
|
|
|
|
void draw() {
|
|
background(255);
|
|
// Run the walker object
|
|
w.walk();
|
|
w.display();
|
|
}
|
|
|
|
|
|
|