Updated TileMatrix

This commit is contained in:
ClemensFischer 2025-12-05 08:10:14 +01:00
parent 0b96b51c1e
commit 264f751d4e
4 changed files with 9 additions and 5 deletions

View file

@ -7,5 +7,7 @@
public int YMin => yMin;
public int XMax => xMax;
public int YMax => yMax;
public int Width => xMax - xMin + 1;
public int Height => yMax - yMin + 1;
}
}