Skip to content

Instantly share code, notes, and snippets.

@rtking1993
Last active April 14, 2018 18:05
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 rtking1993/a2ddbfd6d46d1caa7f82f55d7f715680 to your computer and use it in GitHub Desktop.
Save rtking1993/a2ddbfd6d46d1caa7f82f55d7f715680 to your computer and use it in GitHub Desktop.
Utils to convert degrees to radians
// MARK: Frameworks
import UIKit
// MARK: Helper Methods
func radians(from degrees: CGFloat) -> CGFloat {
return ((degrees * .pi) / 180)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment