xxxxxxxxxx
16
// The Nature of Code
// Daniel Shiffman
// http://natureofcode.com
let walker;
function setup() {
createCanvas(360, 360);
walker = new Walker(width/2, height/2);
}
function draw() {
background(0);
walker.render();
walker.step();
}