Skip to main content
Commonmark migration
Source Link

##Abbreviate constants

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.

##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.

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.

replaced http://codegolf.stackexchange.com/ with https://codegolf.stackexchange.com/
Source Link

##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 herehere, I could write 32, saving 8 characters.

##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.

##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.

deleted 11 characters in body
Source Link
quat
  • 1.5k
  • 11
  • 9

##Abbreviate constants

If you're ever using one of the all-caps keywords in Processing (such as DIFFERENCE, OPENGL, 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.

##Abbreviate constants

If you're ever using one of the all-caps keywords in Processing (such as DIFFERENCE, OPENGL, 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.

##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.

Source Link
quat
  • 1.5k
  • 11
  • 9
Loading