x: ____; y: ____; radius: ____ (Replace ____ with the values of the respective variables rounded to two decimal places).
"x: ____; y: ____; radius: ____"
Example for CircleGraphic with x = 1.9999, y = 2.123567, and radius = 3.158:
"x: 2.00, y: 2.12, radius: 3.16"
The format must match exactly including whitespaces.
You can use String.format to format strings with rounded numbers.
An overridden method equals(Object o) that returns true if all the data fields x, y, radius of o are within tolerance of 0.00001 of this circle.
(a) A point is inside the circle. (b) A circle is inside another circle. (c) A Circle overlaps another circle.