class Eyeball{ float x, y; float radius; Eyeball( float x, float y, float radius ){ this.x = x; this.y = y; this.radius = radius; } }