aboutsummaryrefslogtreecommitdiff
path: root/vendor
diff options
context:
space:
mode:
authorFredrik Malmer <fmalmer@blizzard.com>2025-10-18 01:18:05 +0200
committerFredrik Malmer <fmalmer@blizzard.com>2025-10-18 01:18:05 +0200
commit2550be59ef7812a4998a224b32eb9ee52192fb47 (patch)
treee95441fd25050b6b425dcc3ee6afd59038649625 /vendor
parent4b8751bebdbf40528c2af8ff5a4ef38c1ab429cc (diff)
Change box2d epsilon to math C standard library
Diffstat (limited to 'vendor')
-rw-r--r--vendor/box2d/math_functions.odin2
1 files changed, 1 insertions, 1 deletions
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