From c39291affa7251b38625263cc93366e5707a1290 Mon Sep 17 00:00:00 2001 From: Jeffery Myers Date: Mon, 21 Oct 2024 08:56:12 -0700 Subject: [PATCH] Fix spaces --- src/raymath.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/raymath.h b/src/raymath.h index 68715391c..d1b5ab01e 100644 --- a/src/raymath.h +++ b/src/raymath.h @@ -2899,35 +2899,35 @@ inline const Quaternion& operator *= (Quaternion& lhs, const Matrix& rhs) // Matrix operators inline Matrix operator + (const Matrix& lhs, const Matrix& rhs) { -....return MatrixAdd(lhs, rhs); + return MatrixAdd(lhs, rhs); } inline const Matrix& operator += (Matrix& lhs, const Matrix& rhs) { -....lhs = MatrixAdd(lhs, rhs); -....return lhs; + lhs = MatrixAdd(lhs, rhs); + return lhs; } inline Matrix operator - (const Matrix& lhs, const Matrix& rhs) { -....return MatrixSubtract(lhs, rhs); + return MatrixSubtract(lhs, rhs); } inline const Matrix& operator -= (Matrix& lhs, const Matrix& rhs) { -....lhs = MatrixSubtract(lhs, rhs); -....return lhs; + lhs = MatrixSubtract(lhs, rhs); + return lhs; } inline Matrix operator * (const Matrix& lhs, const Matrix& rhs) { -....return MatrixMultiply(lhs, rhs); + return MatrixMultiply(lhs, rhs); } inline const Matrix& operator *= (Matrix& lhs, const Matrix& rhs) { -....lhs = MatrixMultiply(lhs, rhs); -....return lhs; + lhs = MatrixMultiply(lhs, rhs); + return lhs; } //------------------------------------------------------------------------------- #endif // C++ operators