Esempio n. 1
0
 public LabTile(TiledImage <ArgbPixel, byte, LabTile> parent, TileCoordinate location) : base(parent, location)
 {
 }
Esempio n. 2
0
 private static TTile CreateTile(TiledImage <TPixel, TValue, TTile> parent, TileCoordinate coordinate)
 {
     return((TTile)((object)new Tile <TPixel, TValue, TTile>(parent, coordinate)));
 }
Esempio n. 3
0
 internal Tile(TiledImage <TPixel, TValue, TTile> parent, TileCoordinate coordinate)
 {
     this.Parent     = parent;
     this.Coordinate = coordinate;
 }
Esempio n. 4
0
 private static LabTile CreateTile(TiledImage <ArgbPixel, byte, LabTile> parent, TileCoordinate location)
 {
     return(new LabTile(parent, location));
 }