constants/mathematics.js

/**
 * @module MATHEMATICS
 */

/**
 * The value to convert an angle from degrees to radians.
 * @type {number}
 * @constant
 *
 * @memberof module:MATHEMATICS
 */
const RADIANS = Math.PI / 180;

export {

    RADIANS
};