@awayjs/core
Version:
AwayJS core classes
18 lines (17 loc) • 479 B
JavaScript
/**
* MathConsts provides some commonly used mathematical constants
*/
var MathConsts = /** @class */ (function () {
function MathConsts() {
}
/**
* The amount to multiply with when converting radians to degrees.
*/
MathConsts.RADIANS_TO_DEGREES = 180 / Math.PI;
/**
* The amount to multiply with when converting degrees to radians.
*/
MathConsts.DEGREES_TO_RADIANS = Math.PI / 180;
return MathConsts;
}());
export { MathConsts };