diff options
author | bunnei <bunneidev@gmail.com> | 2020-09-02 12:49:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-02 12:49:39 -0400 |
commit | 98913986e7ab43c8672fc5597de47ecb58e77483 (patch) | |
tree | 4c76baa8419fa8cb23c7c6ad2fa12a70d3c75426 /src/common | |
parent | f64917a85222bc98cd6363a6d97b9ccb5bd54a09 (diff) | |
parent | 45ecd601be9519f6c969746c7736cb0a7090560a (diff) |
Merge pull request #4621 from Morph1984/use-pi
input_common/motion_input: Make use of Common::PI constant
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/math_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/math_util.h b/src/common/math_util.h index cc35c90ee..b35ad8507 100644 --- a/src/common/math_util.h +++ b/src/common/math_util.h @@ -9,7 +9,7 @@ namespace Common { -constexpr float PI = 3.14159265f; +constexpr float PI = 3.1415926535f; template <class T> struct Rectangle { |