We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
val tile = Tile(100, 100) val other = Tile(105, 106) val delta = tile.delta(other) assertEquals(Delta(5, 6), delta)
The delta from tile1 -> tile2 is returning the negative delta instead of the positive. That is to say x1-x2 not x2-x1.
Will need to flip all existing usages
The text was updated successfully, but these errors were encountered:
There's no reason it has to be one way or another, might it make more sense the other way though? Hard to say
Sorry, something went wrong.
No branches or pull requests
The delta from tile1 -> tile2 is returning the negative delta instead of the positive. That is to say x1-x2 not x2-x1.
Will need to flip all existing usages
The text was updated successfully, but these errors were encountered: