Skip to content

Instantly share code, notes, and snippets.

@hendriklammers
Created September 21, 2012 09:07
Show Gist options
  • Save hendriklammers/3760498 to your computer and use it in GitHub Desktop.
Save hendriklammers/3760498 to your computer and use it in GitHub Desktop.
Javascript: Calculate Radians/Degrees
// Returns radians from the given value in degrees
function degreesToRadians(degrees) {
return degrees * (Math.PI / 180);
}
// Returns degrees from the given value in radians
function radiansToDegrees(radians) {
return radians * (180 / Math.PI);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment