class Orb{ float x, y, r; // Default constructor Orb() { } Orb(float x, float y, float r) { this.x = x; this.y = y; this.r = r; } }