Last active
July 19, 2017 04:32
-
-
Save anirudhamahale/0449a589d1379d8dbcb2b18a295c1784 to your computer and use it in GitHub Desktop.
Useful extensions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import CoreGraphics | |
extension CGFloat { | |
func toRadians() -> CGFloat { | |
return self * CGFloat.pi / 180 | |
} | |
func toDegress() -> CGFloat { | |
return self * 180 / CGFloat.pi | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment