Skip to content

Instantly share code, notes, and snippets.

@anton-matosov
Forked from steipete/gist:6133152
Last active February 10, 2016 15:25
Show Gist options
  • Save anton-matosov/70a479f7c44a81574da0 to your computer and use it in GitHub Desktop.
Save anton-matosov/70a479f7c44a81574da0 to your computer and use it in GitHub Desktop.
Create a hash from a CGRect
NSUInteger PSPDFHashFromCGRect(CGRect rect) {
return (*(NSUInteger *)&rect.origin.x << 10 ^ *(NSUInteger *)&rect.origin.y) + (*(NSUInteger *)&rect.size.width << 10 ^ *(NSUInteger *)&rect.size.height);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment