Skip to content

Instantly share code, notes, and snippets.

@theoknock
Last active May 5, 2021 16:34
Show Gist options
  • Save theoknock/d6fd01337e6e4d277f61d12bdbef0a04 to your computer and use it in GitHub Desktop.
Save theoknock/d6fd01337e6e4d277f61d12bdbef0a04 to your computer and use it in GitHub Desktop.
Convert degrees to radians
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