public CRound(CPoint center, double r1) { this.center = center; this.r = r1; }
private double r; //半径 public CRound() { this.center = new CPoint(); this.r = 0.0; }