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