Skip to main content
3 of 4
replaced http://codegolf.stackexchange.com/ with https://codegolf.stackexchange.com/

##Abbreviate constants

If you're ever using one of the all-caps keywords in Processing (such as DIFFERENCE or TRIANGLE_FAN), see if the number they correspond to is shorter.

For example, DIFFERENCE is just an int that's equal to 32. Instead of using DIFFERENCE here, I could write 32, saving 8 characters.

quat
  • 1.5k
  • 11
  • 9