third quadrant of the coordinate grid code example
Example: get coordinates from number in grid
number:
n = 15
rows:
yn = 4
lines:
yx = 5
x = n modulo yn
y = (n - x) / yn
number:
n = 15
rows:
yn = 4
lines:
yx = 5
x = n modulo yn
y = (n - x) / yn