UNPKG
@evojs/math
Version:
latest (0.5.0)
0.5.0
0.4.0
0.3.0
0.1.0
0.0.0
Nodejs math extension
github.com/evotool/js-math
evotool/js-math
@evojs/math
/
constants.js
7 lines
(6 loc)
•
249 B
JavaScript
View Raw
1
2
3
4
5
6
7
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
LOG_E
=
exports
.
DIV_PI_180
=
exports
.
DIV_180_PI
=
void
0
;
exports
.
DIV_180_PI
=
180
/
Math
.
PI
;
exports
.
DIV_PI_180
=
Math
.
PI
/
180
;
exports
.
LOG_E
=
Math
.
log
(
Math
.
E
);