From 129f2e421e16bd008cdca8713cc91f67d103d94e Mon Sep 17 00:00:00 2001 From: Mel Date: Fri, 7 Jul 2023 23:05:14 +0200 Subject: Fix minor quality issues --- src/Math/Trig.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Math/Trig.hpp') diff --git a/src/Math/Trig.hpp b/src/Math/Trig.hpp index 2a415f5..00489a9 100644 --- a/src/Math/Trig.hpp +++ b/src/Math/Trig.hpp @@ -6,7 +6,7 @@ namespace Math { template T radians(T degrees) { - return (degrees * PI) / 180.0f; + return degrees * PI / 180.0f; } template -- cgit 1.4.1