Exemplo n.º 1
0
 public TransparentShapeImpl(AbstractShape shape, float transparency)
 {
     this.shape        = shape;
     this.transparency = transparency;
 }
Exemplo n.º 2
0
 public ColoredShapeImpl(AbstractShape shape, string color)
 {
     this.shape = shape;
     this.color = color;
 }