fix(vector3, vector4): fix some functions.

This commit is contained in:
2025-03-16 17:54:53 +01:00
committed by Loïc GUEZO
parent 634403e3e3
commit 5fb6a47ce5
2 changed files with 30 additions and 14 deletions

View File

@@ -97,7 +97,7 @@ float vec3Angle(Vec3* a, Vec3* b)
Vec3* vec3Proj(Vec3* a, Vec3* b)
{
if (!a || !b) return NULL;
float dotA = vec3Dot(a, b);
float dotB = vec3Dot(b, b);