Thursday 25 January 2018

drawing of circle in java

Drawing of circle in java



package geometry.drawing;

public class Circle extends Point {
double radius;
public Circle(int x, int y, double r) {
super(x, y);
radius = r;
} // End of Circle Constructor
} // End of class Circle

0 comments: