public CircleC(double x, double y, double radius) { rad = radius; center = new PointS(x, y); }
public double Distance(PointS point) { return(Math.Sqrt((x - point.x) * (x - point.x) + (y - point.y) * (y - point.y))); }