I have a bit hard to explain question but I'll try to do my best.
I need a function to check if a random coordinate is in a 'row'.
Let's say size = 20 and between = 100
There are a endless amount of rows. And the coordinates are always an int (so are size & between)
How to chenk if a random coordinate is in a row or in the 'between' zone?
I call this method very often on the main thread of a program (not allowed to use aSync), what is the best/most efficient way to do this?
Thanks for helping!