From ce7b6bd1c050af27441c84f3f24c03e46fa834a5 Mon Sep 17 00:00:00 2001 From: Andrea Fontana Date: Thu, 9 Dec 2021 18:39:52 +0100 Subject: [PATCH] typo --- src/raymath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raymath.h b/src/raymath.h index 4943ae3c9..7538670af 100644 --- a/src/raymath.h +++ b/src/raymath.h @@ -528,7 +528,7 @@ RMAPI float Vector3Distance(Vector3 v1, Vector3 v2) return result; } -// Calculate between two vectors +// Calculate angle between two vectors RMAPI float Vector3Angle(Vector3 v1, Vector3 v2) { return atan2f(Vector3Length(Vector3CrossProduct(v1, v2)), Vector3DotProduct(v1, v2));