CreedVI/Raylib-J

Vector2DotProduct is wrong

Opened this issue · 0 comments

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