Last active
May 5, 2021 16:34
-
-
Save theoknock/d6fd01337e6e4d277f61d12bdbef0a04 to your computer and use it in GitHub Desktop.
Convert degrees to radians
This file contains hidden or 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 Foundation | |
extension Double { | |
var radians: Double { return Measurement(value: self, unit: UnitAngle.degrees).converted(to: UnitAngle.radians).value } | |
var degrees: Double { return Measurement(value: self, unit: UnitAngle.radians).converted(to: UnitAngle.degrees).value } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment