Skip to content

Instantly share code, notes, and snippets.

@andylshort
Created March 23, 2018 23:12
Show Gist options
  • Save andylshort/91fafc51a8474c6a427903986599ab66 to your computer and use it in GitHub Desktop.
Save andylshort/91fafc51a8474c6a427903986599ab66 to your computer and use it in GitHub Desktop.
JavaScript Math lib
// Converts from degrees to radians.
Math.radians = function(degrees) {
return degrees * Math.PI / 180;
};
// Converts from radians to degrees.
Math.degrees = function(radians) {
return radians * 180 / Math.PI;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment