public Circle(Point center, double radius, IDrawBridge drawBridge)
     : base(drawBridge)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 2
0
 public Rectangle(Point upperLeft, double width, double height, IDrawBridge drawBridge)
     : base(drawBridge)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 3
0
 protected Shape(IDrawBridge drawBridge)
 {
     this.DrawBridge = drawBridge;
 }