Skip to content

Instantly share code, notes, and snippets.

@andrevidela
Created January 7, 2019 14:17
Show Gist options
  • Save andrevidela/6fe03b9ecc263f63636144c807a29010 to your computer and use it in GitHub Desktop.
Save andrevidela/6fe03b9ecc263f63636144c807a29010 to your computer and use it in GitHub Desktop.
// Magnitude has an extra field for types which have a square root function
extension Magnitude where Self.MagVal: SquareRoot {
var magnitude: Self.MagVal {
return √(self.magSquare)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment