Example #1
0
 public Circle(CartPt loc, int radius)
 {
     _loc    = loc;
     _radius = radius;
 }
Example #2
0
 public Rectangle(CartPt tlCorner, int width, int height)
 {
     _tlCorner = tlCorner;
     _width    = width;
     _height   = height;
 }