Skip to content

Instantly share code, notes, and snippets.

@Lellahahaha
Created November 27, 2016 18:02
Show Gist options
  • Select an option

  • Save Lellahahaha/19cf7fab82723cef07814e4b95082a8b to your computer and use it in GitHub Desktop.

Select an option

Save Lellahahaha/19cf7fab82723cef07814e4b95082a8b to your computer and use it in GitHub Desktop.
function setup() {
createCanvas (600, 200);
}
var a = 40;
var b = 40;
var c = 40;
function draw() {
ellipse(40,b,c);
var a = a+50;
ellipse(90,b,c);
ellipse(140,b,c);
ellipse(190,b,c);
ellipse(240,b,c);
ellipse(340,b,c);
ellipse(390,b,c);
triangle(270,60,290,20,310,60);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment