mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
19 lines
406 B
JavaScript
19 lines
406 B
JavaScript
/**
|
|
* Math2 Constants
|
|
*/
|
|
math2.E = Math.E;
|
|
math2.LN2 = Math.LN2;
|
|
math2.LN10 = Math.LN10;
|
|
math2.LOG2E = Math.LOG2E;
|
|
math2.LOG10E = Math.LOG10E;
|
|
math2.PI = Math.PI;
|
|
math2.SQRT1_2 = Math.SQRT1_2;
|
|
math2.SQRT2 = Math.SQRT2;
|
|
|
|
math2.I = new Complex(0, -1);
|
|
|
|
// lower case constants
|
|
math2.pi = math2.PI;
|
|
math2.e = math2.E;
|
|
math2.i = math2.I;
|