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
Describe the bug
The implementation of Vector2DotProduct in the raymath module is wrong, it's implemented as v1.x + v2.x*v1.y + v2.y when it should be v1.x*v2.x + v1.y*v2.y
Describe the bug
The implementation of Vector2DotProduct in the raymath module is wrong, it's implemented as v1.x + v2.x*v1.y + v2.y when it should be v1.x*v2.x + v1.y*v2.y