コード例 #1
0
 public Circle(Point center, double radius, IDrawBridge drawBridge)
     : base(drawBridge)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
 public Rectangle(Point upperLeft, double width, double height, IDrawBridge drawBridge)
     : base(drawBridge)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 protected Shape(IDrawBridge drawBridge)
 {
     this.DrawBridge = drawBridge;
 }