Created
April 2, 2016 23:09
-
-
Save warpling/0c4ec41e6cc3b45784dd1f9c5fd41151 to your computer and use it in GitHub Desktop.
CGRectGetCenter
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
#define CGRectGetCenter(rect) ({ __typeof__(rect) __r = (rect); (CGPoint) { CGRectGetMidX(__r), CGRectGetMidY(__r)}; }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment