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
dev-2022-03 Windows 10 x64
angle_from_quaternion_* return correct angle
angle_from_quaternion_* return incorrect angle due to a bug in implementation, it returns math.acos(q.x) * 2, but it should be acos(q.w)
(Shouldn't odin offer unit tests as part of the core language BTW ?)
The text was updated successfully, but these errors were encountered:
c81fd2e
No branches or pull requests
Context
dev-2022-03
Windows 10 x64
Expected Behavior
angle_from_quaternion_* return correct angle
Current Behavior
angle_from_quaternion_* return incorrect angle due to a bug in implementation, it returns math.acos(q.x) * 2, but it should be acos(q.w)
(Shouldn't odin offer unit tests as part of the core language BTW ?)
The text was updated successfully, but these errors were encountered: