Skip to content

Instantly share code, notes, and snippets.

@lambdalisue
Created August 29, 2011 04:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lambdalisue/1177753 to your computer and use it in GitHub Desktop.
Save lambdalisue/1177753 to your computer and use it in GitHub Desktop.
toDegree = (rad) ->
# Convert radian to degree
rad * 180 / Math.PI
toRadian = (deg) ->
# Convert degree to radian
deg * Math.PI / 180
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment