Get the pixel offset of the top-left corner of the tile at the given coord.
grid location of tile.
// 2 rows, 3 cols, 32x64 tiles auto grid = [ [ 00, 01, 02, ], [ 10, 11, 12, ], ]; auto myMap = OrthoMap!int(grid, 32, 64); assert(myMap.tileOffset(RowCol(0, 0)) == PixelCoord(0, 0)); assert(myMap.tileOffset(RowCol(1, 2)) == PixelCoord(64, 64));
See Implementation
Get the pixel offset of the top-left corner of the tile at the given coord.