예제 #1
0
 public TransparentShapeImpl(AbstractShape shape, float transparency)
 {
     this.shape        = shape;
     this.transparency = transparency;
 }
예제 #2
0
 public ColoredShapeImpl(AbstractShape shape, string color)
 {
     this.shape = shape;
     this.color = color;
 }