OrthoMap.tileOffset

Get the pixel offset of the top-left corner of the tile at the given coord.

struct OrthoMap(Tile)
tileOffset

Parameters

coord
Type: RowCol

grid location of tile.

Examples

1 // 2 rows, 3 cols, 32x64 tiles
2 auto grid = [
3   [ 00, 01, 02, ],
4   [ 10, 11, 12, ],
5 ];
6 auto myMap = OrthoMap!int(grid, 32, 64);
7 
8 assert(myMap.tileOffset(RowCol(0, 0)) == PixelCoord(0, 0));
9 assert(myMap.tileOffset(RowCol(1, 2)) == PixelCoord(64, 64));

Meta