diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2018-07-20 13:09:17 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2018-08-10 22:42:02 -0500 |
commit | 9170d932e3832c86e5e1fc09a6a555b4efd95992 (patch) | |
tree | aa240ea68e2c79ae7e38253ffc3d33506a211c8c /core/math/math_funcs.h | |
parent | 28fc19533902dbc2614c949486bb4edf9450cc05 (diff) | |
download | redot-engine-9170d932e3832c86e5e1fc09a6a555b4efd95992.tar.gz |
[Core] Grammar, move defs to defs
Math constant definitions belong in `math_defs.h`. Also, the grammer in these files really needed some updating.
Diffstat (limited to 'core/math/math_funcs.h')
-rw-r--r-- | core/math/math_funcs.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/core/math/math_funcs.h b/core/math/math_funcs.h index f0c0268f31..992084a653 100644 --- a/core/math/math_funcs.h +++ b/core/math/math_funcs.h @@ -39,13 +39,6 @@ #include <float.h> #include <math.h> -#define Math_PI 3.14159265358979323846 -#define Math_TAU 6.28318530717958647692 -#define Math_SQRT12 0.7071067811865475244008443621048490 -#define Math_LN2 0.693147180559945309417 -#define Math_INF INFINITY -#define Math_NAN NAN - class Math { static pcg32_random_t default_pcg; |