UNPKG

@theatrejs/theatrejs

Version:

🎮 A JavaScript 2D Game Engine focused on creating pixel art games.

18 lines (14 loc) • 221 B
/** * @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 };