Exemplo n.º 1
0
 public RawPixel(RawMap <T> map)
     : this(map, 0, 0, map.Width *map.Height)
 {
 }
Exemplo n.º 2
0
 public RawPixel(RawMap <T> map, int x, int y)
     : this(map, x, y, map.Width *map.Height)
 {
 }
Exemplo n.º 3
0
 public RawPixel(RawMap <T> map, int x, int y, int limit)
 {
     _map   = map;
     _limit = limit;
     _index = y * map.Width + x;
 }