From 06cfda6ff9e06da5ba54670243968b9f5b7216f0 Mon Sep 17 00:00:00 2001 From: Ray Date: Fri, 26 Sep 2025 23:03:10 +0200 Subject: [PATCH] Update raymath.h --- src/raymath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raymath.h b/src/raymath.h index d3c8b9697..65a20de59 100644 --- a/src/raymath.h +++ b/src/raymath.h @@ -2555,7 +2555,7 @@ RMAPI int QuaternionEquals(Quaternion p, Quaternion q) // Decompose a transformation matrix into its rotational, translational and scaling components and remove shear RMAPI void MatrixDecompose(Matrix mat, Vector3 *translation, Quaternion *rotation, Vector3 *scale) { - float eps = 1e-9; + float eps = (float)1e-9; // Extract Translation translation->x = mat.m12;