Example #1
0
 public Vector(Coords vector)
 {
     this.vector = vector;
 }
 public Circle(double x, double y, double r)
 {
     center = new Coords(x, y);
     Radius = r;
 }