Ejemplo n.º 1
0
 public void SetPixel(int x, int y, Colour colour)
 {
     _image[x, y] = colour;
 }
Ejemplo n.º 2
0
 public Image(int width, int height, Colour fillcol)
 {
     _image = new Colour[width, height];
     this.Fill(fillcol);
 }