mirror of
https://github.com/photonstorm/phaser
synced 2025-01-11 12:48:50 +00:00
12 lines
182 B
JavaScript
12 lines
182 B
JavaScript
|
var MATH_CONST = {
|
||
|
|
||
|
PI2: Math.PI * 2,
|
||
|
TAU: Math.PI * 0.5,
|
||
|
EPSILON: 1.0e-6,
|
||
|
DEG_TO_RAD: Math.PI / 180,
|
||
|
RAD_TO_DEG: 180 / Math.PI
|
||
|
|
||
|
};
|
||
|
|
||
|
module.exports = MATH_CONST;
|