Skip to content

Instantly share code, notes, and snippets.

@andrevidela
Last active January 7, 2019 14:36
Show Gist options
  • Save andrevidela/133daed7f6bf9af2438528dc58248452 to your computer and use it in GitHub Desktop.
Save andrevidela/133daed7f6bf9af2438528dc58248452 to your computer and use it in GitHub Desktop.
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