From 6e662223aa5fa255716c3763dda28bbdb60e12a4 Mon Sep 17 00:00:00 2001 From: DhruvMaroo Date: Sun, 30 May 2021 22:15:37 +0530 Subject: [PATCH] changed spaces to tabs --- include/core/Math.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/core/Math.hpp b/include/core/Math.hpp index 2d82308..e804246 100644 --- a/include/core/Math.hpp +++ b/include/core/Math.hpp @@ -53,24 +53,24 @@ inline float tan(float p_x) { } inline double asin(double p_x) { - return ::asin(p_x); + return ::asin(p_x); } inline float asin(float p_x) { - return ::asinf(p_x); + return ::asinf(p_x); } inline double acos(double p_x) { - return ::acos(p_x); + return ::acos(p_x); } inline float acos(float p_x) { - return ::acosf(p_x); + return ::acosf(p_x); } inline double atan(double p_x) { - return ::atan(p_x); + return ::atan(p_x); } inline float atan(float p_x) { - return ::atanf(p_x); + return ::atanf(p_x); } inline double atan2(double p_y, double p_x) {