class Circle extends DJComponent {
int centerX; // x-coordinate of the center
int centerY; // y-coordinate of the center
int diameter; // diameter of the circle
// (width == height, diameter == width)
int fill; // fill or not
}