A coordinate can be multiplied or divided by an integer.
Multiply/divide a coord by a constant
assert(RowCol(1, 2) * -4 == RowCol(-4, -8)); assert(RowCol(4, -6) / 2 == RowCol(2, -3));
See Implementation
A coordinate can be multiplied or divided by an integer.