-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmath.js
43 lines (43 loc) · 1.23 KB
/
math.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
const math_E = Math.E;
const math_LN10 = Math.LN10;
const math_LN2 = Math.LN2;
const math_LOG10E = Math.LOG10E;
const math_LOG2E = Math.LOG2E;
const math_PI = Math.PI;
const math_SQRT1_2 = Math.SQRT1_2;
const math_SQRT2 = Math.SQRT2;
const math_abs = Math.abs;
const math_acos = Math.acos;
const math_acosh = Math.acosh;
const math_asin = Math.asin;
const math_asinh = Math.asinh;
const math_atan = Math.atan;
const math_atanh = Math.atanh;
const math_atan2 = Math.atan2;
const math_cbrt = Math.cbrt;
const math_ceil = Math.ceil;
const math_clz32 = Math.clz32;
const math_cos = Math.cos;
const math_cosh = Math.cosh;
const math_exp = Math.exp;
const math_expm1 = Math.expm1;
const math_floor = Math.floor;
const math_fround = Math.fround;
const math_hypot = Math.hypot;
const math_imul = Math.imul;
const math_log = Math.log;
const math_log1p = Math.log1p;
const math_log10 = Math.log10;
const math_log2 = Math.log2;
const math_max = Math.max;
const math_min = Math.min;
const math_pow = Math.pow;
const math_random = Math.random;
const math_round = Math.round;
const math_sign = Math.sign;
const math_sin = Math.sin;
const math_sinh = Math.sinh;
const math_sqrt = Math.sqrt;
const math_tan = Math.tan;
const math_tanh = Math.tanh;
const math_trunc = Math.trunc;