Skip to content

Instantly share code, notes, and snippets.

@dugajean
Created October 15, 2021 01:56
Show Gist options
  • Save dugajean/73be1aa84604e0bf4b88d88b8ac84e93 to your computer and use it in GitHub Desktop.
Save dugajean/73be1aa84604e0bf4b88d88b8ac84e93 to your computer and use it in GitHub Desktop.
function setup() {
createCanvas(700, 770);
background(0);
}
function draw() {
fill(255, 0, 0);
rect(100, 0, 600, 600);
fill(255, 255, 255);
rect(0, 0, 80, 280);
rect(0, 320, 80, 280);
rect(0, 0, 80, 280);
fill(0, 0, 255);
rect(0, 620, 80, 150);
fill(255, 255, 255);
rect(100, 620, 500, 150);
rect(620, 620, 80, 65);
fill(255, 255, 0);
rect(620, 705, 80, 65);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment