Ball aBall, anotherBall; void setup() { size(500,500); aBall = new Ball(width,height,100); anotherBall = new Ball(width,height,5,100,2); } void draw() { background(255); aBall.display(); anotherBall.display(); }