public interface Circle extends DrawableFigure { /**sets coordinates of circle*/ public void setCoordinates(double x_location, double y_location, double newRadius); public void setCoordinates(double x_location, double y_location); public void setRadius(double newRadius); } //Remember: when execute draw, should be at x_location - Radius