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
The Index<> for QrCode implementation here seems to have interchanged the row and column, indexing into the array the wrong way.
Index<> for QrCode
The other functions (like to_colors()) is returning row-major order, while the Index is the only one returning column-major.
to_colors()
Index
The current code is:
let index = y * self.width + x;
It should probably be
let index = x * self.width + y;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
Index<> for QrCode
implementation here seems to have interchanged the row and column, indexing into the array the wrong way.The other functions (like
to_colors()
) is returning row-major order, while theIndex
is the only one returning column-major.The current code is:
It should probably be
The text was updated successfully, but these errors were encountered: