Skip to content

Instantly share code, notes, and snippets.

/omg

Created August 31, 2017 07:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/eaee71353f339e4514ce5dcd2c83dffb to your computer and use it in GitHub Desktop.
Save anonymous/eaee71353f339e4514ce5dcd2c83dffb to your computer and use it in GitHub Desktop.
void myFunction(float j, float i){
for(int y=0; y<rows; y=y+1) {
for(int x=0; x<columns; x=x+1) {
line(0,800/(columns+1)*(x+1),800,800/(rows+1)*(y+1));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment