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
Dual quaternion operator != implementation looks different from operator == return (q1.real != q2.dual) || (q1.real != q2.dual); return (q1.real == q2.real) && (q1.dual == q2.dual);
return (q1.real != q2.dual) || (q1.real != q2.dual);
return (q1.real == q2.real) && (q1.dual == q2.dual);
https://github.com/g-truc/glm/blob/master/glm/gtx/dual_quaternion.inl#L220
The text was updated successfully, but these errors were encountered:
Fixed dual quaternion != operator #629
2834d73
This issue is fixed in master branch for GLM 0.9.9 release. Thanks for contributing! Christophe
Sorry, something went wrong.
Groovounet
No branches or pull requests
Dual quaternion operator != implementation looks different from operator ==
return (q1.real != q2.dual) || (q1.real != q2.dual);
return (q1.real == q2.real) && (q1.dual == q2.dual);
https://github.com/g-truc/glm/blob/master/glm/gtx/dual_quaternion.inl#L220
The text was updated successfully, but these errors were encountered: