Skip to content

Instantly share code, notes, and snippets.

@Lellahahaha
Last active December 18, 2016 17:14
Show Gist options
  • Select an option

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

Select an option

Save Lellahahaha/a045189abd2d59ed65cd2f3ec4060f16 to your computer and use it in GitHub Desktop.
function setup() {
createCanvas(400,400);
background(0);
}
function draw() {
var a = 0;
var b = 150;
noStroke();
fill(255);
rect(a,a,b,b);
rect(b+100,a,b,b);
rect(a,b+100,b,b);
rect(b+100,b+100,b,b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment