summary refs log tree commit diff
path: root/src/Math/Trig.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Math/Trig.hpp')
-rw-r--r--src/Math/Trig.hpp2
1 files changed, 1 insertions, 1 deletions
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<typename T>
 T radians(T degrees) {
-    return (degrees * PI) / 180.0f;
+    return degrees * PI / 180.0f;
 }
 
 template<typename T>