Skip to content

Instantly share code, notes, and snippets.

@cjroth
Created September 1, 2014 08:44
Show Gist options
  • Save cjroth/f87a331a7a4b9d5b7244 to your computer and use it in GitHub Desktop.
Save cjroth/f87a331a7a4b9d5b7244 to your computer and use it in GitHub Desktop.
convert degrees to radians
module.exports = function(deg) {
return deg * (Math.PI / 180);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment