Skip to content

Instantly share code, notes, and snippets.

@notalentgeek
Created December 8, 2016 11:11
Show Gist options
  • Save notalentgeek/572ed84b2e33ba5979359f6dfcf9defa to your computer and use it in GitHub Desktop.
Save notalentgeek/572ed84b2e33ba5979359f6dfcf9defa to your computer and use it in GitHub Desktop.
A Processing function to change color's opacity.
public color ChangeAlpha(
color _color,
int _desiredAlpha
){ return _color & ~#000000 | (_desiredAlpha << 030); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment