Exemplo n.º 1
0
 public Picture createCompatible()
 {
     return(Picture.Create(width, height, color));
 }
Exemplo n.º 2
0
 public Picture(Picture other) : this(other.width, other.height, other.data, other.color, other.crop)
 {
 }
Exemplo n.º 3
0
 public bool compatible(Picture src)
 {
     return(src.color == color && src.width == width && src.height == height);
 }