1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-12-16 11:41:50 +00:00
tobspr_shapez.io/src/js/core/polyfills.ts

10 lines
265 B
TypeScript
Raw Normal View History

// Converts from degrees to radians.
Math.radians = function (degrees: number): number {
return (degrees * Math.PI) / 180.0;
};
// Converts from radians to degrees.
Math.degrees = function (radians: number): number {
return (radians * 180.0) / Math.PI;
};