You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seems like glm::mod<int>() gives wrong results for negative values. For example, glm::mod<int>(-1, 10) gives -1, but glm::mod<float>(-1.0f, 10.0f) gives 9.0f.
The text was updated successfully, but these errors were encountered:
Seems like
glm::mod<int>()
gives wrong results for negative values. For example,glm::mod<int>(-1, 10)
gives -1, butglm::mod<float>(-1.0f, 10.0f)
gives 9.0f.The text was updated successfully, but these errors were encountered: