Exemplo n.º 1
0
 public MyCircle(MyPoint _center, int _radius)
 {
     this.center = _center;
     this.radius = _radius;
 }
Exemplo n.º 2
0
 public MyCircle()
 {
     this.center = new MyPoint(0, 0);
     this.radius = 1;
 }