xxxxxxxxxx
23
// The Nature of Code
// Daniel Shiffman
// http://natureofcode.com
let b1;
let b2;
function setup() {
createCanvas(640, 360);
b1 = createBall();
b2 = createBall();
}
function draw() {
background(255);
b1.display();
b1.move();
console.log("b1 position: " + b1.position.x + ", "+ b1.position.y);
b2. display();
b2.move();
}