operator ~/ method
Divides the offset by a scalar value using integer division.
Returns a new IntOffset with coordinates divided by the given scalar using integer division.
Implementation
IntOffset operator ~/(int scalar) => IntOffset(x ~/ scalar, y ~/ scalar);