Skip to content
New issue

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

tools中的Matrix.getIndex计算错误 #2

Open
wilhantian opened this issue Oct 31, 2024 · 1 comment
Open

tools中的Matrix.getIndex计算错误 #2

wilhantian opened this issue Oct 31, 2024 · 1 comment

Comments

@wilhantian
Copy link

static int getIndex(int row, int col) => col * 9 + row;
应该改为 static int getIndex(int row, int col) => row * 9 + col;

库中虽未使用Matrix.getIndex函数,但可能对其他开发者带来困扰

这是很好的dart库 🎉

@einsitang
Copy link
Owner

感谢反馈,已修改

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants