Skip to content

Instantly share code, notes, and snippets.

@kylemcdonald
Last active August 29, 2015 14:07
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kylemcdonald/db3e3d9d3c776ff0b3ff to your computer and use it in GitHub Desktop.
Save kylemcdonald/db3e3d9d3c776ff0b3ff to your computer and use it in GitHub Desktop.
Keystone check script for Processing.
size(1280, 800);
background(255);
stroke(0);
for(int i = 0; i < height; i += 2)
line(0, i, width, i);
for(int i = 0; i < width; i += 2)
line(i, 0, i, height);
saveFrame("1280x800-grid.png");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment