Skip to content

Instantly share code, notes, and snippets.

@jacopocolo
Last active November 6, 2017 12:20
Show Gist options
  • Select an option

  • Save jacopocolo/6bc7e3bcd6f541ccbdb95dd09174a5a7 to your computer and use it in GitHub Desktop.

Select an option

Save jacopocolo/6bc7e3bcd6f541ccbdb95dd09174a5a7 to your computer and use it in GitHub Desktop.
function setup() {
createCanvas(400, 300);
background(0,0,0);
noStroke();
}
function draw() {
fill(204,204,204);
triangle(12, 12, 12, 200, 81, 200);
fill(102,102,102);
rect(81, 81, 63, 63);
fill(204,204,204);
quad(189, 18, 216, 18, 216, 278, 144, 278);
fill(255,255,255);
ellipse(252, 144, 72, 72);
fill(204,204,204);
triangle(388, 18, 251, 278, 388, 278);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment