From f8791d361c3695d126797ff5957a9f85fc6506a4 Mon Sep 17 00:00:00 2001 From: Jeroen van Rijn Date: Thu, 9 Jul 2026 17:19:44 +0200 Subject: [PATCH] raymath: Vector3DistanceSqr(t) --- vendor/raylib/raymath.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/raylib/raymath.odin b/vendor/raylib/raymath.odin index 6717d5282..98eb5c03e 100644 --- a/vendor/raylib/raymath.odin +++ b/vendor/raylib/raymath.odin @@ -301,7 +301,7 @@ Vector3Distance :: proc "c" (v1, v2: Vector3) -> f32 { } // Calculate square distance between two vectors @(require_results) -Vector3DistanceSqrt :: proc "c" (v1, v2: Vector3) -> f32 { +Vector3DistanceSqr :: proc "c" (v1, v2: Vector3) -> f32 { return linalg.length2(v2-v1) } // Calculate angle between two vectors