Skip to content

Instantly share code, notes, and snippets.

Created August 31, 2017 01:35
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/d032070751661111f009a59124ffc594 to your computer and use it in GitHub Desktop.
Save anonymous/d032070751661111f009a59124ffc594 to your computer and use it in GitHub Desktop.
void drawLine (float x , float y){
for (int a= 2; a<20; a= a+4){
stroke(random(255),random(255),random(255),random(255));
line(x,y,(50), 50);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment