Skip to content

Commit 06cfda6

Browse files
committed
Update raymath.h
1 parent 87f758f commit 06cfda6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/raymath.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2555,7 +2555,7 @@ RMAPI int QuaternionEquals(Quaternion p, Quaternion q)
25552555
// Decompose a transformation matrix into its rotational, translational and scaling components and remove shear
25562556
RMAPI void MatrixDecompose(Matrix mat, Vector3 *translation, Quaternion *rotation, Vector3 *scale)
25572557
{
2558-
float eps = 1e-9;
2558+
float eps = (float)1e-9;
25592559

25602560
// Extract Translation
25612561
translation->x = mat.m12;

0 commit comments

Comments
 (0)