From 2550be59ef7812a4998a224b32eb9ee52192fb47 Mon Sep 17 00:00:00 2001 From: Fredrik Malmer Date: Sat, 18 Oct 2025 01:18:05 +0200 Subject: [PATCH] Change box2d epsilon to math C standard library --- vendor/box2d/math_functions.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/box2d/math_functions.odin b/vendor/box2d/math_functions.odin index 4394feb39..33f01ebd1 100644 --- a/vendor/box2d/math_functions.odin +++ b/vendor/box2d/math_functions.odin @@ -3,7 +3,7 @@ package vendor_box2d import "core:c" import "core:math" -EPSILON :: 1e-23 +EPSILON :: math.F32_EPSILON Vec2 :: [2]f32