Skip to content

Instantly share code, notes, and snippets.

Created August 31, 2017 02:18
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/46bd0cd972b270020f2b48cbdf4d5e4f to your computer and use it in GitHub Desktop.
Save anonymous/46bd0cd972b270020f2b48cbdf4d5e4f to your computer and use it in GitHub Desktop.
void circSaw (float scale, int a, int b){
translate(a,b);
fill(0);
for(int x=1; x<80; x++){
triangle(100*scale,200*scale,200*scale,10*scale,10*scale,10*scale);
rotate(degrees(10));
fill(random(120));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment