Skip to content

Instantly share code, notes, and snippets.

Created August 30, 2017 02:04
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/d39168fbbacc116b4dd55adf7e777662 to your computer and use it in GitHub Desktop.
Save anonymous/d39168fbbacc116b4dd55adf7e777662 to your computer and use it in GitHub Desktop.
trippySequins.java
//creates function with parameters
void drawTrippySequins (int i, int j) {
ellipse (i,j, 80, 80);
stroke (random(255), random(255), random (255), 2);
fill(random(255), random(255), random(255));
//randomizes colour of fill
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment