Last active
January 7, 2019 14:36
-
-
Save andrevidela/133daed7f6bf9af2438528dc58248452 to your computer and use it in GitHub Desktop.
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
extension Magnitude where | |
Self: TwoDimensions, | |
Self.ComponentVal: Multiplicative, | |
Self.ComponentVal: Additive, | |
Self.ComponentVal == Self.MagVal { | |
var magSquare: Self.MagVal { | |
return self.fst * self.fst + self.snd * self.snd | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment