Skip to content

Instantly share code, notes, and snippets.

@itsthejb
Created December 17, 2014 10:16
Show Gist options
  • Select an option

  • Save itsthejb/8b2e704457baee5a59f8 to your computer and use it in GitHub Desktop.

Select an option

Save itsthejb/8b2e704457baee5a59f8 to your computer and use it in GitHub Desktop.
Pixel boundary Quartz drawing macros
#define pixel_points(pixelWidth, scale) (pixelWidth / scale)
#define pixel_offset(pixelWidth, scale) (fmod(pixelWidth, 2) ? 0.5 : 0)
#define pixel_round(pos, offset) (lround(pos) + (lround(pos) > pos ? -offset : +offset))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment