diff options
Diffstat (limited to 'src/Math/Trig.hpp')
| -rw-r--r-- | src/Math/Trig.hpp | 2 |
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> |
