Skip to content

Instantly share code, notes, and snippets.

@lambdamusic
Created February 7, 2013 21:26
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 lambdamusic/4734340 to your computer and use it in GitHub Desktop.
Save lambdamusic/4734340 to your computer and use it in GitHub Desktop.
How to Convert Degrees to Radians, Radians to Degrees
CGFloat DegreesToRadians(CGFloat degrees)
{
return degrees * M_PI / 180;
};
CGFloat RadiansToDegrees(CGFloat radians)
{
return radians * 180 / M_PI;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment