class Ball { float x; float y; Ball(float x_, float y_) { x=x_; y=y_;} void render() { ellipse(x,y,10,10); } }//end ball class