Skip to content

Instantly share code, notes, and snippets.

@dfelber
Created October 28, 2016 06:29
Show Gist options
  • Save dfelber/c259fb7c7d3eb4ba8fd153a2a983acde to your computer and use it in GitHub Desktop.
Save dfelber/c259fb7c7d3eb4ba8fd153a2a983acde to your computer and use it in GitHub Desktop.
Swift extension for CGRect to return the center as a CGPoint.
extension CGRect {
var center: CGPoint {
return CGPoint(x: midX, y: midY)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment